You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.8 KiB

  1. { this is the default configuration file of the glBitmap.pas
  2. please uncomment you preferences below, rename this file to glBitmapConf.inc
  3. and make it available to your compilers include paths }
  4. // enable support for OpenGL ES 1.1
  5. {.$DEFINE OPENGL_ES_1_1}
  6. // enable support for OpenGL ES 2.0
  7. {.$DEFINE OPENGL_ES_2_0}
  8. // enable support for OpenGL ES 3.0
  9. {.$DEFINE OPENGL_ES_3_0}
  10. // enable support for all OpenGL ES extensions
  11. {.$DEFINE OPENGL_ES_EXT}
  12. // activate to enable the support for SDL_surfaces
  13. {.$DEFINE GLB_SDL}
  14. // activate to enable the support for Delphi (including support for Delphi's (not Lazarus') TBitmap)
  15. {.$DEFINE GLB_DELPHI}
  16. // activate to enable the support for TLazIntfImage from Lazarus
  17. {$DEFINE GLB_LAZARUS}
  18. // activate to enable the support of SDL_image to load files. (READ ONLY)
  19. // If you enable SDL_image all other libraries will be ignored!
  20. {.$DEFINE GLB_SDL_IMAGE}
  21. // activate to enable Lazarus TPortableNetworkGraphic support
  22. // if you enable this pngImage and libPNG will be ignored
  23. {$DEFINE GLB_LAZ_PNG}
  24. // activate to enable png support with the unit pngimage -> http://pngdelphi.sourceforge.net/
  25. // if you enable pngimage the libPNG will be ignored
  26. {.$DEFINE GLB_PNGIMAGE}
  27. // activate to use the libPNG -> http://www.libpng.org/
  28. // You will need an aditional header -> http://www.opengl24.de/index.php?cat=header&file=libpng
  29. {.$DEFINE GLB_LIB_PNG}
  30. // activate to enable Lazarus TJPEGImage support
  31. // if you enable this delphi jpegs and libJPEG will be ignored
  32. {$DEFINE GLB_LAZ_JPEG}
  33. // if you enable delphi jpegs the libJPEG will be ignored
  34. {.$DEFINE GLB_DELPHI_JPEG}
  35. // activate to use the libJPEG -> http://www.ijg.org/
  36. // You will need an aditional header -> http://www.opengl24.de/index.php?cat=header&file=libjpeg
  37. {.$DEFINE GLB_LIB_JPEG}