├── .gitignore ├── README.md ├── aogl.cpp ├── aogl.frag ├── aogl.vert ├── lib ├── deps │ ├── EGL │ │ └── eglext.h │ ├── GL │ │ ├── glext.h │ │ ├── glxext.h │ │ └── wglext.h │ ├── getopt.c │ ├── getopt.h │ ├── tinycthread.c │ └── tinycthread.h ├── glew │ ├── glew.c │ ├── glew.h │ ├── glxew.h │ └── wglew.h ├── glfw │ ├── deps │ │ ├── EGL │ │ │ └── eglext.h │ │ ├── GL │ │ │ ├── glext.h │ │ │ ├── glxext.h │ │ │ └── wglext.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── tinycthread.c │ │ └── tinycthread.h │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── lib │ │ ├── CMakeLists.txt │ │ ├── clipboard.c │ │ ├── cocoa_clipboard.m │ │ ├── cocoa_gamma.c │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_platform.h │ │ ├── gamma.c │ │ ├── glext.h │ │ ├── glfw3.pc.in │ │ ├── glfwConfig.cmake.in │ │ ├── glfwConfigVersion.cmake.in │ │ ├── glfw_config.h.in │ │ ├── glx_context.c │ │ ├── glx_platform.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── joystick.c │ │ ├── monitor.c │ │ ├── nsgl_context.m │ │ ├── nsgl_platform.h │ │ ├── time.c │ │ ├── wgl_context.c │ │ ├── wgl_platform.h │ │ ├── win32_clipboard.c │ │ ├── win32_gamma.c │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_time.c │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── x11_clipboard.c │ │ ├── x11_gamma.c │ │ ├── x11_init.c │ │ ├── x11_joystick.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_time.c │ │ ├── x11_unicode.c │ │ └── x11_window.c ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── dummy.cpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_noise.hpp │ │ ├── func_noise.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── glm.cpp │ │ ├── intrinsic_common.hpp │ │ ├── intrinsic_common.inl │ │ ├── intrinsic_exponential.hpp │ │ ├── intrinsic_exponential.inl │ │ ├── intrinsic_geometric.hpp │ │ ├── intrinsic_geometric.inl │ │ ├── intrinsic_integer.hpp │ │ ├── intrinsic_integer.inl │ │ ├── intrinsic_matrix.hpp │ │ ├── intrinsic_matrix.inl │ │ ├── intrinsic_trigonometric.hpp │ │ ├── intrinsic_trigonometric.inl │ │ ├── intrinsic_vector_relational.hpp │ │ ├── intrinsic_vector_relational.inl │ │ ├── precision.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_gentype.hpp │ │ ├── type_gentype.inl │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_int.hpp │ │ ├── type_mat.hpp │ │ ├── type_mat.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_vec.hpp │ │ ├── type_vec.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ ├── type_vec4_avx.inl │ │ ├── type_vec4_avx2.inl │ │ └── type_vec4_sse2.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ ├── vec1.hpp │ │ └── vec1.inl │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extented_min_max.hpp │ │ ├── extented_min_max.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── multiple.hpp │ │ ├── multiple.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── simd_mat4.hpp │ │ ├── simd_mat4.inl │ │ ├── simd_quat.hpp │ │ ├── simd_quat.inl │ │ ├── simd_vec4.hpp │ │ ├── simd_vec4.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── imgui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_draw.cpp │ ├── imgui_impl_glfw_gl3.cpp │ ├── imgui_impl_glfw_gl3.h │ ├── imgui_internal.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ └── stb_truetype.h ├── include │ └── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h └── stb │ ├── stb_image.c │ └── stb_image.h ├── premake4.lua └── textures ├── spnza_bricks_a_bump.png ├── spnza_bricks_a_diff.tga └── spnza_bricks_a_spec.tga /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/README.md -------------------------------------------------------------------------------- /aogl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/aogl.cpp -------------------------------------------------------------------------------- /aogl.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/aogl.frag -------------------------------------------------------------------------------- /aogl.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/aogl.vert -------------------------------------------------------------------------------- /lib/deps/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/deps/EGL/eglext.h -------------------------------------------------------------------------------- /lib/deps/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/deps/GL/glext.h -------------------------------------------------------------------------------- /lib/deps/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/deps/GL/glxext.h -------------------------------------------------------------------------------- /lib/deps/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/deps/GL/wglext.h -------------------------------------------------------------------------------- /lib/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/deps/getopt.c -------------------------------------------------------------------------------- /lib/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/deps/getopt.h -------------------------------------------------------------------------------- /lib/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/deps/tinycthread.c -------------------------------------------------------------------------------- /lib/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/deps/tinycthread.h -------------------------------------------------------------------------------- /lib/glew/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glew/glew.c -------------------------------------------------------------------------------- /lib/glew/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glew/glew.h -------------------------------------------------------------------------------- /lib/glew/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glew/glxew.h -------------------------------------------------------------------------------- /lib/glew/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glew/wglew.h -------------------------------------------------------------------------------- /lib/glfw/deps/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/deps/EGL/eglext.h -------------------------------------------------------------------------------- /lib/glfw/deps/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/deps/GL/glext.h -------------------------------------------------------------------------------- /lib/glfw/deps/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/deps/GL/glxext.h -------------------------------------------------------------------------------- /lib/glfw/deps/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/deps/GL/wglext.h -------------------------------------------------------------------------------- /lib/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/deps/getopt.c -------------------------------------------------------------------------------- /lib/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/deps/getopt.h -------------------------------------------------------------------------------- /lib/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /lib/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /lib/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /lib/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /lib/glfw/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glfw/lib/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/clipboard.c -------------------------------------------------------------------------------- /lib/glfw/lib/cocoa_clipboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/cocoa_clipboard.m -------------------------------------------------------------------------------- /lib/glfw/lib/cocoa_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/cocoa_gamma.c -------------------------------------------------------------------------------- /lib/glfw/lib/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/cocoa_init.m -------------------------------------------------------------------------------- /lib/glfw/lib/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/cocoa_joystick.m -------------------------------------------------------------------------------- /lib/glfw/lib/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/cocoa_monitor.m -------------------------------------------------------------------------------- /lib/glfw/lib/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/cocoa_platform.h -------------------------------------------------------------------------------- /lib/glfw/lib/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/cocoa_time.c -------------------------------------------------------------------------------- /lib/glfw/lib/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/cocoa_window.m -------------------------------------------------------------------------------- /lib/glfw/lib/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/context.c -------------------------------------------------------------------------------- /lib/glfw/lib/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/egl_context.c -------------------------------------------------------------------------------- /lib/glfw/lib/egl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/egl_platform.h -------------------------------------------------------------------------------- /lib/glfw/lib/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/gamma.c -------------------------------------------------------------------------------- /lib/glfw/lib/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/glext.h -------------------------------------------------------------------------------- /lib/glfw/lib/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/glfw3.pc.in -------------------------------------------------------------------------------- /lib/glfw/lib/glfwConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/glfwConfig.cmake.in -------------------------------------------------------------------------------- /lib/glfw/lib/glfwConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/glfwConfigVersion.cmake.in -------------------------------------------------------------------------------- /lib/glfw/lib/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/glfw_config.h.in -------------------------------------------------------------------------------- /lib/glfw/lib/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/glx_context.c -------------------------------------------------------------------------------- /lib/glfw/lib/glx_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/glx_platform.h -------------------------------------------------------------------------------- /lib/glfw/lib/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/init.c -------------------------------------------------------------------------------- /lib/glfw/lib/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/input.c -------------------------------------------------------------------------------- /lib/glfw/lib/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/internal.h -------------------------------------------------------------------------------- /lib/glfw/lib/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/joystick.c -------------------------------------------------------------------------------- /lib/glfw/lib/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/monitor.c -------------------------------------------------------------------------------- /lib/glfw/lib/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/nsgl_context.m -------------------------------------------------------------------------------- /lib/glfw/lib/nsgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/nsgl_platform.h -------------------------------------------------------------------------------- /lib/glfw/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/time.c -------------------------------------------------------------------------------- /lib/glfw/lib/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/wgl_context.c -------------------------------------------------------------------------------- /lib/glfw/lib/wgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/wgl_platform.h -------------------------------------------------------------------------------- /lib/glfw/lib/win32_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/win32_clipboard.c -------------------------------------------------------------------------------- /lib/glfw/lib/win32_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/win32_gamma.c -------------------------------------------------------------------------------- /lib/glfw/lib/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/win32_init.c -------------------------------------------------------------------------------- /lib/glfw/lib/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/win32_joystick.c -------------------------------------------------------------------------------- /lib/glfw/lib/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/win32_monitor.c -------------------------------------------------------------------------------- /lib/glfw/lib/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/win32_platform.h -------------------------------------------------------------------------------- /lib/glfw/lib/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/win32_time.c -------------------------------------------------------------------------------- /lib/glfw/lib/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/win32_window.c -------------------------------------------------------------------------------- /lib/glfw/lib/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/window.c -------------------------------------------------------------------------------- /lib/glfw/lib/x11_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/x11_clipboard.c -------------------------------------------------------------------------------- /lib/glfw/lib/x11_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/x11_gamma.c -------------------------------------------------------------------------------- /lib/glfw/lib/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/x11_init.c -------------------------------------------------------------------------------- /lib/glfw/lib/x11_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/x11_joystick.c -------------------------------------------------------------------------------- /lib/glfw/lib/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/x11_monitor.c -------------------------------------------------------------------------------- /lib/glfw/lib/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/x11_platform.h -------------------------------------------------------------------------------- /lib/glfw/lib/x11_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/x11_time.c -------------------------------------------------------------------------------- /lib/glfw/lib/x11_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/x11_unicode.c -------------------------------------------------------------------------------- /lib/glfw/lib/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glfw/lib/x11_window.c -------------------------------------------------------------------------------- /lib/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/common.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/_features.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /lib/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /lib/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_common.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /lib/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/glm.cpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /lib/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/precision.hpp -------------------------------------------------------------------------------- /lib/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/setup.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_half.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4_avx.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec4_avx.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4_avx2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec4_avx2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4_sse2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/detail/type_vec4_sse2.inl -------------------------------------------------------------------------------- /lib/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/exponential.hpp -------------------------------------------------------------------------------- /lib/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/ext.hpp -------------------------------------------------------------------------------- /lib/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/fwd.hpp -------------------------------------------------------------------------------- /lib/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/geometric.hpp -------------------------------------------------------------------------------- /lib/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/glm.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /lib/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/constants.inl -------------------------------------------------------------------------------- /lib/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /lib/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/integer.inl -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /lib/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/noise.inl -------------------------------------------------------------------------------- /lib/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/packing.inl -------------------------------------------------------------------------------- /lib/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /lib/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/random.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/random.inl -------------------------------------------------------------------------------- /lib/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /lib/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/round.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/round.inl -------------------------------------------------------------------------------- /lib/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /lib/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /lib/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /lib/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /lib/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /lib/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/bit.inl -------------------------------------------------------------------------------- /lib/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /lib/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /lib/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /lib/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/common.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/common.inl -------------------------------------------------------------------------------- /lib/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /lib/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /lib/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /lib/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /lib/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/extend.inl -------------------------------------------------------------------------------- /lib/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /lib/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /lib/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /lib/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /lib/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /lib/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /lib/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/integer.inl -------------------------------------------------------------------------------- /lib/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /lib/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/io.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/io.inl -------------------------------------------------------------------------------- /lib/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /lib/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /lib/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /lib/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/norm.inl -------------------------------------------------------------------------------- /lib/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/normal.inl -------------------------------------------------------------------------------- /lib/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /lib/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /lib/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /lib/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /lib/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /lib/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /lib/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/projection.inl -------------------------------------------------------------------------------- /lib/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /lib/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/range.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /lib/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /lib/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /lib/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /lib/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /lib/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /lib/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /lib/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/spline.inl -------------------------------------------------------------------------------- /lib/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /lib/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /lib/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/transform.inl -------------------------------------------------------------------------------- /lib/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /lib/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /lib/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /lib/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /lib/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /lib/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/integer.hpp -------------------------------------------------------------------------------- /lib/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/mat2x2.hpp -------------------------------------------------------------------------------- /lib/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/mat2x3.hpp -------------------------------------------------------------------------------- /lib/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/mat2x4.hpp -------------------------------------------------------------------------------- /lib/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/mat3x2.hpp -------------------------------------------------------------------------------- /lib/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/mat3x3.hpp -------------------------------------------------------------------------------- /lib/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/mat3x4.hpp -------------------------------------------------------------------------------- /lib/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/mat4x2.hpp -------------------------------------------------------------------------------- /lib/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/mat4x3.hpp -------------------------------------------------------------------------------- /lib/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/mat4x4.hpp -------------------------------------------------------------------------------- /lib/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/matrix.hpp -------------------------------------------------------------------------------- /lib/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/packing.hpp -------------------------------------------------------------------------------- /lib/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/trigonometric.hpp -------------------------------------------------------------------------------- /lib/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/vec2.hpp -------------------------------------------------------------------------------- /lib/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/vec3.hpp -------------------------------------------------------------------------------- /lib/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/vec4.hpp -------------------------------------------------------------------------------- /lib/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/glm/vector_relational.hpp -------------------------------------------------------------------------------- /lib/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/imgui/imconfig.h -------------------------------------------------------------------------------- /lib/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/imgui/imgui.cpp -------------------------------------------------------------------------------- /lib/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/imgui/imgui.h -------------------------------------------------------------------------------- /lib/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /lib/imgui/imgui_impl_glfw_gl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/imgui/imgui_impl_glfw_gl3.cpp -------------------------------------------------------------------------------- /lib/imgui/imgui_impl_glfw_gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/imgui/imgui_impl_glfw_gl3.h -------------------------------------------------------------------------------- /lib/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/imgui/imgui_internal.h -------------------------------------------------------------------------------- /lib/imgui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/imgui/stb_rect_pack.h -------------------------------------------------------------------------------- /lib/imgui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/imgui/stb_textedit.h -------------------------------------------------------------------------------- /lib/imgui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/imgui/stb_truetype.h -------------------------------------------------------------------------------- /lib/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /lib/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /lib/stb/stb_image.c: -------------------------------------------------------------------------------- 1 | #define STB_IMAGE_IMPLEMENTATION 2 | #include "stb_image.h" 3 | -------------------------------------------------------------------------------- /lib/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/lib/stb/stb_image.h -------------------------------------------------------------------------------- /premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/premake4.lua -------------------------------------------------------------------------------- /textures/spnza_bricks_a_bump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/textures/spnza_bricks_a_bump.png -------------------------------------------------------------------------------- /textures/spnza_bricks_a_diff.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/textures/spnza_bricks_a_diff.tga -------------------------------------------------------------------------------- /textures/spnza_bricks_a_spec.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdrienHerubel/aogl_course_2015/HEAD/textures/spnza_bricks_a_spec.tga --------------------------------------------------------------------------------