home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 63 / CDACTUAL63.iso / Aplicaciones / DarkBasic / DemoDarkBasic.exe / help / examples / basic3d / exam12.dba < prev    next >
Encoding:
Text File  |  1999-11-22  |  723 b   |  20 lines

  1. Rem * Title  : 3D Availability
  2. Rem * Author : DBS-LB
  3. Rem * Date   : 1st Sept 99
  4. rem ============================================
  5. rem DARK BASIC EXAMPLE PROGRAM 12
  6. rem ============================================
  7. rem This program demonstrates detecting 3D f/x
  8. rem --------------------------------------------
  9.  
  10. rem Check for 3D Special Effects Availability
  11. print "Listing capabilities..."
  12. if alphablending available()=1 then print "GHOST OBJECT will work!"
  13. if filtering available()=1 then print "Textures will look better!"
  14. if fog available()=1 then print "FOG ON will work!"
  15. if 3dblit available()=1 then print "2D commands will run fast during 3D rendering!"
  16. print "End Of List."
  17.  
  18. rem End the program
  19. end
  20.