]> gitweb.factorcode.org Git - factor.git/blob - basis/opengl/capabilities/capabilities-tests.factor
Update some copyright headers to follow the current convention
[factor.git] / basis / opengl / capabilities / capabilities-tests.factor
1 ! Copyright (C) 2009 Joe Groff.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: opengl.capabilities tools.test ;
4 IN: opengl.capabilities.tests
5
6 CONSTANT: test-extensions
7     {
8         "GL_ARB_vent_core_frogblast"
9         "GL_EXT_resonance_cascade"
10         "GL_EXT_slipgate"
11     }
12
13 { t }
14 [ "GL_ARB_vent_core_frogblast" test-extensions (has-extension?) ] unit-test
15
16 { f }
17 [ "GL_ARB_wallhack" test-extensions (has-extension?) ] unit-test
18
19 { t } [
20     { "GL_EXT_dimensional_portal" "GL_EXT_slipgate" }
21     test-extensions (has-extension?)
22 ] unit-test