├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── include └── c4g_runtime.h ├── lib ├── ios │ └── c4grt_ios.framework │ │ ├── Headers │ │ └── c4g_runtime.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── c4grt_ios ├── macos │ └── c4grt_macos.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── Resources │ │ ├── Versions │ │ ├── A │ │ │ ├── Headers │ │ │ │ └── c4g_runtime.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── c4grt_macos │ │ └── Current │ │ └── c4grt_macos ├── x64 │ ├── c4grt.dll │ ├── freeglut.dll │ └── glew32.dll └── x86 │ ├── c4grt.dll │ ├── freeglut.dll │ └── glew32.dll ├── redist └── vc_redist.x64.exe ├── src ├── c4grt.sln ├── c4grt.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── c4grt_ios │ ├── c4grt_ios.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── c4grt_ios │ │ ├── Info.plist │ │ └── c4grt_ios.h ├── c4grt_macos │ ├── c4grt_macos.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── c4grt_macos │ │ ├── Info.plist │ │ └── c4grt_macos.h ├── data │ └── comp.vert ├── makefile ├── runtime │ ├── c4g_context_ios.h │ ├── c4g_context_ios.mm │ ├── c4g_context_linux.cpp │ ├── c4g_context_linux.hpp │ ├── c4g_context_macos.h │ ├── c4g_context_macos.mm │ ├── c4g_context_win.cpp │ ├── c4g_context_win.hpp │ ├── c4g_gl.cpp │ ├── c4g_gl.hpp │ ├── c4g_glpass.cpp │ ├── c4g_glpass.hpp │ ├── c4g_glsl.cpp │ ├── c4g_glsl.hpp │ ├── c4g_runtime.cpp │ ├── c4g_runtime.h │ ├── c4g_utils.cpp │ ├── c4g_utils.hpp │ ├── freeglut │ │ ├── Copying.txt │ │ ├── Readme.txt │ │ ├── bin │ │ │ ├── freeglut.dll │ │ │ └── x64 │ │ │ │ └── freeglut.dll │ │ ├── include │ │ │ └── GL │ │ │ │ ├── freeglut.h │ │ │ │ ├── freeglut_ext.h │ │ │ │ ├── freeglut_std.h │ │ │ │ └── glut.h │ │ └── lib │ │ │ ├── freeglut.lib │ │ │ └── x64 │ │ │ └── freeglut.lib │ ├── glew │ │ ├── LICENSE.txt │ │ ├── bin │ │ │ └── Release │ │ │ │ ├── Win32 │ │ │ │ ├── glew32.dll │ │ │ │ ├── glewinfo.exe │ │ │ │ └── visualinfo.exe │ │ │ │ └── x64 │ │ │ │ ├── glew32.dll │ │ │ │ ├── glewinfo.exe │ │ │ │ └── visualinfo.exe │ │ ├── doc │ │ │ ├── advanced.html │ │ │ ├── basic.html │ │ │ ├── build.html │ │ │ ├── credits.html │ │ │ ├── github.png │ │ │ ├── glew.css │ │ │ ├── glew.html │ │ │ ├── glew.png │ │ │ ├── glew.txt │ │ │ ├── glxew.html │ │ │ ├── gpl.txt │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ ├── khronos.txt │ │ │ ├── log.html │ │ │ ├── mesa.txt │ │ │ ├── new.png │ │ │ ├── ogl_sm.jpg │ │ │ ├── travis.png │ │ │ └── wglew.html │ │ ├── include │ │ │ └── GL │ │ │ │ ├── eglew.h │ │ │ │ ├── glew.h │ │ │ │ ├── glxew.h │ │ │ │ └── wglew.h │ │ └── lib │ │ │ └── Release │ │ │ ├── Win32 │ │ │ ├── glew32.lib │ │ │ └── glew32s.lib │ │ │ └── x64 │ │ │ ├── glew32.lib │ │ │ └── glew32s.lib │ ├── runtime.vcxproj │ └── runtime.vcxproj.filters └── shell │ ├── c4g.cpp │ ├── c4g.vcxproj │ └── c4g.vcxproj.filters └── test ├── c4grt.dll ├── c4grt_eval.exe ├── c_eval.exe ├── c_eval └── c_eval.c ├── cs_eval.exe ├── freeglut.dll ├── glew32.dll ├── prog.bas ├── prog.cs ├── prog.vert ├── test.bas └── test.vert /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/README.md -------------------------------------------------------------------------------- /include/c4g_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/include/c4g_runtime.h -------------------------------------------------------------------------------- /lib/ios/c4grt_ios.framework/Headers/c4g_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/ios/c4grt_ios.framework/Headers/c4g_runtime.h -------------------------------------------------------------------------------- /lib/ios/c4grt_ios.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/ios/c4grt_ios.framework/Info.plist -------------------------------------------------------------------------------- /lib/ios/c4grt_ios.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/ios/c4grt_ios.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /lib/ios/c4grt_ios.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/ios/c4grt_ios.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /lib/ios/c4grt_ios.framework/c4grt_ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/ios/c4grt_ios.framework/c4grt_ios -------------------------------------------------------------------------------- /lib/macos/c4grt_macos.framework/Headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/macos/c4grt_macos.framework/Headers -------------------------------------------------------------------------------- /lib/macos/c4grt_macos.framework/Modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/macos/c4grt_macos.framework/Modules -------------------------------------------------------------------------------- /lib/macos/c4grt_macos.framework/Resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/macos/c4grt_macos.framework/Resources -------------------------------------------------------------------------------- /lib/macos/c4grt_macos.framework/Versions/A/Headers/c4g_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/macos/c4grt_macos.framework/Versions/A/Headers/c4g_runtime.h -------------------------------------------------------------------------------- /lib/macos/c4grt_macos.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/macos/c4grt_macos.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /lib/macos/c4grt_macos.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/macos/c4grt_macos.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /lib/macos/c4grt_macos.framework/Versions/A/c4grt_macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/macos/c4grt_macos.framework/Versions/A/c4grt_macos -------------------------------------------------------------------------------- /lib/macos/c4grt_macos.framework/Versions/Current: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/macos/c4grt_macos.framework/Versions/Current -------------------------------------------------------------------------------- /lib/macos/c4grt_macos.framework/c4grt_macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/macos/c4grt_macos.framework/c4grt_macos -------------------------------------------------------------------------------- /lib/x64/c4grt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/x64/c4grt.dll -------------------------------------------------------------------------------- /lib/x64/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/x64/freeglut.dll -------------------------------------------------------------------------------- /lib/x64/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/x64/glew32.dll -------------------------------------------------------------------------------- /lib/x86/c4grt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/x86/c4grt.dll -------------------------------------------------------------------------------- /lib/x86/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/x86/freeglut.dll -------------------------------------------------------------------------------- /lib/x86/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/lib/x86/glew32.dll -------------------------------------------------------------------------------- /redist/vc_redist.x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/redist/vc_redist.x64.exe -------------------------------------------------------------------------------- /src/c4grt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt.sln -------------------------------------------------------------------------------- /src/c4grt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/c4grt.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /src/c4grt_ios/c4grt_ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt_ios/c4grt_ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/c4grt_ios/c4grt_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt_ios/c4grt_ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /src/c4grt_ios/c4grt_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt_ios/c4grt_ios/Info.plist -------------------------------------------------------------------------------- /src/c4grt_ios/c4grt_ios/c4grt_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt_ios/c4grt_ios/c4grt_ios.h -------------------------------------------------------------------------------- /src/c4grt_macos/c4grt_macos.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt_macos/c4grt_macos.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/c4grt_macos/c4grt_macos.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt_macos/c4grt_macos.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /src/c4grt_macos/c4grt_macos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt_macos/c4grt_macos/Info.plist -------------------------------------------------------------------------------- /src/c4grt_macos/c4grt_macos/c4grt_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/c4grt_macos/c4grt_macos/c4grt_macos.h -------------------------------------------------------------------------------- /src/data/comp.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/data/comp.vert -------------------------------------------------------------------------------- /src/makefile: -------------------------------------------------------------------------------- 1 | # This is a placeholder. 2 | -------------------------------------------------------------------------------- /src/runtime/c4g_context_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_context_ios.h -------------------------------------------------------------------------------- /src/runtime/c4g_context_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_context_ios.mm -------------------------------------------------------------------------------- /src/runtime/c4g_context_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_context_linux.cpp -------------------------------------------------------------------------------- /src/runtime/c4g_context_linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_context_linux.hpp -------------------------------------------------------------------------------- /src/runtime/c4g_context_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_context_macos.h -------------------------------------------------------------------------------- /src/runtime/c4g_context_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_context_macos.mm -------------------------------------------------------------------------------- /src/runtime/c4g_context_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_context_win.cpp -------------------------------------------------------------------------------- /src/runtime/c4g_context_win.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_context_win.hpp -------------------------------------------------------------------------------- /src/runtime/c4g_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_gl.cpp -------------------------------------------------------------------------------- /src/runtime/c4g_gl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_gl.hpp -------------------------------------------------------------------------------- /src/runtime/c4g_glpass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_glpass.cpp -------------------------------------------------------------------------------- /src/runtime/c4g_glpass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_glpass.hpp -------------------------------------------------------------------------------- /src/runtime/c4g_glsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_glsl.cpp -------------------------------------------------------------------------------- /src/runtime/c4g_glsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_glsl.hpp -------------------------------------------------------------------------------- /src/runtime/c4g_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_runtime.cpp -------------------------------------------------------------------------------- /src/runtime/c4g_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_runtime.h -------------------------------------------------------------------------------- /src/runtime/c4g_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_utils.cpp -------------------------------------------------------------------------------- /src/runtime/c4g_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/c4g_utils.hpp -------------------------------------------------------------------------------- /src/runtime/freeglut/Copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/freeglut/Copying.txt -------------------------------------------------------------------------------- /src/runtime/freeglut/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/freeglut/Readme.txt -------------------------------------------------------------------------------- /src/runtime/freeglut/bin/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/freeglut/bin/freeglut.dll -------------------------------------------------------------------------------- /src/runtime/freeglut/bin/x64/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/freeglut/bin/x64/freeglut.dll -------------------------------------------------------------------------------- /src/runtime/freeglut/include/GL/freeglut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/freeglut/include/GL/freeglut.h -------------------------------------------------------------------------------- /src/runtime/freeglut/include/GL/freeglut_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/freeglut/include/GL/freeglut_ext.h -------------------------------------------------------------------------------- /src/runtime/freeglut/include/GL/freeglut_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/freeglut/include/GL/freeglut_std.h -------------------------------------------------------------------------------- /src/runtime/freeglut/include/GL/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/freeglut/include/GL/glut.h -------------------------------------------------------------------------------- /src/runtime/freeglut/lib/freeglut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/freeglut/lib/freeglut.lib -------------------------------------------------------------------------------- /src/runtime/freeglut/lib/x64/freeglut.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/freeglut/lib/x64/freeglut.lib -------------------------------------------------------------------------------- /src/runtime/glew/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/LICENSE.txt -------------------------------------------------------------------------------- /src/runtime/glew/bin/Release/Win32/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/bin/Release/Win32/glew32.dll -------------------------------------------------------------------------------- /src/runtime/glew/bin/Release/Win32/glewinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/bin/Release/Win32/glewinfo.exe -------------------------------------------------------------------------------- /src/runtime/glew/bin/Release/Win32/visualinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/bin/Release/Win32/visualinfo.exe -------------------------------------------------------------------------------- /src/runtime/glew/bin/Release/x64/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/bin/Release/x64/glew32.dll -------------------------------------------------------------------------------- /src/runtime/glew/bin/Release/x64/glewinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/bin/Release/x64/glewinfo.exe -------------------------------------------------------------------------------- /src/runtime/glew/bin/Release/x64/visualinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/bin/Release/x64/visualinfo.exe -------------------------------------------------------------------------------- /src/runtime/glew/doc/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/advanced.html -------------------------------------------------------------------------------- /src/runtime/glew/doc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/basic.html -------------------------------------------------------------------------------- /src/runtime/glew/doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/build.html -------------------------------------------------------------------------------- /src/runtime/glew/doc/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/credits.html -------------------------------------------------------------------------------- /src/runtime/glew/doc/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/github.png -------------------------------------------------------------------------------- /src/runtime/glew/doc/glew.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/glew.css -------------------------------------------------------------------------------- /src/runtime/glew/doc/glew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/glew.html -------------------------------------------------------------------------------- /src/runtime/glew/doc/glew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/glew.png -------------------------------------------------------------------------------- /src/runtime/glew/doc/glew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/glew.txt -------------------------------------------------------------------------------- /src/runtime/glew/doc/glxew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/glxew.html -------------------------------------------------------------------------------- /src/runtime/glew/doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/gpl.txt -------------------------------------------------------------------------------- /src/runtime/glew/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/index.html -------------------------------------------------------------------------------- /src/runtime/glew/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/install.html -------------------------------------------------------------------------------- /src/runtime/glew/doc/khronos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/khronos.txt -------------------------------------------------------------------------------- /src/runtime/glew/doc/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/log.html -------------------------------------------------------------------------------- /src/runtime/glew/doc/mesa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/mesa.txt -------------------------------------------------------------------------------- /src/runtime/glew/doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/new.png -------------------------------------------------------------------------------- /src/runtime/glew/doc/ogl_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/ogl_sm.jpg -------------------------------------------------------------------------------- /src/runtime/glew/doc/travis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/travis.png -------------------------------------------------------------------------------- /src/runtime/glew/doc/wglew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/doc/wglew.html -------------------------------------------------------------------------------- /src/runtime/glew/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/include/GL/eglew.h -------------------------------------------------------------------------------- /src/runtime/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/include/GL/glew.h -------------------------------------------------------------------------------- /src/runtime/glew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/include/GL/glxew.h -------------------------------------------------------------------------------- /src/runtime/glew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/include/GL/wglew.h -------------------------------------------------------------------------------- /src/runtime/glew/lib/Release/Win32/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/lib/Release/Win32/glew32.lib -------------------------------------------------------------------------------- /src/runtime/glew/lib/Release/Win32/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/lib/Release/Win32/glew32s.lib -------------------------------------------------------------------------------- /src/runtime/glew/lib/Release/x64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/lib/Release/x64/glew32.lib -------------------------------------------------------------------------------- /src/runtime/glew/lib/Release/x64/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/glew/lib/Release/x64/glew32s.lib -------------------------------------------------------------------------------- /src/runtime/runtime.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/runtime.vcxproj -------------------------------------------------------------------------------- /src/runtime/runtime.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/runtime/runtime.vcxproj.filters -------------------------------------------------------------------------------- /src/shell/c4g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/shell/c4g.cpp -------------------------------------------------------------------------------- /src/shell/c4g.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/shell/c4g.vcxproj -------------------------------------------------------------------------------- /src/shell/c4g.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/src/shell/c4g.vcxproj.filters -------------------------------------------------------------------------------- /test/c4grt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/c4grt.dll -------------------------------------------------------------------------------- /test/c4grt_eval.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/c4grt_eval.exe -------------------------------------------------------------------------------- /test/c_eval.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/c_eval.exe -------------------------------------------------------------------------------- /test/c_eval/c_eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/c_eval/c_eval.c -------------------------------------------------------------------------------- /test/cs_eval.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/cs_eval.exe -------------------------------------------------------------------------------- /test/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/freeglut.dll -------------------------------------------------------------------------------- /test/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/glew32.dll -------------------------------------------------------------------------------- /test/prog.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/prog.bas -------------------------------------------------------------------------------- /test/prog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/prog.cs -------------------------------------------------------------------------------- /test/prog.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/prog.vert -------------------------------------------------------------------------------- /test/test.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/test.bas -------------------------------------------------------------------------------- /test/test.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/c4gpu/HEAD/test/test.vert --------------------------------------------------------------------------------