* split TglBitmap into TglBitmap and TglBitmapData to be able to handle load, save...
[glBitmap.git] / examples / glBitmapConf.inc
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
5
6 // enable support for OpenGL ES 1.1
7 {.$DEFINE OPENGL_ES_1_1}
8
9 // enable support for OpenGL ES 2.0
10 {.$DEFINE OPENGL_ES_2_0}
11
12 // enable support for OpenGL ES 3.0
13 {.$DEFINE OPENGL_ES_3_0}
14
15 // enable support for all OpenGL ES extensions
16 {.$DEFINE OPENGL_ES_EXT}
17
18
19
20 // activate to enable the support for SDL_surfaces
21 {.$DEFINE GLB_SDL}
22
23 // activate  to enable the support for Delphi (including support for Delphi's (not Lazarus') TBitmap)
24 {.$DEFINE GLB_DELPHI}
25
26 // activate to enable the support for TLazIntfImage from Lazarus
27 {.$DEFINE GLB_LAZARUS}
28
29
30
31 // activate to enable the support of SDL_image to load files. (READ ONLY)
32 // If you enable SDL_image all other libraries will be ignored!
33 {.$DEFINE GLB_SDL_IMAGE}
34
35
36
37 // activate to enable Lazarus TPortableNetworkGraphic support
38 // if you enable this pngImage and libPNG will be ignored
39 {.$DEFINE GLB_LAZ_PNG}
40
41 // activate to enable png support with the unit pngimage -> http://pngdelphi.sourceforge.net/
42 // if you enable pngimage the libPNG will be ignored
43 {.$DEFINE GLB_PNGIMAGE}
44
45 // activate to use the libPNG -> http://www.libpng.org/
46 // You will need an aditional header -> http://www.opengl24.de/index.php?cat=header&file=libpng
47 {.$DEFINE GLB_LIB_PNG}
48
49
50
51 // activate to enable Lazarus TJPEGImage support
52 // if you enable this delphi jpegs and libJPEG will be ignored
53 {.$DEFINE GLB_LAZ_JPEG}
54
55 // if you enable delphi jpegs the libJPEG will be ignored
56 {.$DEFINE GLB_DELPHI_JPEG}
57
58 // activate to use the libJPEG -> http://www.ijg.org/
59 // You will need an aditional header -> http://www.opengl24.de/index.php?cat=header&file=libjpeg
60 {.$DEFINE GLB_LIB_JPEG}
61