├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── ReadMe.md ├── SimulDLL_VC11.props ├── SimulDebug.props ├── SimulLib_VC11.props ├── SimulRelease.props ├── SimulStaticDebug.props ├── SimulStaticRelease.props ├── aclocal.m4 ├── config.h.in ├── configure ├── configure.ac ├── debian ├── README.Debian ├── changelog ├── changelog.ba ├── compat ├── control ├── copyright ├── docs ├── install ├── patches │ ├── debian-changes │ └── series ├── rules └── source │ ├── format │ ├── lintian-overrides │ └── options ├── doc └── glfx.tex ├── examples ├── CMakeLists.txt ├── Effect.sfx ├── Triangle.cpp └── VisualStudioDebugOutput.h ├── glfx-Makefile.mk ├── glfx.pc.cmake ├── glfx.sln ├── glfx.vcxproj ├── glfx.vcxproj.filters ├── glfx_Win32_VC11.vcxproj ├── glfx_x64_VC11.vcxproj ├── glfxc ├── .dep.inc ├── Makefile └── nbproject │ ├── Makefile-Debug.mk │ ├── Makefile-Release.mk │ ├── Makefile-impl.mk │ ├── Makefile-variables.mk │ ├── Package-Debug.bash │ ├── Package-Release.bash │ ├── configurations.xml │ ├── private │ ├── Makefile-variables.mk │ ├── configurations.xml │ └── private.xml │ └── project.xml ├── include └── gl │ └── glfx.h ├── m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── man ├── Makefile.am ├── Makefile.in └── glfxc.1 ├── nbproject ├── Makefile-Debug.mk ├── Makefile-Release.mk ├── Makefile-impl.mk ├── Makefile-variables.mk ├── Package-Debug.bash ├── Package-Release.bash ├── configurations.xml ├── private │ ├── Makefile-variables.mk │ ├── configurations.xml │ └── private.xml └── project.xml ├── src ├── BufferedStringStreamBuf.h ├── CMakeLists.txt ├── FileLoader.cpp ├── FileLoader.h ├── Makefile.am ├── Makefile.in ├── Preprocessor.h ├── Preprocessor.lpp ├── Preprocessor.ypp ├── ShaderCompiler.cpp ├── StringFunctions.cpp ├── StringFunctions.h ├── StringToWString.cpp ├── StringToWString.h ├── VisualStudioDebugOutput.h ├── c_syntax.bnf ├── glfx.cpp ├── glfx.lpp ├── glfx.ypp ├── glfxClasses.h ├── glfxEffect.cpp ├── glfxEffect.h ├── glfxErrorCheck.cpp ├── glfxErrorCheck.h ├── glfxParser.h ├── glfxProgram.cpp ├── glfxProgram.h └── glfxc.cpp └── test ├── .project ├── .pydevproject ├── golden ├── invalid_prefix ├── invalid_program ├── missing_shader ├── null_technique1 └── success ├── regression.py ├── shaders ├── light_pass.glsl ├── lighting.glsl ├── missing_prefix.glsl ├── missing_shader.glsl └── null_technique.glsl └── test_list /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/ReadMe.md -------------------------------------------------------------------------------- /SimulDLL_VC11.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/SimulDLL_VC11.props -------------------------------------------------------------------------------- /SimulDebug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/SimulDebug.props -------------------------------------------------------------------------------- /SimulLib_VC11.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/SimulLib_VC11.props -------------------------------------------------------------------------------- /SimulRelease.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/SimulRelease.props -------------------------------------------------------------------------------- /SimulStaticDebug.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/SimulStaticDebug.props -------------------------------------------------------------------------------- /SimulStaticRelease.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/SimulStaticRelease.props -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- 1 | This is glfx - the OpenGL effects library. 2 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/changelog.ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/debian/changelog.ba -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | NEWS 2 | README 3 | -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/debian/install -------------------------------------------------------------------------------- /debian/patches/debian-changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/debian/patches/debian-changes -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | debian-changes 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/debian/source/lintian-overrides -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- 1 | single-debian-patch 2 | -------------------------------------------------------------------------------- /doc/glfx.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/doc/glfx.tex -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Effect.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/examples/Effect.sfx -------------------------------------------------------------------------------- /examples/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/examples/Triangle.cpp -------------------------------------------------------------------------------- /examples/VisualStudioDebugOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/examples/VisualStudioDebugOutput.h -------------------------------------------------------------------------------- /glfx-Makefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfx-Makefile.mk -------------------------------------------------------------------------------- /glfx.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfx.pc.cmake -------------------------------------------------------------------------------- /glfx.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfx.sln -------------------------------------------------------------------------------- /glfx.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfx.vcxproj -------------------------------------------------------------------------------- /glfx.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfx.vcxproj.filters -------------------------------------------------------------------------------- /glfx_Win32_VC11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfx_Win32_VC11.vcxproj -------------------------------------------------------------------------------- /glfx_x64_VC11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfx_x64_VC11.vcxproj -------------------------------------------------------------------------------- /glfxc/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/.dep.inc -------------------------------------------------------------------------------- /glfxc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/Makefile -------------------------------------------------------------------------------- /glfxc/nbproject/Makefile-Debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/Makefile-Debug.mk -------------------------------------------------------------------------------- /glfxc/nbproject/Makefile-Release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/Makefile-Release.mk -------------------------------------------------------------------------------- /glfxc/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /glfxc/nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /glfxc/nbproject/Package-Debug.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/Package-Debug.bash -------------------------------------------------------------------------------- /glfxc/nbproject/Package-Release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/Package-Release.bash -------------------------------------------------------------------------------- /glfxc/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/configurations.xml -------------------------------------------------------------------------------- /glfxc/nbproject/private/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/private/Makefile-variables.mk -------------------------------------------------------------------------------- /glfxc/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /glfxc/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/private/private.xml -------------------------------------------------------------------------------- /glfxc/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/glfxc/nbproject/project.xml -------------------------------------------------------------------------------- /include/gl/glfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/include/gl/glfx.h -------------------------------------------------------------------------------- /m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/m4/libtool.m4 -------------------------------------------------------------------------------- /m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/m4/ltoptions.m4 -------------------------------------------------------------------------------- /m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/m4/ltsugar.m4 -------------------------------------------------------------------------------- /m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/m4/ltversion.m4 -------------------------------------------------------------------------------- /m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- 1 | man_MANS = glfxc.1 2 | -------------------------------------------------------------------------------- /man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/man/Makefile.in -------------------------------------------------------------------------------- /man/glfxc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/man/glfxc.1 -------------------------------------------------------------------------------- /nbproject/Makefile-Debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/Makefile-Debug.mk -------------------------------------------------------------------------------- /nbproject/Makefile-Release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/Makefile-Release.mk -------------------------------------------------------------------------------- /nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /nbproject/Package-Debug.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/Package-Debug.bash -------------------------------------------------------------------------------- /nbproject/Package-Release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/Package-Release.bash -------------------------------------------------------------------------------- /nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/configurations.xml -------------------------------------------------------------------------------- /nbproject/private/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/private/Makefile-variables.mk -------------------------------------------------------------------------------- /nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /src/BufferedStringStreamBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/BufferedStringStreamBuf.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/FileLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/FileLoader.cpp -------------------------------------------------------------------------------- /src/FileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/FileLoader.h -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/Preprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/Preprocessor.h -------------------------------------------------------------------------------- /src/Preprocessor.lpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/Preprocessor.lpp -------------------------------------------------------------------------------- /src/Preprocessor.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/Preprocessor.ypp -------------------------------------------------------------------------------- /src/ShaderCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/ShaderCompiler.cpp -------------------------------------------------------------------------------- /src/StringFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/StringFunctions.cpp -------------------------------------------------------------------------------- /src/StringFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/StringFunctions.h -------------------------------------------------------------------------------- /src/StringToWString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/StringToWString.cpp -------------------------------------------------------------------------------- /src/StringToWString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/StringToWString.h -------------------------------------------------------------------------------- /src/VisualStudioDebugOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/VisualStudioDebugOutput.h -------------------------------------------------------------------------------- /src/c_syntax.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/c_syntax.bnf -------------------------------------------------------------------------------- /src/glfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfx.cpp -------------------------------------------------------------------------------- /src/glfx.lpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfx.lpp -------------------------------------------------------------------------------- /src/glfx.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfx.ypp -------------------------------------------------------------------------------- /src/glfxClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfxClasses.h -------------------------------------------------------------------------------- /src/glfxEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfxEffect.cpp -------------------------------------------------------------------------------- /src/glfxEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfxEffect.h -------------------------------------------------------------------------------- /src/glfxErrorCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfxErrorCheck.cpp -------------------------------------------------------------------------------- /src/glfxErrorCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfxErrorCheck.h -------------------------------------------------------------------------------- /src/glfxParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfxParser.h -------------------------------------------------------------------------------- /src/glfxProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfxProgram.cpp -------------------------------------------------------------------------------- /src/glfxProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfxProgram.h -------------------------------------------------------------------------------- /src/glfxc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/src/glfxc.cpp -------------------------------------------------------------------------------- /test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/.project -------------------------------------------------------------------------------- /test/.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/.pydevproject -------------------------------------------------------------------------------- /test/golden/invalid_prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/golden/invalid_prefix -------------------------------------------------------------------------------- /test/golden/invalid_program: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/golden/invalid_program -------------------------------------------------------------------------------- /test/golden/missing_shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/golden/missing_shader -------------------------------------------------------------------------------- /test/golden/null_technique1: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /test/golden/success: -------------------------------------------------------------------------------- 1 | Compiled successfully 2 | -------------------------------------------------------------------------------- /test/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/regression.py -------------------------------------------------------------------------------- /test/shaders/light_pass.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/shaders/light_pass.glsl -------------------------------------------------------------------------------- /test/shaders/lighting.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/shaders/lighting.glsl -------------------------------------------------------------------------------- /test/shaders/missing_prefix.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/shaders/missing_prefix.glsl -------------------------------------------------------------------------------- /test/shaders/missing_shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/shaders/missing_shader.glsl -------------------------------------------------------------------------------- /test/shaders/null_technique.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/shaders/null_technique.glsl -------------------------------------------------------------------------------- /test/test_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simul/glfx/HEAD/test/test_list --------------------------------------------------------------------------------