├── .gitignore ├── CMakeLists.txt ├── cmake ├── assign_source_group.cmake ├── import_library.cmake └── set_max_warning_level.cmake ├── docs └── coverage_4_6.pdf ├── include └── gl │ ├── all.hpp │ ├── auxiliary │ └── glm_uniforms.hpp │ ├── buffer.hpp │ ├── command_execution.hpp │ ├── compute.hpp │ ├── debug.hpp │ ├── draw_commands.hpp │ ├── framebuffer.hpp │ ├── image_handle.hpp │ ├── opengl.hpp │ ├── per_fragment_ops.hpp │ ├── pipeline.hpp │ ├── program.hpp │ ├── query.hpp │ ├── rasterization.hpp │ ├── renderbuffer.hpp │ ├── sampler.hpp │ ├── shader.hpp │ ├── state.hpp │ ├── sync.hpp │ ├── tessellation.hpp │ ├── texture.hpp │ ├── texture_handle.hpp │ ├── texture_view.hpp │ ├── transform_feedback.hpp │ ├── unmanaged.hpp │ ├── vertex_array.hpp │ ├── vertex_post_processing_ops.hpp │ └── viewport.hpp ├── license.txt └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | *build/* -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/assign_source_group.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/cmake/assign_source_group.cmake -------------------------------------------------------------------------------- /cmake/import_library.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/cmake/import_library.cmake -------------------------------------------------------------------------------- /cmake/set_max_warning_level.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/cmake/set_max_warning_level.cmake -------------------------------------------------------------------------------- /docs/coverage_4_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/docs/coverage_4_6.pdf -------------------------------------------------------------------------------- /include/gl/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/all.hpp -------------------------------------------------------------------------------- /include/gl/auxiliary/glm_uniforms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/auxiliary/glm_uniforms.hpp -------------------------------------------------------------------------------- /include/gl/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/buffer.hpp -------------------------------------------------------------------------------- /include/gl/command_execution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/command_execution.hpp -------------------------------------------------------------------------------- /include/gl/compute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/compute.hpp -------------------------------------------------------------------------------- /include/gl/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/debug.hpp -------------------------------------------------------------------------------- /include/gl/draw_commands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/draw_commands.hpp -------------------------------------------------------------------------------- /include/gl/framebuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/framebuffer.hpp -------------------------------------------------------------------------------- /include/gl/image_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/image_handle.hpp -------------------------------------------------------------------------------- /include/gl/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/opengl.hpp -------------------------------------------------------------------------------- /include/gl/per_fragment_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/per_fragment_ops.hpp -------------------------------------------------------------------------------- /include/gl/pipeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/pipeline.hpp -------------------------------------------------------------------------------- /include/gl/program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/program.hpp -------------------------------------------------------------------------------- /include/gl/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/query.hpp -------------------------------------------------------------------------------- /include/gl/rasterization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/rasterization.hpp -------------------------------------------------------------------------------- /include/gl/renderbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/renderbuffer.hpp -------------------------------------------------------------------------------- /include/gl/sampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/sampler.hpp -------------------------------------------------------------------------------- /include/gl/shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/shader.hpp -------------------------------------------------------------------------------- /include/gl/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/state.hpp -------------------------------------------------------------------------------- /include/gl/sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/sync.hpp -------------------------------------------------------------------------------- /include/gl/tessellation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/tessellation.hpp -------------------------------------------------------------------------------- /include/gl/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/texture.hpp -------------------------------------------------------------------------------- /include/gl/texture_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/texture_handle.hpp -------------------------------------------------------------------------------- /include/gl/texture_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/texture_view.hpp -------------------------------------------------------------------------------- /include/gl/transform_feedback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/transform_feedback.hpp -------------------------------------------------------------------------------- /include/gl/unmanaged.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/unmanaged.hpp -------------------------------------------------------------------------------- /include/gl/vertex_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/vertex_array.hpp -------------------------------------------------------------------------------- /include/gl/vertex_post_processing_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/vertex_post_processing_ops.hpp -------------------------------------------------------------------------------- /include/gl/viewport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/include/gl/viewport.hpp -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acdemiralp/gl/HEAD/readme.md --------------------------------------------------------------------------------