Changeset 467
- Timestamp:
- 03/14/08 15:53:36 (9 months ago)
- Files:
-
- trunk/demos/gl/SimpleGL.d (modified) (3 diffs)
- trunk/demos/gl/dsss.conf (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/demos/gl/SimpleGL.d
r322 r467 67 67 * returns true to consume the event 68 68 */ 69 b itinitGL()69 bool initGL() 70 70 { 71 71 resizeGL(null); … … 80 80 * returns true to consume the event 81 81 */ 82 b itdrawGL(GdkEventExpose* event = null)82 bool drawGL(GdkEventExpose* event = null) 83 83 { 84 84 glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); … … 104 104 * returns true to consume the event 105 105 */ 106 b itresizeGL(GdkEventConfigure* event = null)106 bool resizeGL(GdkEventConfigure* event = null) 107 107 { 108 108 GLfloat w; trunk/demos/gl/dsss.conf
r340 r467 15 15 } 16 16 17 [SimpleGL.d] 18 type = binary 19 target = simpleGL 20 buildflags = -I../ -no-export-dynamic 21 version(linux) { 22 buildflags += -L-lGL -L-lGLU -L-ldl 23 } 24 version(Windows){ 25 prebuild=warn Windows support is untested. 26 buildflags+=-lladvapi32 27 } 28
