factor/basis/opengl/capabilities/capabilities-tests.factor

23 lines
563 B
Factor
Raw Normal View History

! Copyright (C) 2009 Joe Groff.
! See http://factorcode.org/license.txt for BSD license.
2009-07-22 13:06:30 -04:00
USING: opengl.capabilities tools.test ;
IN: opengl.capabilities.tests
CONSTANT: test-extensions
{
"GL_ARB_vent_core_frogblast"
"GL_EXT_resonance_cascade"
"GL_EXT_slipgate"
}
{ t }
2009-07-22 13:06:30 -04:00
[ "GL_ARB_vent_core_frogblast" test-extensions (has-extension?) ] unit-test
{ f }
2009-07-22 13:06:30 -04:00
[ "GL_ARB_wallhack" test-extensions (has-extension?) ] unit-test
{ t } [
2009-07-22 13:06:30 -04:00
{ "GL_EXT_dimensional_portal" "GL_EXT_slipgate" }
test-extensions (has-extension?)
] unit-test