aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/gl-3.1/CMakeLists.gl.txt
AgeCommit message (Collapse)Author
2013-04-10Test interaction of primitive restart and transform feedback.Paul Berry
v2: Fix "written" subtest (which was testing the wrong query). Reviewed-by: Eric Anholt <eric@anholt.net>
2012-11-14gl-3.1: Add a new test for genned object name requirements.Eric Anholt
Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
2012-06-28cmake: Move piglitutil library to piglitutil_glBlaž Tomažič
Build gl utilities to piglitutil_gl library insted of piglitutil. As a result all executables linking to piglitutil library now link to piglitutil_gl. Signed-off-by: Blaž Tomažič <blaz.tomazic@gmail.com> Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
2012-05-23cmake: Relocate all GLUT directives into single locationChad Versace
Nearly all CMakeLists.gl.txt contained the following: include_directories(${GLUT_INCLUDE_DIR}) link_libraries(${GLUT_glut_LIBRARY}) This patch relocates them to cmake/target_api/gl/CMakeLists.txt. Reviewed-by: Pauli Nieminen <pauli.nieminen@intel.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com> Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
2012-03-23cmake: Replace calls to add_{executable,library} with wrappersChad Versace
Replace add_executable -> piglit_add_executable add_library -> piglit_add_library For now, each wrapper function trivially wraps the function it replaces, and so this patch changes no behavior. This commit was created using the command: sed -i -e "s/add_executable/piglit_add_executable/" -e "s/add_library/piglit_add_library/" $(find src/ tests/ -name "*CMakeLists*") Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
2012-03-15gl-3.1/minmax: New test for query minimum requirements.Eric Anholt
v2: Fix another bug in handling comparisons due to GL_MAX_VIEWPORT_DIMS by special-casing that enum. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>