├── .gitignore ├── .hgignore ├── BUILDING.txt ├── CMakeLists.txt ├── FPSGame ├── FPSGame.cpp ├── FPSGame.h ├── Minimap.cpp ├── Minimap.h ├── Shaders │ ├── MapFragmentShader.fragmentshader │ ├── MapVertexShader.vertexshader │ ├── MiniMapFragmentShader.fragmentshader │ ├── MiniMapVertexShader.vertexshader │ ├── SunFragmentShader.fragmentshader │ └── SunVertexShader.vertexshader ├── map.cpp ├── map.h └── textures │ ├── d29_g.bmp │ ├── d3_g.bmp │ ├── map2d.obj │ ├── mapv1.blend │ ├── mapv1.blend1 │ ├── mapv1.obj │ ├── sun.obj │ ├── texture.bmp │ └── wall.jpg ├── Makefile ├── README.md ├── common ├── controls.cpp ├── controls.hpp ├── objloader.cpp ├── objloader.hpp ├── quaternion_utils.cpp ├── quaternion_utils.hpp ├── shader.cpp ├── shader.hpp ├── tangentspace.cpp ├── tangentspace.hpp ├── text2D.cpp ├── text2D.hpp ├── texture.cpp ├── texture.hpp ├── vboindexer.cpp └── vboindexer.hpp ├── distrib ├── CMakeLists.txt ├── external │ └── NVAPI-R304-developer │ │ ├── NVAPI_R304_Public_SDK_RelNotes.pdf │ │ ├── NVAPI_Reference_Developer.chm │ │ ├── NVAPI_SDK_License_Agreement.pdf │ │ ├── NvApiDriverSettings.c │ │ ├── NvApiDriverSettings.h │ │ ├── amd64 │ │ └── nvapi64.lib │ │ ├── nvapi.h │ │ └── x86 │ │ └── nvapi.lib ├── package.bat ├── package.py ├── screenshot.h ├── selectoptimus.cpp ├── tests_core2.py ├── tests_platane.bat ├── tests_platane.py ├── tests_potiron.bat ├── tests_potiron.py └── utils.py ├── external ├── CMakeLists.txt ├── glew-1.13.0 │ ├── LICENSE.txt │ ├── Makefile │ ├── README.txt │ ├── TODO.txt │ ├── auto │ │ ├── Makefile │ │ ├── bin │ │ │ ├── filter_gl_ext.sh │ │ │ ├── filter_gles_ext.sh │ │ │ ├── filter_spec.py │ │ │ ├── make.pl │ │ │ ├── make_def_fun.pl │ │ │ ├── make_def_var.pl │ │ │ ├── make_header.pl │ │ │ ├── make_html.pl │ │ │ ├── make_info.pl │ │ │ ├── make_info_list.pl │ │ │ ├── make_init.pl │ │ │ ├── make_list.pl │ │ │ ├── make_str.pl │ │ │ ├── make_struct_fun.pl │ │ │ ├── make_struct_var.pl │ │ │ ├── parse_spec.pl │ │ │ └── update_ext.sh │ │ ├── blacklist │ │ ├── core │ │ │ └── gl │ │ │ │ ├── GLX_AMD_gpu_association │ │ │ │ ├── GLX_ARB_get_proc_address │ │ │ │ ├── GLX_ATI_pixel_format_float │ │ │ │ ├── GLX_ATI_render_texture │ │ │ │ ├── GLX_EXT_create_context_es2_profile │ │ │ │ ├── GLX_EXT_create_context_es_profile │ │ │ │ ├── GLX_EXT_fbconfig_packed_float │ │ │ │ ├── GLX_EXT_framebuffer_sRGB │ │ │ │ ├── GLX_MESA_swap_control │ │ │ │ ├── GLX_NV_float_buffer │ │ │ │ ├── GLX_NV_vertex_array_range │ │ │ │ ├── GLX_SGIS_shared_multisample │ │ │ │ ├── GLX_SGIX_hyperpipe │ │ │ │ ├── GLX_SGIX_swap_barrier │ │ │ │ ├── GLX_SGIX_swap_group │ │ │ │ ├── GLX_SGI_video_sync │ │ │ │ ├── GLX_SUN_video_resize │ │ │ │ ├── GLX_VERSION_1_2 │ │ │ │ ├── GLX_VERSION_1_3 │ │ │ │ ├── GLX_VERSION_1_4 │ │ │ │ ├── GL_APPLE_float_pixels │ │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ │ ├── GL_APPLE_texture_range │ │ │ │ ├── GL_ARB_draw_instanced │ │ │ │ ├── GL_ARB_imaging │ │ │ │ ├── GL_ARB_instanced_arrays │ │ │ │ ├── GL_ARB_internalformat_query2 │ │ │ │ ├── GL_ARB_matrix_palette │ │ │ │ ├── GL_ARB_multitexture │ │ │ │ ├── GL_ARB_robustness │ │ │ │ ├── GL_ARB_separate_shader_objects │ │ │ │ ├── GL_ARB_vertex_attrib_64bit │ │ │ │ ├── GL_ARB_vertex_blend │ │ │ │ ├── GL_ATIX_point_sprites │ │ │ │ ├── GL_ATIX_texture_env_combine3 │ │ │ │ ├── GL_ATIX_texture_env_route │ │ │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ │ │ ├── GL_ATI_envmap_bumpmap │ │ │ │ ├── GL_ATI_map_object_buffer │ │ │ │ ├── GL_ATI_pn_triangles │ │ │ │ ├── GL_ATI_separate_stencil │ │ │ │ ├── GL_ATI_shader_texture_lod │ │ │ │ ├── GL_ATI_texture_compression_3dc │ │ │ │ ├── GL_ATI_vertex_streams │ │ │ │ ├── GL_EXT_Cg_shader │ │ │ │ ├── GL_EXT_bindable_uniform │ │ │ │ ├── GL_EXT_debug_marker │ │ │ │ ├── GL_EXT_depth_bounds_test │ │ │ │ ├── GL_EXT_draw_instanced │ │ │ │ ├── GL_EXT_draw_range_elements │ │ │ │ ├── GL_EXT_fog_coord │ │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ │ ├── GL_EXT_packed_float │ │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ │ ├── GL_EXT_secondary_color │ │ │ │ ├── GL_EXT_texture_array │ │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ │ ├── GL_EXT_texture_cube_map │ │ │ │ ├── GL_EXT_texture_edge_clamp │ │ │ │ ├── GL_EXT_texture_integer │ │ │ │ ├── GL_EXT_texture_rectangle │ │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ │ ├── GL_EXT_timer_query │ │ │ │ ├── GL_EXT_vertex_shader │ │ │ │ ├── GL_KTX_buffer_region │ │ │ │ ├── GL_NVX_gpu_memory_info │ │ │ │ ├── GL_NV_depth_buffer_float │ │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ │ ├── GL_NV_fragment_program2 │ │ │ │ ├── GL_NV_fragment_program4 │ │ │ │ ├── GL_NV_fragment_program_option │ │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ │ ├── GL_NV_geometry_program4 │ │ │ │ ├── GL_NV_geometry_shader4 │ │ │ │ ├── GL_NV_gpu_program4 │ │ │ │ ├── GL_NV_gpu_program5 │ │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ │ ├── GL_NV_present_video │ │ │ │ ├── GL_NV_tessellation_program5 │ │ │ │ ├── GL_NV_transform_feedback │ │ │ │ ├── GL_NV_vdpau_interop │ │ │ │ ├── GL_NV_vertex_program2_option │ │ │ │ ├── GL_NV_vertex_program3 │ │ │ │ ├── GL_NV_vertex_program4 │ │ │ │ ├── GL_SGIX_shadow │ │ │ │ ├── GL_SUN_read_video_pixels │ │ │ │ ├── GL_VERSION_1_2 │ │ │ │ ├── GL_VERSION_1_2_1 │ │ │ │ ├── GL_VERSION_1_3 │ │ │ │ ├── GL_VERSION_1_4 │ │ │ │ ├── GL_VERSION_1_5 │ │ │ │ ├── GL_VERSION_2_0 │ │ │ │ ├── GL_VERSION_2_1 │ │ │ │ ├── GL_VERSION_3_0 │ │ │ │ ├── GL_VERSION_3_1 │ │ │ │ ├── GL_VERSION_3_2 │ │ │ │ ├── GL_VERSION_3_3 │ │ │ │ ├── GL_VERSION_4_0 │ │ │ │ ├── GL_VERSION_4_1 │ │ │ │ ├── GL_VERSION_4_2 │ │ │ │ ├── GL_VERSION_4_3 │ │ │ │ ├── GL_VERSION_4_4 │ │ │ │ ├── GL_VERSION_4_5 │ │ │ │ ├── GL_WIN_swap_hint │ │ │ │ ├── WGL_ARB_create_context │ │ │ │ ├── WGL_ATI_render_texture_rectangle │ │ │ │ ├── WGL_EXT_create_context_es2_profile │ │ │ │ ├── WGL_EXT_create_context_es_profile │ │ │ │ ├── WGL_EXT_framebuffer_sRGB │ │ │ │ ├── WGL_EXT_pixel_format_packed_float │ │ │ │ ├── WGL_NV_gpu_affinity │ │ │ │ └── WGL_NV_vertex_array_range │ │ ├── custom.txt │ │ ├── doc │ │ │ ├── advanced.html │ │ │ ├── basic.html │ │ │ ├── build.html │ │ │ ├── credits.html │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ └── log.html │ │ ├── extensions │ │ │ └── gl │ │ │ │ ├── .dummy │ │ │ │ ├── GLX_3DFX_multisample │ │ │ │ ├── GLX_AMD_gpu_association │ │ │ │ ├── GLX_ARB_context_flush_control │ │ │ │ ├── GLX_ARB_create_context │ │ │ │ ├── GLX_ARB_create_context_profile │ │ │ │ ├── GLX_ARB_create_context_robustness │ │ │ │ ├── GLX_ARB_fbconfig_float │ │ │ │ ├── GLX_ARB_framebuffer_sRGB │ │ │ │ ├── GLX_ARB_get_proc_address │ │ │ │ ├── GLX_ARB_multisample │ │ │ │ ├── GLX_ARB_robustness_application_isolation │ │ │ │ ├── GLX_ARB_robustness_share_group_isolation │ │ │ │ ├── GLX_ARB_vertex_buffer_object │ │ │ │ ├── GLX_ATI_pixel_format_float │ │ │ │ ├── GLX_ATI_render_texture │ │ │ │ ├── GLX_EXT_buffer_age │ │ │ │ ├── GLX_EXT_create_context_es2_profile │ │ │ │ ├── GLX_EXT_create_context_es_profile │ │ │ │ ├── GLX_EXT_fbconfig_packed_float │ │ │ │ ├── GLX_EXT_framebuffer_sRGB │ │ │ │ ├── GLX_EXT_import_context │ │ │ │ ├── GLX_EXT_scene_marker │ │ │ │ ├── GLX_EXT_stereo_tree │ │ │ │ ├── GLX_EXT_swap_control │ │ │ │ ├── GLX_EXT_swap_control_tear │ │ │ │ ├── GLX_EXT_texture_from_pixmap │ │ │ │ ├── GLX_EXT_visual_info │ │ │ │ ├── GLX_EXT_visual_rating │ │ │ │ ├── GLX_INTEL_swap_event │ │ │ │ ├── GLX_MESA_agp_offset │ │ │ │ ├── GLX_MESA_copy_sub_buffer │ │ │ │ ├── GLX_MESA_pixmap_colormap │ │ │ │ ├── GLX_MESA_query_renderer │ │ │ │ ├── GLX_MESA_release_buffers │ │ │ │ ├── GLX_MESA_set_3dfx_mode │ │ │ │ ├── GLX_MESA_swap_control │ │ │ │ ├── GLX_NV_copy_buffer │ │ │ │ ├── GLX_NV_copy_image │ │ │ │ ├── GLX_NV_delay_before_swap │ │ │ │ ├── GLX_NV_float_buffer │ │ │ │ ├── GLX_NV_multisample_coverage │ │ │ │ ├── GLX_NV_present_video │ │ │ │ ├── GLX_NV_swap_group │ │ │ │ ├── GLX_NV_vertex_array_range │ │ │ │ ├── GLX_NV_video_capture │ │ │ │ ├── GLX_NV_video_out │ │ │ │ ├── GLX_OML_swap_method │ │ │ │ ├── GLX_OML_sync_control │ │ │ │ ├── GLX_SGIS_blended_overlay │ │ │ │ ├── GLX_SGIS_color_range │ │ │ │ ├── GLX_SGIS_multisample │ │ │ │ ├── GLX_SGIS_shared_multisample │ │ │ │ ├── GLX_SGIX_fbconfig │ │ │ │ ├── GLX_SGIX_hyperpipe │ │ │ │ ├── GLX_SGIX_pbuffer │ │ │ │ ├── GLX_SGIX_swap_barrier │ │ │ │ ├── GLX_SGIX_swap_group │ │ │ │ ├── GLX_SGIX_video_resize │ │ │ │ ├── GLX_SGIX_visual_select_group │ │ │ │ ├── GLX_SGI_cushion │ │ │ │ ├── GLX_SGI_make_current_read │ │ │ │ ├── GLX_SGI_swap_control │ │ │ │ ├── GLX_SGI_video_sync │ │ │ │ ├── GLX_SUN_get_transparent_index │ │ │ │ ├── GLX_SUN_video_resize │ │ │ │ ├── GL_3DFX_multisample │ │ │ │ ├── GL_3DFX_tbuffer │ │ │ │ ├── GL_3DFX_texture_compression_FXT1 │ │ │ │ ├── GL_AMD_blend_minmax_factor │ │ │ │ ├── GL_AMD_conservative_depth │ │ │ │ ├── GL_AMD_debug_output │ │ │ │ ├── GL_AMD_depth_clamp_separate │ │ │ │ ├── GL_AMD_draw_buffers_blend │ │ │ │ ├── GL_AMD_gcn_shader │ │ │ │ ├── GL_AMD_gpu_shader_int64 │ │ │ │ ├── GL_AMD_interleaved_elements │ │ │ │ ├── GL_AMD_multi_draw_indirect │ │ │ │ ├── GL_AMD_name_gen_delete │ │ │ │ ├── GL_AMD_occlusion_query_event │ │ │ │ ├── GL_AMD_performance_monitor │ │ │ │ ├── GL_AMD_pinned_memory │ │ │ │ ├── GL_AMD_query_buffer_object │ │ │ │ ├── GL_AMD_sample_positions │ │ │ │ ├── GL_AMD_seamless_cubemap_per_texture │ │ │ │ ├── GL_AMD_shader_atomic_counter_ops │ │ │ │ ├── GL_AMD_shader_stencil_export │ │ │ │ ├── GL_AMD_shader_stencil_value_export │ │ │ │ ├── GL_AMD_shader_trinary_minmax │ │ │ │ ├── GL_AMD_sparse_texture │ │ │ │ ├── GL_AMD_stencil_operation_extended │ │ │ │ ├── GL_AMD_texture_texture4 │ │ │ │ ├── GL_AMD_transform_feedback3_lines_triangles │ │ │ │ ├── GL_AMD_transform_feedback4 │ │ │ │ ├── GL_AMD_vertex_shader_layer │ │ │ │ ├── GL_AMD_vertex_shader_tessellator │ │ │ │ ├── GL_AMD_vertex_shader_viewport_index │ │ │ │ ├── GL_ANGLE_depth_texture │ │ │ │ ├── GL_ANGLE_framebuffer_blit │ │ │ │ ├── GL_ANGLE_framebuffer_multisample │ │ │ │ ├── GL_ANGLE_instanced_arrays │ │ │ │ ├── GL_ANGLE_pack_reverse_row_order │ │ │ │ ├── GL_ANGLE_program_binary │ │ │ │ ├── GL_ANGLE_texture_compression_dxt1 │ │ │ │ ├── GL_ANGLE_texture_compression_dxt3 │ │ │ │ ├── GL_ANGLE_texture_compression_dxt5 │ │ │ │ ├── GL_ANGLE_texture_usage │ │ │ │ ├── GL_ANGLE_timer_query │ │ │ │ ├── GL_ANGLE_translated_shader_source │ │ │ │ ├── GL_APPLE_aux_depth_stencil │ │ │ │ ├── GL_APPLE_client_storage │ │ │ │ ├── GL_APPLE_element_array │ │ │ │ ├── GL_APPLE_fence │ │ │ │ ├── GL_APPLE_float_pixels │ │ │ │ ├── GL_APPLE_flush_buffer_range │ │ │ │ ├── GL_APPLE_object_purgeable │ │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ │ ├── GL_APPLE_rgb_422 │ │ │ │ ├── GL_APPLE_row_bytes │ │ │ │ ├── GL_APPLE_specular_vector │ │ │ │ ├── GL_APPLE_texture_range │ │ │ │ ├── GL_APPLE_transform_hint │ │ │ │ ├── GL_APPLE_vertex_array_object │ │ │ │ ├── GL_APPLE_vertex_array_range │ │ │ │ ├── GL_APPLE_vertex_program_evaluators │ │ │ │ ├── GL_APPLE_ycbcr_422 │ │ │ │ ├── GL_ARB_ES2_compatibility │ │ │ │ ├── GL_ARB_ES3_1_compatibility │ │ │ │ ├── GL_ARB_ES3_2_compatibility │ │ │ │ ├── GL_ARB_ES3_compatibility │ │ │ │ ├── GL_ARB_arrays_of_arrays │ │ │ │ ├── GL_ARB_base_instance │ │ │ │ ├── GL_ARB_bindless_texture │ │ │ │ ├── GL_ARB_blend_func_extended │ │ │ │ ├── GL_ARB_buffer_storage │ │ │ │ ├── GL_ARB_cl_event │ │ │ │ ├── GL_ARB_clear_buffer_object │ │ │ │ ├── GL_ARB_clear_texture │ │ │ │ ├── GL_ARB_clip_control │ │ │ │ ├── GL_ARB_color_buffer_float │ │ │ │ ├── GL_ARB_compatibility │ │ │ │ ├── GL_ARB_compressed_texture_pixel_storage │ │ │ │ ├── GL_ARB_compute_shader │ │ │ │ ├── GL_ARB_compute_variable_group_size │ │ │ │ ├── GL_ARB_conditional_render_inverted │ │ │ │ ├── GL_ARB_conservative_depth │ │ │ │ ├── GL_ARB_copy_buffer │ │ │ │ ├── GL_ARB_copy_image │ │ │ │ ├── GL_ARB_cull_distance │ │ │ │ ├── GL_ARB_debug_output │ │ │ │ ├── GL_ARB_depth_buffer_float │ │ │ │ ├── GL_ARB_depth_clamp │ │ │ │ ├── GL_ARB_depth_texture │ │ │ │ ├── GL_ARB_derivative_control │ │ │ │ ├── GL_ARB_direct_state_access │ │ │ │ ├── GL_ARB_draw_buffers │ │ │ │ ├── GL_ARB_draw_buffers_blend │ │ │ │ ├── GL_ARB_draw_elements_base_vertex │ │ │ │ ├── GL_ARB_draw_indirect │ │ │ │ ├── GL_ARB_draw_instanced │ │ │ │ ├── GL_ARB_enhanced_layouts │ │ │ │ ├── GL_ARB_explicit_attrib_location │ │ │ │ ├── GL_ARB_explicit_uniform_location │ │ │ │ ├── GL_ARB_fragment_coord_conventions │ │ │ │ ├── GL_ARB_fragment_layer_viewport │ │ │ │ ├── GL_ARB_fragment_program │ │ │ │ ├── GL_ARB_fragment_program_shadow │ │ │ │ ├── GL_ARB_fragment_shader │ │ │ │ ├── GL_ARB_fragment_shader_interlock │ │ │ │ ├── GL_ARB_framebuffer_no_attachments │ │ │ │ ├── GL_ARB_framebuffer_object │ │ │ │ ├── GL_ARB_framebuffer_sRGB │ │ │ │ ├── GL_ARB_geometry_shader4 │ │ │ │ ├── GL_ARB_get_program_binary │ │ │ │ ├── GL_ARB_get_texture_sub_image │ │ │ │ ├── GL_ARB_gpu_shader5 │ │ │ │ ├── GL_ARB_gpu_shader_fp64 │ │ │ │ ├── GL_ARB_gpu_shader_int64 │ │ │ │ ├── GL_ARB_half_float_pixel │ │ │ │ ├── GL_ARB_half_float_vertex │ │ │ │ ├── GL_ARB_imaging │ │ │ │ ├── GL_ARB_indirect_parameters │ │ │ │ ├── GL_ARB_instanced_arrays │ │ │ │ ├── GL_ARB_internalformat_query │ │ │ │ ├── GL_ARB_internalformat_query2 │ │ │ │ ├── GL_ARB_invalidate_subdata │ │ │ │ ├── GL_ARB_map_buffer_alignment │ │ │ │ ├── GL_ARB_map_buffer_range │ │ │ │ ├── GL_ARB_matrix_palette │ │ │ │ ├── GL_ARB_multi_bind │ │ │ │ ├── GL_ARB_multi_draw_indirect │ │ │ │ ├── GL_ARB_multisample │ │ │ │ ├── GL_ARB_multitexture │ │ │ │ ├── GL_ARB_occlusion_query │ │ │ │ ├── GL_ARB_occlusion_query2 │ │ │ │ ├── GL_ARB_parallel_shader_compile │ │ │ │ ├── GL_ARB_pipeline_statistics_query │ │ │ │ ├── GL_ARB_pixel_buffer_object │ │ │ │ ├── GL_ARB_point_parameters │ │ │ │ ├── GL_ARB_point_sprite │ │ │ │ ├── GL_ARB_post_depth_coverage │ │ │ │ ├── GL_ARB_program_interface_query │ │ │ │ ├── GL_ARB_provoking_vertex │ │ │ │ ├── GL_ARB_query_buffer_object │ │ │ │ ├── GL_ARB_robust_buffer_access_behavior │ │ │ │ ├── GL_ARB_robustness │ │ │ │ ├── GL_ARB_robustness_application_isolation │ │ │ │ ├── GL_ARB_robustness_share_group_isolation │ │ │ │ ├── GL_ARB_sample_locations │ │ │ │ ├── GL_ARB_sample_shading │ │ │ │ ├── GL_ARB_sampler_objects │ │ │ │ ├── GL_ARB_seamless_cube_map │ │ │ │ ├── GL_ARB_seamless_cubemap_per_texture │ │ │ │ ├── GL_ARB_separate_shader_objects │ │ │ │ ├── GL_ARB_shader_atomic_counter_ops │ │ │ │ ├── GL_ARB_shader_atomic_counters │ │ │ │ ├── GL_ARB_shader_ballot │ │ │ │ ├── GL_ARB_shader_bit_encoding │ │ │ │ ├── GL_ARB_shader_clock │ │ │ │ ├── GL_ARB_shader_draw_parameters │ │ │ │ ├── GL_ARB_shader_group_vote │ │ │ │ ├── GL_ARB_shader_image_load_store │ │ │ │ ├── GL_ARB_shader_image_size │ │ │ │ ├── GL_ARB_shader_objects │ │ │ │ ├── GL_ARB_shader_precision │ │ │ │ ├── GL_ARB_shader_stencil_export │ │ │ │ ├── GL_ARB_shader_storage_buffer_object │ │ │ │ ├── GL_ARB_shader_subroutine │ │ │ │ ├── GL_ARB_shader_texture_image_samples │ │ │ │ ├── GL_ARB_shader_texture_lod │ │ │ │ ├── GL_ARB_shader_viewport_layer_array │ │ │ │ ├── GL_ARB_shading_language_100 │ │ │ │ ├── GL_ARB_shading_language_420pack │ │ │ │ ├── GL_ARB_shading_language_include │ │ │ │ ├── GL_ARB_shading_language_packing │ │ │ │ ├── GL_ARB_shadow │ │ │ │ ├── GL_ARB_shadow_ambient │ │ │ │ ├── GL_ARB_sparse_buffer │ │ │ │ ├── GL_ARB_sparse_texture │ │ │ │ ├── GL_ARB_sparse_texture2 │ │ │ │ ├── GL_ARB_sparse_texture_clamp │ │ │ │ ├── GL_ARB_stencil_texturing │ │ │ │ ├── GL_ARB_sync │ │ │ │ ├── GL_ARB_tessellation_shader │ │ │ │ ├── GL_ARB_texture_barrier │ │ │ │ ├── GL_ARB_texture_border_clamp │ │ │ │ ├── GL_ARB_texture_buffer_object │ │ │ │ ├── GL_ARB_texture_buffer_object_rgb32 │ │ │ │ ├── GL_ARB_texture_buffer_range │ │ │ │ ├── GL_ARB_texture_compression │ │ │ │ ├── GL_ARB_texture_compression_bptc │ │ │ │ ├── GL_ARB_texture_compression_rgtc │ │ │ │ ├── GL_ARB_texture_cube_map │ │ │ │ ├── GL_ARB_texture_cube_map_array │ │ │ │ ├── GL_ARB_texture_env_add │ │ │ │ ├── GL_ARB_texture_env_combine │ │ │ │ ├── GL_ARB_texture_env_crossbar │ │ │ │ ├── GL_ARB_texture_env_dot3 │ │ │ │ ├── GL_ARB_texture_filter_minmax │ │ │ │ ├── GL_ARB_texture_float │ │ │ │ ├── GL_ARB_texture_gather │ │ │ │ ├── GL_ARB_texture_mirror_clamp_to_edge │ │ │ │ ├── GL_ARB_texture_mirrored_repeat │ │ │ │ ├── GL_ARB_texture_multisample │ │ │ │ ├── GL_ARB_texture_non_power_of_two │ │ │ │ ├── GL_ARB_texture_query_levels │ │ │ │ ├── GL_ARB_texture_query_lod │ │ │ │ ├── GL_ARB_texture_rectangle │ │ │ │ ├── GL_ARB_texture_rg │ │ │ │ ├── GL_ARB_texture_rgb10_a2ui │ │ │ │ ├── GL_ARB_texture_stencil8 │ │ │ │ ├── GL_ARB_texture_storage │ │ │ │ ├── GL_ARB_texture_storage_multisample │ │ │ │ ├── GL_ARB_texture_swizzle │ │ │ │ ├── GL_ARB_texture_view │ │ │ │ ├── GL_ARB_timer_query │ │ │ │ ├── GL_ARB_transform_feedback2 │ │ │ │ ├── GL_ARB_transform_feedback3 │ │ │ │ ├── GL_ARB_transform_feedback_instanced │ │ │ │ ├── GL_ARB_transform_feedback_overflow_query │ │ │ │ ├── GL_ARB_transpose_matrix │ │ │ │ ├── GL_ARB_uniform_buffer_object │ │ │ │ ├── GL_ARB_vertex_array_bgra │ │ │ │ ├── GL_ARB_vertex_array_object │ │ │ │ ├── GL_ARB_vertex_attrib_64bit │ │ │ │ ├── GL_ARB_vertex_attrib_binding │ │ │ │ ├── GL_ARB_vertex_blend │ │ │ │ ├── GL_ARB_vertex_buffer_object │ │ │ │ ├── GL_ARB_vertex_program │ │ │ │ ├── GL_ARB_vertex_shader │ │ │ │ ├── GL_ARB_vertex_type_10f_11f_11f_rev │ │ │ │ ├── GL_ARB_vertex_type_2_10_10_10_rev │ │ │ │ ├── GL_ARB_viewport_array │ │ │ │ ├── GL_ARB_window_pos │ │ │ │ ├── GL_ATIX_point_sprites │ │ │ │ ├── GL_ATIX_texture_env_combine3 │ │ │ │ ├── GL_ATIX_texture_env_route │ │ │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ │ │ ├── GL_ATI_draw_buffers │ │ │ │ ├── GL_ATI_element_array │ │ │ │ ├── GL_ATI_envmap_bumpmap │ │ │ │ ├── GL_ATI_fragment_shader │ │ │ │ ├── GL_ATI_map_object_buffer │ │ │ │ ├── GL_ATI_meminfo │ │ │ │ ├── GL_ATI_pn_triangles │ │ │ │ ├── GL_ATI_separate_stencil │ │ │ │ ├── GL_ATI_shader_texture_lod │ │ │ │ ├── GL_ATI_text_fragment_shader │ │ │ │ ├── GL_ATI_texture_compression_3dc │ │ │ │ ├── GL_ATI_texture_env_combine3 │ │ │ │ ├── GL_ATI_texture_float │ │ │ │ ├── GL_ATI_texture_mirror_once │ │ │ │ ├── GL_ATI_vertex_array_object │ │ │ │ ├── GL_ATI_vertex_attrib_array_object │ │ │ │ ├── GL_ATI_vertex_streams │ │ │ │ ├── GL_EXT_422_pixels │ │ │ │ ├── GL_EXT_Cg_shader │ │ │ │ ├── GL_EXT_abgr │ │ │ │ ├── GL_EXT_bgra │ │ │ │ ├── GL_EXT_bindable_uniform │ │ │ │ ├── GL_EXT_blend_color │ │ │ │ ├── GL_EXT_blend_equation_separate │ │ │ │ ├── GL_EXT_blend_func_separate │ │ │ │ ├── GL_EXT_blend_logic_op │ │ │ │ ├── GL_EXT_blend_minmax │ │ │ │ ├── GL_EXT_blend_subtract │ │ │ │ ├── GL_EXT_clip_volume_hint │ │ │ │ ├── GL_EXT_cmyka │ │ │ │ ├── GL_EXT_color_subtable │ │ │ │ ├── GL_EXT_compiled_vertex_array │ │ │ │ ├── GL_EXT_convolution │ │ │ │ ├── GL_EXT_coordinate_frame │ │ │ │ ├── GL_EXT_copy_texture │ │ │ │ ├── GL_EXT_cull_vertex │ │ │ │ ├── GL_EXT_debug_label │ │ │ │ ├── GL_EXT_debug_marker │ │ │ │ ├── GL_EXT_depth_bounds_test │ │ │ │ ├── GL_EXT_direct_state_access │ │ │ │ ├── GL_EXT_draw_buffers2 │ │ │ │ ├── GL_EXT_draw_instanced │ │ │ │ ├── GL_EXT_draw_range_elements │ │ │ │ ├── GL_EXT_fog_coord │ │ │ │ ├── GL_EXT_fragment_lighting │ │ │ │ ├── GL_EXT_framebuffer_blit │ │ │ │ ├── GL_EXT_framebuffer_multisample │ │ │ │ ├── GL_EXT_framebuffer_multisample_blit_scaled │ │ │ │ ├── GL_EXT_framebuffer_object │ │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ │ ├── GL_EXT_histogram │ │ │ │ ├── GL_EXT_index_array_formats │ │ │ │ ├── GL_EXT_index_func │ │ │ │ ├── GL_EXT_index_material │ │ │ │ ├── GL_EXT_index_texture │ │ │ │ ├── GL_EXT_light_texture │ │ │ │ ├── GL_EXT_misc_attribute │ │ │ │ ├── GL_EXT_multi_draw_arrays │ │ │ │ ├── GL_EXT_multisample │ │ │ │ ├── GL_EXT_packed_depth_stencil │ │ │ │ ├── GL_EXT_packed_float │ │ │ │ ├── GL_EXT_packed_pixels │ │ │ │ ├── GL_EXT_paletted_texture │ │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ │ ├── GL_EXT_pixel_transform │ │ │ │ ├── GL_EXT_pixel_transform_color_table │ │ │ │ ├── GL_EXT_point_parameters │ │ │ │ ├── GL_EXT_polygon_offset │ │ │ │ ├── GL_EXT_polygon_offset_clamp │ │ │ │ ├── GL_EXT_post_depth_coverage │ │ │ │ ├── GL_EXT_provoking_vertex │ │ │ │ ├── GL_EXT_raster_multisample │ │ │ │ ├── GL_EXT_rescale_normal │ │ │ │ ├── GL_EXT_scene_marker │ │ │ │ ├── GL_EXT_secondary_color │ │ │ │ ├── GL_EXT_separate_shader_objects │ │ │ │ ├── GL_EXT_separate_specular_color │ │ │ │ ├── GL_EXT_shader_image_load_formatted │ │ │ │ ├── GL_EXT_shader_image_load_store │ │ │ │ ├── GL_EXT_shader_integer_mix │ │ │ │ ├── GL_EXT_shadow_funcs │ │ │ │ ├── GL_EXT_shared_texture_palette │ │ │ │ ├── GL_EXT_sparse_texture2 │ │ │ │ ├── GL_EXT_stencil_clear_tag │ │ │ │ ├── GL_EXT_stencil_two_side │ │ │ │ ├── GL_EXT_stencil_wrap │ │ │ │ ├── GL_EXT_subtexture │ │ │ │ ├── GL_EXT_texture │ │ │ │ ├── GL_EXT_texture3D │ │ │ │ ├── GL_EXT_texture_array │ │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ │ ├── GL_EXT_texture_compression_dxt1 │ │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ │ ├── GL_EXT_texture_compression_s3tc │ │ │ │ ├── GL_EXT_texture_cube_map │ │ │ │ ├── GL_EXT_texture_edge_clamp │ │ │ │ ├── GL_EXT_texture_env │ │ │ │ ├── GL_EXT_texture_env_add │ │ │ │ ├── GL_EXT_texture_env_combine │ │ │ │ ├── GL_EXT_texture_env_dot3 │ │ │ │ ├── GL_EXT_texture_filter_anisotropic │ │ │ │ ├── GL_EXT_texture_filter_minmax │ │ │ │ ├── GL_EXT_texture_integer │ │ │ │ ├── GL_EXT_texture_lod_bias │ │ │ │ ├── GL_EXT_texture_mirror_clamp │ │ │ │ ├── GL_EXT_texture_object │ │ │ │ ├── GL_EXT_texture_perturb_normal │ │ │ │ ├── GL_EXT_texture_rectangle │ │ │ │ ├── GL_EXT_texture_sRGB │ │ │ │ ├── GL_EXT_texture_sRGB_decode │ │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ │ ├── GL_EXT_texture_snorm │ │ │ │ ├── GL_EXT_texture_swizzle │ │ │ │ ├── GL_EXT_timer_query │ │ │ │ ├── GL_EXT_transform_feedback │ │ │ │ ├── GL_EXT_vertex_array │ │ │ │ ├── GL_EXT_vertex_array_bgra │ │ │ │ ├── GL_EXT_vertex_attrib_64bit │ │ │ │ ├── GL_EXT_vertex_shader │ │ │ │ ├── GL_EXT_vertex_weighting │ │ │ │ ├── GL_EXT_x11_sync_object │ │ │ │ ├── GL_GREMEDY_frame_terminator │ │ │ │ ├── GL_GREMEDY_string_marker │ │ │ │ ├── GL_HP_convolution_border_modes │ │ │ │ ├── GL_HP_image_transform │ │ │ │ ├── GL_HP_occlusion_test │ │ │ │ ├── GL_HP_texture_lighting │ │ │ │ ├── GL_IBM_cull_vertex │ │ │ │ ├── GL_IBM_multimode_draw_arrays │ │ │ │ ├── GL_IBM_rasterpos_clip │ │ │ │ ├── GL_IBM_static_data │ │ │ │ ├── GL_IBM_texture_mirrored_repeat │ │ │ │ ├── GL_IBM_vertex_array_lists │ │ │ │ ├── GL_INGR_color_clamp │ │ │ │ ├── GL_INGR_interlace_read │ │ │ │ ├── GL_INTEL_fragment_shader_ordering │ │ │ │ ├── GL_INTEL_framebuffer_CMAA │ │ │ │ ├── GL_INTEL_map_texture │ │ │ │ ├── GL_INTEL_parallel_arrays │ │ │ │ ├── GL_INTEL_performance_query │ │ │ │ ├── GL_INTEL_texture_scissor │ │ │ │ ├── GL_KHR_blend_equation_advanced │ │ │ │ ├── GL_KHR_blend_equation_advanced_coherent │ │ │ │ ├── GL_KHR_context_flush_control │ │ │ │ ├── GL_KHR_debug │ │ │ │ ├── GL_KHR_no_error │ │ │ │ ├── GL_KHR_robust_buffer_access_behavior │ │ │ │ ├── GL_KHR_robustness │ │ │ │ ├── GL_KHR_texture_compression_astc_hdr │ │ │ │ ├── GL_KHR_texture_compression_astc_ldr │ │ │ │ ├── GL_KTX_buffer_region │ │ │ │ ├── GL_MESAX_texture_stack │ │ │ │ ├── GL_MESA_pack_invert │ │ │ │ ├── GL_MESA_resize_buffers │ │ │ │ ├── GL_MESA_window_pos │ │ │ │ ├── GL_MESA_ycbcr_texture │ │ │ │ ├── GL_NVX_conditional_render │ │ │ │ ├── GL_NVX_gpu_memory_info │ │ │ │ ├── GL_NV_bindless_multi_draw_indirect │ │ │ │ ├── GL_NV_bindless_multi_draw_indirect_count │ │ │ │ ├── GL_NV_bindless_texture │ │ │ │ ├── GL_NV_blend_equation_advanced │ │ │ │ ├── GL_NV_blend_equation_advanced_coherent │ │ │ │ ├── GL_NV_blend_square │ │ │ │ ├── GL_NV_compute_program5 │ │ │ │ ├── GL_NV_conditional_render │ │ │ │ ├── GL_NV_conservative_raster │ │ │ │ ├── GL_NV_conservative_raster_dilate │ │ │ │ ├── GL_NV_copy_depth_to_color │ │ │ │ ├── GL_NV_copy_image │ │ │ │ ├── GL_NV_deep_texture3D │ │ │ │ ├── GL_NV_depth_buffer_float │ │ │ │ ├── GL_NV_depth_clamp │ │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ │ ├── GL_NV_draw_texture │ │ │ │ ├── GL_NV_evaluators │ │ │ │ ├── GL_NV_explicit_multisample │ │ │ │ ├── GL_NV_fence │ │ │ │ ├── GL_NV_fill_rectangle │ │ │ │ ├── GL_NV_float_buffer │ │ │ │ ├── GL_NV_fog_distance │ │ │ │ ├── GL_NV_fragment_coverage_to_color │ │ │ │ ├── GL_NV_fragment_program │ │ │ │ ├── GL_NV_fragment_program2 │ │ │ │ ├── GL_NV_fragment_program4 │ │ │ │ ├── GL_NV_fragment_program_option │ │ │ │ ├── GL_NV_fragment_shader_interlock │ │ │ │ ├── GL_NV_framebuffer_mixed_samples │ │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ │ ├── GL_NV_geometry_program4 │ │ │ │ ├── GL_NV_geometry_shader4 │ │ │ │ ├── GL_NV_geometry_shader_passthrough │ │ │ │ ├── GL_NV_gpu_program4 │ │ │ │ ├── GL_NV_gpu_program5 │ │ │ │ ├── GL_NV_gpu_program5_mem_extended │ │ │ │ ├── GL_NV_gpu_program_fp64 │ │ │ │ ├── GL_NV_gpu_shader5 │ │ │ │ ├── GL_NV_half_float │ │ │ │ ├── GL_NV_internalformat_sample_query │ │ │ │ ├── GL_NV_light_max_exponent │ │ │ │ ├── GL_NV_multisample_coverage │ │ │ │ ├── GL_NV_multisample_filter_hint │ │ │ │ ├── GL_NV_occlusion_query │ │ │ │ ├── GL_NV_packed_depth_stencil │ │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ │ ├── GL_NV_parameter_buffer_object2 │ │ │ │ ├── GL_NV_path_rendering │ │ │ │ ├── GL_NV_path_rendering_shared_edge │ │ │ │ ├── GL_NV_pixel_data_range │ │ │ │ ├── GL_NV_point_sprite │ │ │ │ ├── GL_NV_present_video │ │ │ │ ├── GL_NV_primitive_restart │ │ │ │ ├── GL_NV_register_combiners │ │ │ │ ├── GL_NV_register_combiners2 │ │ │ │ ├── GL_NV_sample_locations │ │ │ │ ├── GL_NV_sample_mask_override_coverage │ │ │ │ ├── GL_NV_shader_atomic_counters │ │ │ │ ├── GL_NV_shader_atomic_float │ │ │ │ ├── GL_NV_shader_atomic_fp16_vector │ │ │ │ ├── GL_NV_shader_atomic_int64 │ │ │ │ ├── GL_NV_shader_buffer_load │ │ │ │ ├── GL_NV_shader_storage_buffer_object │ │ │ │ ├── GL_NV_shader_thread_group │ │ │ │ ├── GL_NV_shader_thread_shuffle │ │ │ │ ├── GL_NV_tessellation_program5 │ │ │ │ ├── GL_NV_texgen_emboss │ │ │ │ ├── GL_NV_texgen_reflection │ │ │ │ ├── GL_NV_texture_barrier │ │ │ │ ├── GL_NV_texture_compression_vtc │ │ │ │ ├── GL_NV_texture_env_combine4 │ │ │ │ ├── GL_NV_texture_expand_normal │ │ │ │ ├── GL_NV_texture_multisample │ │ │ │ ├── GL_NV_texture_rectangle │ │ │ │ ├── GL_NV_texture_shader │ │ │ │ ├── GL_NV_texture_shader2 │ │ │ │ ├── GL_NV_texture_shader3 │ │ │ │ ├── GL_NV_transform_feedback │ │ │ │ ├── GL_NV_transform_feedback2 │ │ │ │ ├── GL_NV_uniform_buffer_unified_memory │ │ │ │ ├── GL_NV_vdpau_interop │ │ │ │ ├── GL_NV_vertex_array_range │ │ │ │ ├── GL_NV_vertex_array_range2 │ │ │ │ ├── GL_NV_vertex_attrib_integer_64bit │ │ │ │ ├── GL_NV_vertex_buffer_unified_memory │ │ │ │ ├── GL_NV_vertex_program │ │ │ │ ├── GL_NV_vertex_program1_1 │ │ │ │ ├── GL_NV_vertex_program2 │ │ │ │ ├── GL_NV_vertex_program2_option │ │ │ │ ├── GL_NV_vertex_program3 │ │ │ │ ├── GL_NV_vertex_program4 │ │ │ │ ├── GL_NV_video_capture │ │ │ │ ├── GL_NV_viewport_array2 │ │ │ │ ├── GL_OES_byte_coordinates │ │ │ │ ├── GL_OES_compressed_paletted_texture │ │ │ │ ├── GL_OES_read_format │ │ │ │ ├── GL_OES_single_precision │ │ │ │ ├── GL_OML_interlace │ │ │ │ ├── GL_OML_resample │ │ │ │ ├── GL_OML_subsample │ │ │ │ ├── GL_OVR_multiview │ │ │ │ ├── GL_OVR_multiview2 │ │ │ │ ├── GL_PGI_misc_hints │ │ │ │ ├── GL_PGI_vertex_hints │ │ │ │ ├── GL_REGAL_ES1_0_compatibility │ │ │ │ ├── GL_REGAL_ES1_1_compatibility │ │ │ │ ├── GL_REGAL_enable │ │ │ │ ├── GL_REGAL_error_string │ │ │ │ ├── GL_REGAL_extension_query │ │ │ │ ├── GL_REGAL_log │ │ │ │ ├── GL_REGAL_proc_address │ │ │ │ ├── GL_REND_screen_coordinates │ │ │ │ ├── GL_S3_s3tc │ │ │ │ ├── GL_SGIS_color_range │ │ │ │ ├── GL_SGIS_detail_texture │ │ │ │ ├── GL_SGIS_fog_function │ │ │ │ ├── GL_SGIS_generate_mipmap │ │ │ │ ├── GL_SGIS_multisample │ │ │ │ ├── GL_SGIS_pixel_texture │ │ │ │ ├── GL_SGIS_point_line_texgen │ │ │ │ ├── GL_SGIS_sharpen_texture │ │ │ │ ├── GL_SGIS_texture4D │ │ │ │ ├── GL_SGIS_texture_border_clamp │ │ │ │ ├── GL_SGIS_texture_edge_clamp │ │ │ │ ├── GL_SGIS_texture_filter4 │ │ │ │ ├── GL_SGIS_texture_lod │ │ │ │ ├── GL_SGIS_texture_select │ │ │ │ ├── GL_SGIX_async │ │ │ │ ├── GL_SGIX_async_histogram │ │ │ │ ├── GL_SGIX_async_pixel │ │ │ │ ├── GL_SGIX_blend_alpha_minmax │ │ │ │ ├── GL_SGIX_clipmap │ │ │ │ ├── GL_SGIX_convolution_accuracy │ │ │ │ ├── GL_SGIX_depth_texture │ │ │ │ ├── GL_SGIX_flush_raster │ │ │ │ ├── GL_SGIX_fog_offset │ │ │ │ ├── GL_SGIX_fog_texture │ │ │ │ ├── GL_SGIX_fragment_specular_lighting │ │ │ │ ├── GL_SGIX_framezoom │ │ │ │ ├── GL_SGIX_interlace │ │ │ │ ├── GL_SGIX_ir_instrument1 │ │ │ │ ├── GL_SGIX_list_priority │ │ │ │ ├── GL_SGIX_pixel_texture │ │ │ │ ├── GL_SGIX_pixel_texture_bits │ │ │ │ ├── GL_SGIX_reference_plane │ │ │ │ ├── GL_SGIX_resample │ │ │ │ ├── GL_SGIX_shadow │ │ │ │ ├── GL_SGIX_shadow_ambient │ │ │ │ ├── GL_SGIX_sprite │ │ │ │ ├── GL_SGIX_tag_sample_buffer │ │ │ │ ├── GL_SGIX_texture_add_env │ │ │ │ ├── GL_SGIX_texture_coordinate_clamp │ │ │ │ ├── GL_SGIX_texture_lod_bias │ │ │ │ ├── GL_SGIX_texture_multi_buffer │ │ │ │ ├── GL_SGIX_texture_range │ │ │ │ ├── GL_SGIX_texture_scale_bias │ │ │ │ ├── GL_SGIX_vertex_preclip │ │ │ │ ├── GL_SGIX_vertex_preclip_hint │ │ │ │ ├── GL_SGIX_ycrcb │ │ │ │ ├── GL_SGI_color_matrix │ │ │ │ ├── GL_SGI_color_table │ │ │ │ ├── GL_SGI_texture_color_table │ │ │ │ ├── GL_SUNX_constant_data │ │ │ │ ├── GL_SUN_convolution_border_modes │ │ │ │ ├── GL_SUN_global_alpha │ │ │ │ ├── GL_SUN_mesh_array │ │ │ │ ├── GL_SUN_read_video_pixels │ │ │ │ ├── GL_SUN_slice_accum │ │ │ │ ├── GL_SUN_triangle_list │ │ │ │ ├── GL_SUN_vertex │ │ │ │ ├── GL_WIN_phong_shading │ │ │ │ ├── GL_WIN_specular_fog │ │ │ │ ├── GL_WIN_swap_hint │ │ │ │ ├── WGL_3DFX_multisample │ │ │ │ ├── WGL_3DL_stereo_control │ │ │ │ ├── WGL_AMD_gpu_association │ │ │ │ ├── WGL_ARB_buffer_region │ │ │ │ ├── WGL_ARB_context_flush_control │ │ │ │ ├── WGL_ARB_create_context │ │ │ │ ├── WGL_ARB_create_context_profile │ │ │ │ ├── WGL_ARB_create_context_robustness │ │ │ │ ├── WGL_ARB_extensions_string │ │ │ │ ├── WGL_ARB_framebuffer_sRGB │ │ │ │ ├── WGL_ARB_make_current_read │ │ │ │ ├── WGL_ARB_multisample │ │ │ │ ├── WGL_ARB_pbuffer │ │ │ │ ├── WGL_ARB_pixel_format │ │ │ │ ├── WGL_ARB_pixel_format_float │ │ │ │ ├── WGL_ARB_render_texture │ │ │ │ ├── WGL_ARB_robustness_application_isolation │ │ │ │ ├── WGL_ARB_robustness_share_group_isolation │ │ │ │ ├── WGL_ATI_pixel_format_float │ │ │ │ ├── WGL_ATI_render_texture_rectangle │ │ │ │ ├── WGL_EXT_create_context_es2_profile │ │ │ │ ├── WGL_EXT_create_context_es_profile │ │ │ │ ├── WGL_EXT_depth_float │ │ │ │ ├── WGL_EXT_display_color_table │ │ │ │ ├── WGL_EXT_extensions_string │ │ │ │ ├── WGL_EXT_framebuffer_sRGB │ │ │ │ ├── WGL_EXT_make_current_read │ │ │ │ ├── WGL_EXT_multisample │ │ │ │ ├── WGL_EXT_pbuffer │ │ │ │ ├── WGL_EXT_pixel_format │ │ │ │ ├── WGL_EXT_pixel_format_packed_float │ │ │ │ ├── WGL_EXT_swap_control │ │ │ │ ├── WGL_EXT_swap_control_tear │ │ │ │ ├── WGL_I3D_digital_video_control │ │ │ │ ├── WGL_I3D_gamma │ │ │ │ ├── WGL_I3D_genlock │ │ │ │ ├── WGL_I3D_image_buffer │ │ │ │ ├── WGL_I3D_swap_frame_lock │ │ │ │ ├── WGL_I3D_swap_frame_usage │ │ │ │ ├── WGL_NV_DX_interop │ │ │ │ ├── WGL_NV_DX_interop2 │ │ │ │ ├── WGL_NV_copy_image │ │ │ │ ├── WGL_NV_delay_before_swap │ │ │ │ ├── WGL_NV_float_buffer │ │ │ │ ├── WGL_NV_gpu_affinity │ │ │ │ ├── WGL_NV_multisample_coverage │ │ │ │ ├── WGL_NV_present_video │ │ │ │ ├── WGL_NV_render_depth_texture │ │ │ │ ├── WGL_NV_render_texture_rectangle │ │ │ │ ├── WGL_NV_swap_group │ │ │ │ ├── WGL_NV_vertex_array_range │ │ │ │ ├── WGL_NV_video_capture │ │ │ │ ├── WGL_NV_video_output │ │ │ │ └── WGL_OML_sync_control │ │ ├── lib │ │ │ └── OpenGL │ │ │ │ └── Spec.pm │ │ └── src │ │ │ ├── footer.html │ │ │ ├── glew.rc │ │ │ ├── glew_head.c │ │ │ ├── glew_head.h │ │ │ ├── glew_init_gl.c │ │ │ ├── glew_init_glx.c │ │ │ ├── glew_init_tail.c │ │ │ ├── glew_init_wgl.c │ │ │ ├── glew_license.h │ │ │ ├── glew_str_glx.c │ │ │ ├── glew_str_head.c │ │ │ ├── glew_str_tail.c │ │ │ ├── glew_str_wgl.c │ │ │ ├── glew_tail.h │ │ │ ├── glewinfo.rc │ │ │ ├── glewinfo_gl.c │ │ │ ├── glewinfo_glx.c │ │ │ ├── glewinfo_head.c │ │ │ ├── glewinfo_tail.c │ │ │ ├── glewinfo_wgl.c │ │ │ ├── glxew_head.h │ │ │ ├── glxew_mid.h │ │ │ ├── glxew_tail.h │ │ │ ├── header.html │ │ │ ├── khronos_license.h │ │ │ ├── mesa_license.h │ │ │ ├── visualinfo.rc │ │ │ ├── wglew_head.h │ │ │ ├── wglew_mid.h │ │ │ └── wglew_tail.h │ ├── build │ │ ├── cmake │ │ │ ├── CMakeLists.txt │ │ │ ├── CopyImportedTargetProperties.cmake │ │ │ ├── glew-config.cmake │ │ │ └── testbuild │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.c │ │ ├── glew.rc │ │ ├── glewinfo.rc │ │ ├── vc10 │ │ │ ├── common.props │ │ │ ├── glew.sln │ │ │ ├── glew_shared.vcxproj │ │ │ ├── glew_static.vcxproj │ │ │ ├── glewinfo.vcxproj │ │ │ └── visualinfo.vcxproj │ │ ├── vc12 │ │ │ ├── common.props │ │ │ ├── glew.sln │ │ │ ├── glew_shared.vcxproj │ │ │ ├── glew_static.vcxproj │ │ │ ├── glewinfo.vcxproj │ │ │ └── visualinfo.vcxproj │ │ ├── vc6 │ │ │ ├── Makefile │ │ │ ├── glew.dsw │ │ │ ├── glew_shared.dsp │ │ │ ├── glew_static.dsp │ │ │ ├── glewinfo.dsp │ │ │ └── visualinfo.dsp │ │ └── visualinfo.rc │ ├── config │ │ ├── Makefile.cygming │ │ ├── Makefile.cygwin │ │ ├── Makefile.darwin │ │ ├── Makefile.darwin-ppc │ │ ├── Makefile.darwin-universal │ │ ├── Makefile.darwin-x86_64 │ │ ├── Makefile.fedora-mingw32 │ │ ├── Makefile.freebsd │ │ ├── Makefile.gnu │ │ ├── Makefile.haiku │ │ ├── Makefile.irix │ │ ├── Makefile.kfreebsd │ │ ├── Makefile.linux │ │ ├── Makefile.linux-clang │ │ ├── Makefile.linux-mingw-w64 │ │ ├── Makefile.linux-mingw32 │ │ ├── Makefile.linux-mingw64 │ │ ├── Makefile.mingw │ │ ├── Makefile.nacl-32 │ │ ├── Makefile.nacl-64 │ │ ├── Makefile.netbsd │ │ ├── Makefile.openbsd │ │ ├── Makefile.solaris │ │ ├── Makefile.solaris-gcc │ │ ├── config.guess │ │ └── version │ ├── doc │ │ ├── advanced.html │ │ ├── basic.html │ │ ├── build.html │ │ ├── credits.html │ │ ├── github.png │ │ ├── glew.css │ │ ├── glew.html │ │ ├── glew.png │ │ ├── glew.txt │ │ ├── glxew.html │ │ ├── gpl.txt │ │ ├── index.html │ │ ├── install.html │ │ ├── khronos.txt │ │ ├── log.html │ │ ├── mesa.txt │ │ ├── new.png │ │ ├── ogl_sm.jpg │ │ └── wglew.html │ ├── glew.pc.in │ ├── include │ │ └── GL │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── src │ │ ├── glew.c │ │ ├── glewinfo.c │ │ └── visualinfo.c ├── glfw-3.1.2 │ ├── CMake │ │ ├── MacOSXBundleInfo.plist.in │ │ ├── amd64-mingw32msvc.cmake │ │ ├── i586-mingw32msvc.cmake │ │ ├── i686-pc-mingw32.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindEGL.cmake │ │ │ ├── FindGLESv1.cmake │ │ │ ├── FindGLESv2.cmake │ │ │ ├── FindMir.cmake │ │ │ ├── FindWayland.cmake │ │ │ └── FindXKBCommon.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── README.md │ ├── cmake_uninstall.cmake.in │ ├── deps │ │ ├── EGL │ │ │ └── eglext.h │ │ ├── GL │ │ │ ├── glext.h │ │ │ ├── glxext.h │ │ │ └── wglext.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad.c │ │ ├── glad │ │ │ └── glad.h │ │ ├── linmath.h │ │ ├── tinycthread.c │ │ └── tinycthread.h │ ├── docs │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── DoxygenLayout.xml │ │ ├── build.dox │ │ ├── compat.dox │ │ ├── compile.dox │ │ ├── context.dox │ │ ├── extra.css │ │ ├── extra.less │ │ ├── footer.html │ │ ├── header.html │ │ ├── html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── bug.html │ │ │ ├── build.html │ │ │ ├── build_8dox.html │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── compat.html │ │ │ ├── compat_8dox.html │ │ │ ├── compile.html │ │ │ ├── compile_8dox.html │ │ │ ├── context.html │ │ │ ├── context_8dox.html │ │ │ ├── dir_1f77a3d08e1c0316fce488cb6c92b6b9.html │ │ │ ├── dir_245a62bb4fd08af31b5a80f0986d2d96.html │ │ │ ├── dir_7c13f3ba402334eef4501b19a9dd996c.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── extra.css │ │ │ ├── files.html │ │ │ ├── ftv2blank.png │ │ │ ├── ftv2doc.png │ │ │ ├── ftv2folderclosed.png │ │ │ ├── ftv2folderopen.png │ │ │ ├── ftv2lastnode.png │ │ │ ├── ftv2link.png │ │ │ ├── ftv2mlastnode.png │ │ │ ├── ftv2mnode.png │ │ │ ├── ftv2node.png │ │ │ ├── ftv2plastnode.png │ │ │ ├── ftv2pnode.png │ │ │ ├── ftv2splitbar.png │ │ │ ├── ftv2vertline.png │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── glfw3_8h.html │ │ │ ├── glfw3_8h_source.html │ │ │ ├── glfw3native_8h.html │ │ │ ├── glfw3native_8h_source.html │ │ │ ├── globals.html │ │ │ ├── globals_b.html │ │ │ ├── globals_c.html │ │ │ ├── globals_d.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_defs_b.html │ │ │ ├── globals_defs_c.html │ │ │ ├── globals_defs_d.html │ │ │ ├── globals_defs_f.html │ │ │ ├── globals_defs_g.html │ │ │ ├── globals_defs_h.html │ │ │ ├── globals_defs_i.html │ │ │ ├── globals_defs_j.html │ │ │ ├── globals_defs_k.html │ │ │ ├── globals_defs_l.html │ │ │ ├── globals_defs_m.html │ │ │ ├── globals_defs_n.html │ │ │ ├── globals_defs_o.html │ │ │ ├── globals_defs_p.html │ │ │ ├── globals_defs_r.html │ │ │ ├── globals_defs_s.html │ │ │ ├── globals_defs_v.html │ │ │ ├── globals_e.html │ │ │ ├── globals_f.html │ │ │ ├── globals_func.html │ │ │ ├── globals_g.html │ │ │ ├── globals_h.html │ │ │ ├── globals_i.html │ │ │ ├── globals_j.html │ │ │ ├── globals_k.html │ │ │ ├── globals_l.html │ │ │ ├── globals_m.html │ │ │ ├── globals_n.html │ │ │ ├── globals_o.html │ │ │ ├── globals_p.html │ │ │ ├── globals_r.html │ │ │ ├── globals_s.html │ │ │ ├── globals_t.html │ │ │ ├── globals_type.html │ │ │ ├── globals_v.html │ │ │ ├── globals_w.html │ │ │ ├── group__buttons.html │ │ │ ├── group__context.html │ │ │ ├── group__errors.html │ │ │ ├── group__init.html │ │ │ ├── group__input.html │ │ │ ├── group__joysticks.html │ │ │ ├── group__keys.html │ │ │ ├── group__mods.html │ │ │ ├── group__monitor.html │ │ │ ├── group__native.html │ │ │ ├── group__shapes.html │ │ │ ├── group__window.html │ │ │ ├── index.html │ │ │ ├── input.html │ │ │ ├── input_8dox.html │ │ │ ├── intro.html │ │ │ ├── intro_8dox.html │ │ │ ├── jquery.js │ │ │ ├── main_8dox.html │ │ │ ├── modules.html │ │ │ ├── monitor.html │ │ │ ├── monitor_8dox.html │ │ │ ├── moving.html │ │ │ ├── moving_8dox.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── news.html │ │ │ ├── news_8dox.html │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── quick.html │ │ │ ├── quick_8dox.html │ │ │ ├── rift.html │ │ │ ├── rift_8dox.html │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.html │ │ │ │ ├── all_1.js │ │ │ │ ├── all_2.html │ │ │ │ ├── all_2.js │ │ │ │ ├── all_3.html │ │ │ │ ├── all_3.js │ │ │ │ ├── all_4.html │ │ │ │ ├── all_4.js │ │ │ │ ├── all_5.html │ │ │ │ ├── all_5.js │ │ │ │ ├── all_6.html │ │ │ │ ├── all_6.js │ │ │ │ ├── all_7.html │ │ │ │ ├── all_7.js │ │ │ │ ├── all_8.html │ │ │ │ ├── all_8.js │ │ │ │ ├── all_9.html │ │ │ │ ├── all_9.js │ │ │ │ ├── all_a.html │ │ │ │ ├── all_a.js │ │ │ │ ├── all_b.html │ │ │ │ ├── all_b.js │ │ │ │ ├── all_c.html │ │ │ │ ├── all_c.js │ │ │ │ ├── all_d.html │ │ │ │ ├── all_d.js │ │ │ │ ├── all_e.html │ │ │ │ ├── all_e.js │ │ │ │ ├── all_f.html │ │ │ │ ├── all_f.js │ │ │ │ ├── classes_0.html │ │ │ │ ├── classes_0.js │ │ │ │ ├── close.png │ │ │ │ ├── defines_0.html │ │ │ │ ├── defines_0.js │ │ │ │ ├── files_0.html │ │ │ │ ├── files_0.js │ │ │ │ ├── files_1.html │ │ │ │ ├── files_1.js │ │ │ │ ├── files_2.html │ │ │ │ ├── files_2.js │ │ │ │ ├── files_3.html │ │ │ │ ├── files_3.js │ │ │ │ ├── files_4.html │ │ │ │ ├── files_4.js │ │ │ │ ├── files_5.html │ │ │ │ ├── files_5.js │ │ │ │ ├── files_6.html │ │ │ │ ├── files_6.js │ │ │ │ ├── files_7.html │ │ │ │ ├── files_7.js │ │ │ │ ├── files_8.html │ │ │ │ ├── files_8.js │ │ │ │ ├── functions_0.html │ │ │ │ ├── functions_0.js │ │ │ │ ├── groups_0.html │ │ │ │ ├── groups_0.js │ │ │ │ ├── groups_1.html │ │ │ │ ├── groups_1.js │ │ │ │ ├── groups_2.html │ │ │ │ ├── groups_2.js │ │ │ │ ├── groups_3.html │ │ │ │ ├── groups_3.js │ │ │ │ ├── groups_4.html │ │ │ │ ├── groups_4.js │ │ │ │ ├── groups_5.html │ │ │ │ ├── groups_5.js │ │ │ │ ├── groups_6.html │ │ │ │ ├── groups_6.js │ │ │ │ ├── groups_7.html │ │ │ │ ├── groups_7.js │ │ │ │ ├── groups_8.html │ │ │ │ ├── groups_8.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_0.html │ │ │ │ ├── pages_0.js │ │ │ │ ├── pages_1.html │ │ │ │ ├── pages_1.js │ │ │ │ ├── pages_2.html │ │ │ │ ├── pages_2.js │ │ │ │ ├── pages_3.html │ │ │ │ ├── pages_3.js │ │ │ │ ├── pages_4.html │ │ │ │ ├── pages_4.js │ │ │ │ ├── pages_5.html │ │ │ │ ├── pages_5.js │ │ │ │ ├── pages_6.html │ │ │ │ ├── pages_6.js │ │ │ │ ├── pages_7.html │ │ │ │ ├── pages_7.js │ │ │ │ ├── pages_8.html │ │ │ │ ├── pages_8.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── typedefs_0.html │ │ │ │ ├── typedefs_0.js │ │ │ │ ├── variables_0.html │ │ │ │ ├── variables_0.js │ │ │ │ ├── variables_1.html │ │ │ │ ├── variables_1.js │ │ │ │ ├── variables_2.html │ │ │ │ ├── variables_2.js │ │ │ │ ├── variables_3.html │ │ │ │ ├── variables_3.js │ │ │ │ ├── variables_4.html │ │ │ │ ├── variables_4.js │ │ │ │ ├── variables_5.html │ │ │ │ ├── variables_5.js │ │ │ │ ├── variables_6.html │ │ │ │ └── variables_6.js │ │ │ ├── spaces.svg │ │ │ ├── structGLFWgammaramp.html │ │ │ ├── structGLFWimage.html │ │ │ ├── structGLFWvidmode.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ ├── tabs.css │ │ │ ├── window.html │ │ │ └── window_8dox.html │ │ ├── input.dox │ │ ├── internal.dox │ │ ├── intro.dox │ │ ├── main.dox │ │ ├── monitor.dox │ │ ├── moving.dox │ │ ├── news.dox │ │ ├── quick.dox │ │ ├── rift.dox │ │ ├── spaces.svg │ │ └── window.dox │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── boing.c │ │ ├── gears.c │ │ ├── heightmap.c │ │ ├── particles.c │ │ ├── simple.c │ │ ├── splitview.c │ │ └── wave.c │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_context.h │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── glfw_config.h.in │ │ ├── glx_context.c │ │ ├── glx_context.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── iokit_joystick.h │ │ ├── iokit_joystick.m │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mach_time.c │ │ ├── mir_init.c │ │ ├── mir_monitor.c │ │ ├── mir_platform.h │ │ ├── mir_window.c │ │ ├── monitor.c │ │ ├── nsgl_context.h │ │ ├── nsgl_context.m │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── posix_tls.c │ │ ├── posix_tls.h │ │ ├── wgl_context.c │ │ ├── wgl_context.h │ │ ├── win32_init.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_time.c │ │ ├── win32_tls.c │ │ ├── win32_tls.h │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── winmm_joystick.c │ │ ├── winmm_joystick.h │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── clipboard.c │ │ ├── cursor.c │ │ ├── empty.c │ │ ├── events.c │ │ ├── gamma.c │ │ ├── glfwinfo.c │ │ ├── iconify.c │ │ ├── joysticks.c │ │ ├── monitors.c │ │ ├── msaa.c │ │ ├── reopen.c │ │ ├── sharing.c │ │ ├── tearing.c │ │ ├── threads.c │ │ ├── title.c │ │ └── windows.c ├── glm-0.9.7.1 │ ├── .gitignore │ ├── CMakeLists.txt │ ├── cmake │ │ ├── glmBuildConfig.cmake.in │ │ └── glmConfig.cmake.in │ ├── copying.txt │ ├── doc │ │ ├── api │ │ │ ├── a00001.html │ │ │ ├── a00001_source.html │ │ │ ├── a00002.html │ │ │ ├── a00002_source.html │ │ │ ├── a00003.html │ │ │ ├── a00003_source.html │ │ │ ├── a00004.html │ │ │ ├── a00004_source.html │ │ │ ├── a00005.html │ │ │ ├── a00005_source.html │ │ │ ├── a00006.html │ │ │ ├── a00006_source.html │ │ │ ├── a00007.html │ │ │ ├── a00007_source.html │ │ │ ├── a00008.html │ │ │ ├── a00008_source.html │ │ │ ├── a00009.html │ │ │ ├── a00009_source.html │ │ │ ├── a00010.html │ │ │ ├── a00010_source.html │ │ │ ├── a00011.html │ │ │ ├── a00011_source.html │ │ │ ├── a00012.html │ │ │ ├── a00012_source.html │ │ │ ├── a00013.html │ │ │ ├── a00013_source.html │ │ │ ├── a00014.html │ │ │ ├── a00014_source.html │ │ │ ├── a00015.html │ │ │ ├── a00015_source.html │ │ │ ├── a00016.html │ │ │ ├── a00016_source.html │ │ │ ├── a00017.html │ │ │ ├── a00017_source.html │ │ │ ├── a00018.html │ │ │ ├── a00018_source.html │ │ │ ├── a00019.html │ │ │ ├── a00019_source.html │ │ │ ├── a00020.html │ │ │ ├── a00020_source.html │ │ │ ├── a00021.html │ │ │ ├── a00021_source.html │ │ │ ├── a00022.html │ │ │ ├── a00022_source.html │ │ │ ├── a00023_source.html │ │ │ ├── a00024.html │ │ │ ├── a00024_source.html │ │ │ ├── a00025.html │ │ │ ├── a00025_source.html │ │ │ ├── a00026.html │ │ │ ├── a00026_source.html │ │ │ ├── a00027.html │ │ │ ├── a00027_source.html │ │ │ ├── a00028.html │ │ │ ├── a00028_source.html │ │ │ ├── a00029.html │ │ │ ├── a00029_source.html │ │ │ ├── a00030.html │ │ │ ├── a00030_source.html │ │ │ ├── a00031.html │ │ │ ├── a00031_source.html │ │ │ ├── a00032.html │ │ │ ├── a00032_source.html │ │ │ ├── a00033.html │ │ │ ├── a00033_source.html │ │ │ ├── a00034.html │ │ │ ├── a00034_source.html │ │ │ ├── a00035.html │ │ │ ├── a00035_source.html │ │ │ ├── a00036.html │ │ │ ├── a00036_source.html │ │ │ ├── a00037.html │ │ │ ├── a00037_source.html │ │ │ ├── a00038.html │ │ │ ├── a00038_source.html │ │ │ ├── a00039.html │ │ │ ├── a00039_source.html │ │ │ ├── a00040.html │ │ │ ├── a00040_source.html │ │ │ ├── a00041.html │ │ │ ├── a00041_source.html │ │ │ ├── a00042.html │ │ │ ├── a00042_source.html │ │ │ ├── a00043.html │ │ │ ├── a00043_source.html │ │ │ ├── a00044.html │ │ │ ├── a00044_source.html │ │ │ ├── a00045.html │ │ │ ├── a00045_source.html │ │ │ ├── a00046.html │ │ │ ├── a00046_source.html │ │ │ ├── a00047.html │ │ │ ├── a00047_source.html │ │ │ ├── a00048.html │ │ │ ├── a00048_source.html │ │ │ ├── a00049.html │ │ │ ├── a00049_source.html │ │ │ ├── a00050.html │ │ │ ├── a00050_source.html │ │ │ ├── a00051.html │ │ │ ├── a00051_source.html │ │ │ ├── a00052_source.html │ │ │ ├── a00053.html │ │ │ ├── a00053_source.html │ │ │ ├── a00054.html │ │ │ ├── a00054_source.html │ │ │ ├── a00055.html │ │ │ ├── a00055_source.html │ │ │ ├── a00056.html │ │ │ ├── a00056_source.html │ │ │ ├── a00057_source.html │ │ │ ├── a00058.html │ │ │ ├── a00058_source.html │ │ │ ├── a00059.html │ │ │ ├── a00059_source.html │ │ │ ├── a00060.html │ │ │ ├── a00060_source.html │ │ │ ├── a00061.html │ │ │ ├── a00061_source.html │ │ │ ├── a00062.html │ │ │ ├── a00062_source.html │ │ │ ├── a00063.html │ │ │ ├── a00063_source.html │ │ │ ├── a00064.html │ │ │ ├── a00064_source.html │ │ │ ├── a00065_source.html │ │ │ ├── a00066.html │ │ │ ├── a00066_source.html │ │ │ ├── a00067.html │ │ │ ├── a00067_source.html │ │ │ ├── a00068.html │ │ │ ├── a00068_source.html │ │ │ ├── a00069.html │ │ │ ├── a00069_source.html │ │ │ ├── a00070.html │ │ │ ├── a00070_source.html │ │ │ ├── a00071.html │ │ │ ├── a00071_source.html │ │ │ ├── a00072.html │ │ │ ├── a00072_source.html │ │ │ ├── a00073.html │ │ │ ├── a00073_source.html │ │ │ ├── a00074.html │ │ │ ├── a00074_source.html │ │ │ ├── a00075.html │ │ │ ├── a00075_source.html │ │ │ ├── a00076.html │ │ │ ├── a00076_source.html │ │ │ ├── a00077.html │ │ │ ├── a00077_source.html │ │ │ ├── a00078.html │ │ │ ├── a00078_source.html │ │ │ ├── a00079.html │ │ │ ├── a00079_source.html │ │ │ ├── a00080.html │ │ │ ├── a00080_source.html │ │ │ ├── a00081.html │ │ │ ├── a00081_source.html │ │ │ ├── a00082.html │ │ │ ├── a00082_source.html │ │ │ ├── a00083.html │ │ │ ├── a00083_source.html │ │ │ ├── a00084.html │ │ │ ├── a00084_source.html │ │ │ ├── a00085.html │ │ │ ├── a00085_source.html │ │ │ ├── a00086.html │ │ │ ├── a00086_source.html │ │ │ ├── a00087.html │ │ │ ├── a00087_source.html │ │ │ ├── a00088.html │ │ │ ├── a00088_source.html │ │ │ ├── a00089_source.html │ │ │ ├── a00090.html │ │ │ ├── a00090_source.html │ │ │ ├── a00091.html │ │ │ ├── a00091_source.html │ │ │ ├── a00092.html │ │ │ ├── a00092_source.html │ │ │ ├── a00093.html │ │ │ ├── a00093_source.html │ │ │ ├── a00094.html │ │ │ ├── a00094_source.html │ │ │ ├── a00095.html │ │ │ ├── a00095_source.html │ │ │ ├── a00096.html │ │ │ ├── a00096_source.html │ │ │ ├── a00097.html │ │ │ ├── a00097_source.html │ │ │ ├── a00098.html │ │ │ ├── a00098_source.html │ │ │ ├── a00099.html │ │ │ ├── a00099_source.html │ │ │ ├── a00100.html │ │ │ ├── a00100_source.html │ │ │ ├── a00101.html │ │ │ ├── a00101_source.html │ │ │ ├── a00102.html │ │ │ ├── a00102_source.html │ │ │ ├── a00103.html │ │ │ ├── a00103_source.html │ │ │ ├── a00104.html │ │ │ ├── a00104_source.html │ │ │ ├── a00105.html │ │ │ ├── a00105_source.html │ │ │ ├── a00106.html │ │ │ ├── a00106_source.html │ │ │ ├── a00107.html │ │ │ ├── a00107_source.html │ │ │ ├── a00108.html │ │ │ ├── a00108_source.html │ │ │ ├── a00109.html │ │ │ ├── a00109_source.html │ │ │ ├── a00110.html │ │ │ ├── a00110_source.html │ │ │ ├── a00111.html │ │ │ ├── a00111_source.html │ │ │ ├── a00112.html │ │ │ ├── a00112_source.html │ │ │ ├── a00113.html │ │ │ ├── a00113_source.html │ │ │ ├── a00114.html │ │ │ ├── a00114_source.html │ │ │ ├── a00115.html │ │ │ ├── a00115_source.html │ │ │ ├── a00116.html │ │ │ ├── a00116_source.html │ │ │ ├── a00117.html │ │ │ ├── a00117_source.html │ │ │ ├── a00118.html │ │ │ ├── a00118_source.html │ │ │ ├── a00119.html │ │ │ ├── a00119_source.html │ │ │ ├── a00120.html │ │ │ ├── a00120_source.html │ │ │ ├── a00121.html │ │ │ ├── a00121_source.html │ │ │ ├── a00122.html │ │ │ ├── a00122_source.html │ │ │ ├── a00123.html │ │ │ ├── a00123_source.html │ │ │ ├── a00124.html │ │ │ ├── a00124_source.html │ │ │ ├── a00125.html │ │ │ ├── a00125_source.html │ │ │ ├── a00126.html │ │ │ ├── a00126_source.html │ │ │ ├── a00127.html │ │ │ ├── a00127_source.html │ │ │ ├── a00128.html │ │ │ ├── a00128_source.html │ │ │ ├── a00129.html │ │ │ ├── a00129_source.html │ │ │ ├── a00130.html │ │ │ ├── a00130_source.html │ │ │ ├── a00131.html │ │ │ ├── a00131_source.html │ │ │ ├── a00132.html │ │ │ ├── a00132_source.html │ │ │ ├── a00133.html │ │ │ ├── a00133_source.html │ │ │ ├── a00134.html │ │ │ ├── a00134_source.html │ │ │ ├── a00135.html │ │ │ ├── a00135_source.html │ │ │ ├── a00136.html │ │ │ ├── a00136_source.html │ │ │ ├── a00137.html │ │ │ ├── a00137_source.html │ │ │ ├── a00138.html │ │ │ ├── a00138_source.html │ │ │ ├── a00139.html │ │ │ ├── a00139_source.html │ │ │ ├── a00140.html │ │ │ ├── a00140_source.html │ │ │ ├── a00141.html │ │ │ ├── a00141_source.html │ │ │ ├── a00142.html │ │ │ ├── a00142_source.html │ │ │ ├── a00143.html │ │ │ ├── a00143_source.html │ │ │ ├── a00144.html │ │ │ ├── a00144_source.html │ │ │ ├── a00145.html │ │ │ ├── a00145_source.html │ │ │ ├── a00151.html │ │ │ ├── a00152.html │ │ │ ├── a00153.html │ │ │ ├── a00154.html │ │ │ ├── a00155.html │ │ │ ├── a00156.html │ │ │ ├── a00157.html │ │ │ ├── a00158.html │ │ │ ├── a00159.html │ │ │ ├── a00160.html │ │ │ ├── a00161.html │ │ │ ├── a00162.html │ │ │ ├── a00163.html │ │ │ ├── a00164.html │ │ │ ├── a00165.html │ │ │ ├── a00166.html │ │ │ ├── a00167.html │ │ │ ├── a00168.html │ │ │ ├── a00169.html │ │ │ ├── a00170.html │ │ │ ├── a00171.html │ │ │ ├── a00172.html │ │ │ ├── a00173.html │ │ │ ├── a00174.html │ │ │ ├── a00175.html │ │ │ ├── a00176.html │ │ │ ├── a00177.html │ │ │ ├── a00178.html │ │ │ ├── a00179.html │ │ │ ├── a00180.html │ │ │ ├── a00181.html │ │ │ ├── a00182.html │ │ │ ├── a00183.html │ │ │ ├── a00184.html │ │ │ ├── a00185.html │ │ │ ├── a00186.html │ │ │ ├── a00187.html │ │ │ ├── a00188.html │ │ │ ├── a00189.html │ │ │ ├── a00190.html │ │ │ ├── a00191.html │ │ │ ├── a00192.html │ │ │ ├── a00193.html │ │ │ ├── a00194.html │ │ │ ├── a00195.html │ │ │ ├── a00196.html │ │ │ ├── a00197.html │ │ │ ├── a00198.html │ │ │ ├── a00199.html │ │ │ ├── a00200.html │ │ │ ├── a00201.html │ │ │ ├── a00202.html │ │ │ ├── a00203.html │ │ │ ├── a00204.html │ │ │ ├── a00205.html │ │ │ ├── a00206.html │ │ │ ├── a00207.html │ │ │ ├── a00208.html │ │ │ ├── a00209.html │ │ │ ├── a00210.html │ │ │ ├── a00211.html │ │ │ ├── a00212.html │ │ │ ├── a00213.html │ │ │ ├── a00214.html │ │ │ ├── a00215.html │ │ │ ├── a00216.html │ │ │ ├── a00217.html │ │ │ ├── a00218.html │ │ │ ├── a00219.html │ │ │ ├── a00220.html │ │ │ ├── a00221.html │ │ │ ├── a00222.html │ │ │ ├── a00223.html │ │ │ ├── a00224.html │ │ │ ├── a00225.html │ │ │ ├── a00226.html │ │ │ ├── a00227.html │ │ │ ├── a00228.html │ │ │ ├── a00229.html │ │ │ ├── a00230.html │ │ │ ├── a00231.html │ │ │ ├── a00232.html │ │ │ ├── a00233.html │ │ │ ├── a00234.html │ │ │ ├── a00235.html │ │ │ ├── a00236.html │ │ │ ├── a00237.html │ │ │ ├── a00238.html │ │ │ ├── a00239.html │ │ │ ├── a00240.html │ │ │ ├── a00241.html │ │ │ ├── arrowdown.png │ │ │ ├── arrowright.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── dir_1f76e953200861345293ade84ac7fb6c.html │ │ │ ├── dir_275089585c7fc1b5fd5d7d42c69cb1da.html │ │ │ ├── dir_577c788b67d63fb3b3b5752bd495d0f2.html │ │ │ ├── dir_5ce58d942b2d0776e17a9a58abc01e04.html │ │ │ ├── dir_7b98f88bffbed4b390b5f8f520d9c08e.html │ │ │ ├── dir_8d176b5b7dd0ae42ea6876078f2bde49.html │ │ │ ├── dir_9440d7c11b99dcd7e5d369c7cf9802fe.html │ │ │ ├── dir_e29b03b892e0e25920d021a614d4db9b.html │ │ │ ├── dir_e529a619cfdec1fa4c331fb042fd332f.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── logo.png │ │ │ ├── modules.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ │ ├── glm.docx │ │ ├── glm.pdf │ │ ├── logo.png │ │ ├── man.doxy │ │ ├── pages.doxy │ │ └── theme │ │ │ ├── doxygen.css │ │ │ └── tabs.css │ ├── 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_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 │ │ │ ├── color_space.hpp │ │ │ ├── color_space.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 │ │ │ ├── hash.hpp │ │ │ ├── hash.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 │ │ │ ├── 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 │ ├── readme.md │ ├── test │ │ ├── CMakeLists.txt │ │ ├── bug │ │ │ └── CMakeLists.txt │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── core_func_common.cpp │ │ │ ├── core_func_exponential.cpp │ │ │ ├── core_func_geometric.cpp │ │ │ ├── core_func_integer.cpp │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ ├── core_func_matrix.cpp │ │ │ ├── core_func_noise.cpp │ │ │ ├── core_func_packing.cpp │ │ │ ├── core_func_swizzle.cpp │ │ │ ├── core_func_trigonometric.cpp │ │ │ ├── core_func_vector_relational.cpp │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ ├── core_setup_message.cpp │ │ │ ├── core_setup_precision.cpp │ │ │ ├── core_type_cast.cpp │ │ │ ├── core_type_ctor.cpp │ │ │ ├── core_type_float.cpp │ │ │ ├── core_type_int.cpp │ │ │ ├── core_type_length.cpp │ │ │ ├── core_type_length_size.cpp │ │ │ ├── core_type_mat2x2.cpp │ │ │ ├── core_type_mat2x3.cpp │ │ │ ├── core_type_mat2x4.cpp │ │ │ ├── core_type_mat3x2.cpp │ │ │ ├── core_type_mat3x3.cpp │ │ │ ├── core_type_mat3x4.cpp │ │ │ ├── core_type_mat4x2.cpp │ │ │ ├── core_type_mat4x3.cpp │ │ │ ├── core_type_mat4x4.cpp │ │ │ ├── core_type_vec1.cpp │ │ │ ├── core_type_vec2.cpp │ │ │ ├── core_type_vec3.cpp │ │ │ └── core_type_vec4.cpp │ │ ├── external │ │ │ └── gli │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── core │ │ │ │ ├── dummy.cpp │ │ │ │ ├── generate_mipmaps.hpp │ │ │ │ ├── generate_mipmaps.inl │ │ │ │ ├── image2d.hpp │ │ │ │ ├── image2d.inl │ │ │ │ ├── operation.hpp │ │ │ │ ├── operation.inl │ │ │ │ ├── operator.hpp │ │ │ │ ├── operator.inl │ │ │ │ ├── shared_array.hpp │ │ │ │ ├── shared_array.inl │ │ │ │ ├── shared_ptr.hpp │ │ │ │ ├── shared_ptr.inl │ │ │ │ ├── size.hpp │ │ │ │ ├── size.inl │ │ │ │ ├── texture2d.hpp │ │ │ │ ├── texture2d.inl │ │ │ │ ├── texture2d_array.hpp │ │ │ │ ├── texture2d_array.inl │ │ │ │ ├── texture_cube.hpp │ │ │ │ ├── texture_cube.inl │ │ │ │ ├── texture_cube_array.hpp │ │ │ │ └── texture_cube_array.inl │ │ │ │ ├── gli.hpp │ │ │ │ └── gtx │ │ │ │ ├── compression.hpp │ │ │ │ ├── compression.inl │ │ │ │ ├── fetch.hpp │ │ │ │ ├── fetch.inl │ │ │ │ ├── gl_texture2d.hpp │ │ │ │ ├── gl_texture2d.inl │ │ │ │ ├── gradient.hpp │ │ │ │ ├── gradient.inl │ │ │ │ ├── loader.hpp │ │ │ │ ├── loader.inl │ │ │ │ ├── loader_dds10.hpp │ │ │ │ ├── loader_dds10.inl │ │ │ │ ├── loader_dds9.hpp │ │ │ │ ├── loader_dds9.inl │ │ │ │ ├── loader_tga.hpp │ │ │ │ ├── loader_tga.inl │ │ │ │ ├── wavelet.hpp │ │ │ │ └── wavelet.inl │ │ ├── glm.cppcheck │ │ ├── gtc │ │ │ ├── CMakeLists.txt │ │ │ ├── gtc_bitfield.cpp │ │ │ ├── gtc_color_space.cpp │ │ │ ├── gtc_constants.cpp │ │ │ ├── gtc_epsilon.cpp │ │ │ ├── gtc_integer.cpp │ │ │ ├── gtc_matrix_access.cpp │ │ │ ├── gtc_matrix_integer.cpp │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ ├── gtc_matrix_transform.cpp │ │ │ ├── gtc_noise.cpp │ │ │ ├── gtc_packing.cpp │ │ │ ├── gtc_quaternion.cpp │ │ │ ├── gtc_random.cpp │ │ │ ├── gtc_reciprocal.cpp │ │ │ ├── gtc_round.cpp │ │ │ ├── gtc_type_precision.cpp │ │ │ ├── gtc_type_ptr.cpp │ │ │ ├── gtc_ulp.cpp │ │ │ ├── gtc_user_defined_types.cpp │ │ │ └── gtc_vec1.cpp │ │ └── gtx │ │ │ ├── CMakeLists.txt │ │ │ ├── gtx_associated_min_max.cpp │ │ │ ├── gtx_closest_point.cpp │ │ │ ├── gtx_color_space.cpp │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ ├── gtx_common.cpp │ │ │ ├── gtx_compatibility.cpp │ │ │ ├── gtx_component_wise.cpp │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ ├── gtx_euler_angle.cpp │ │ │ ├── gtx_extend.cpp │ │ │ ├── gtx_extented_min_max.cpp │ │ │ ├── gtx_fast_exponential.cpp │ │ │ ├── gtx_fast_square_root.cpp │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ ├── gtx_gradient_paint.cpp │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ ├── gtx_integer.cpp │ │ │ ├── gtx_intersect.cpp │ │ │ ├── gtx_io.cpp │ │ │ ├── gtx_log_base.cpp │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ ├── gtx_matrix_operation.cpp │ │ │ ├── gtx_matrix_query.cpp │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ ├── gtx_mixed_product.cpp │ │ │ ├── gtx_norm.cpp │ │ │ ├── gtx_normal.cpp │ │ │ ├── gtx_normalize_dot.cpp │ │ │ ├── gtx_number_precision.cpp │ │ │ ├── gtx_optimum_pow.cpp │ │ │ ├── gtx_orthonormalize.cpp │ │ │ ├── gtx_perpendicular.cpp │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ ├── gtx_projection.cpp │ │ │ ├── gtx_quaternion.cpp │ │ │ ├── gtx_random.cpp │ │ │ ├── gtx_range.cpp │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ ├── gtx_rotate_vector.cpp │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ ├── gtx_scalar_relational.cpp │ │ │ ├── gtx_simd_mat4.cpp │ │ │ ├── gtx_simd_vec4.cpp │ │ │ ├── gtx_spline.cpp │ │ │ ├── gtx_string_cast.cpp │ │ │ ├── gtx_type_aligned.cpp │ │ │ ├── gtx_vector_angle.cpp │ │ │ ├── gtx_vector_query.cpp │ │ │ └── gtx_wrap.cpp │ └── util │ │ ├── autoexp.txt │ │ ├── autoexp.vc2010.dat │ │ ├── glm.natvis │ │ └── usertype.dat └── rpavlik-cmake-modules-fe2273 │ ├── .gitattributes │ ├── AboutTheseModules.cmake │ ├── BoostTestTargets.cmake │ ├── BoostTestTargetsDynamic.h │ ├── BoostTestTargetsIncluded.h │ ├── BoostTestTargetsStatic.h │ ├── BundleOSGPlugins.cmake │ ├── BundleOSGRuntime.cmake │ ├── BundleVRJ22Runtime.cmake │ ├── BundleVRJ30Runtime.cmake │ ├── CheckMacHIDAPI.cmake │ ├── CheckMacHIDAPI.cpp │ ├── CheckVersion.cmake │ ├── CleanDirectoryList.cmake │ ├── CleanLibraryList.cmake │ ├── CompatibilityVersionFile-BASIC.cmake.in │ ├── CompatibilityVersionFile-CXX_ABI.cmake.in │ ├── CompatibilityVersionFile-CXX_LAYOUT.cmake.in │ ├── CompatibilityVersionFile-C_ABI.cmake.in │ ├── CopyImportedTarget.cmake │ ├── CopyResourcesToBuildTree.cmake │ ├── CppcheckTargets.cmake │ ├── CreateDashboardScripts.cmake │ ├── CreateImportedTarget.cmake │ ├── CreateLaunchers.cmake │ ├── DashboardScript.cmake.in │ ├── DoxygenTargets.cmake │ ├── DoxygenTargets.doxyfile.in │ ├── EnableExtraCompilerWarnings.cmake │ ├── EnableProfiling.cmake │ ├── FileCopyTargets.cmake │ ├── FindALUT.cmake │ ├── FindAdrienne.cmake │ ├── FindBluez.cmake │ ├── FindCPPDOM.cmake │ ├── FindDCubed.cmake │ ├── FindDirectShow.cmake │ ├── FindDirectX.cmake │ ├── FindFlagpoll.cmake │ ├── FindGDB.cmake │ ├── FindGHOST.cmake │ ├── FindGLUI.cmake │ ├── FindGLUT.cmake │ ├── FindGMTL.cmake │ ├── FindGPM.cmake │ ├── FindGadgeteer12.cmake │ ├── FindGadgeteer20.cmake │ ├── FindGlove5DT.cmake │ ├── FindHIDAPI.cmake │ ├── FindIDLJ.cmake │ ├── FindInterSense.cmake │ ├── FindJCCL12.cmake │ ├── FindJCCL14.cmake │ ├── FindJtTk.cmake │ ├── FindJtTk.stampkey.cmake.in │ ├── FindLAPACKLibs.cmake │ ├── FindLibFreespace.cmake │ ├── FindLibusb1.cmake │ ├── FindLuabind.cmake │ ├── FindLyX.cmake │ ├── FindMacHID.cmake │ ├── FindMarkdown.cmake │ ├── FindOVR.cmake │ ├── FindOpenCV1.cmake │ ├── FindOpenHaptics.cmake │ ├── FindParasolid.cmake │ ├── FindPerformer.cmake │ ├── FindPerlModules.cmake │ ├── FindQVRPN.cmake │ ├── FindSDL2.cmake │ ├── FindSonix12.cmake │ ├── FindSonix14.cmake │ ├── FindTR1.cmake │ ├── FindTooN.cmake │ ├── FindTooNtag.cmake │ ├── FindTweek12.cmake │ ├── FindTweek14.cmake │ ├── FindVPR20.cmake │ ├── FindVPR22.cmake │ ├── FindVPS.cmake │ ├── FindVRJ22.cmake │ ├── FindVRJ30.cmake │ ├── FindVRJOGL22.cmake │ ├── FindVRJOGL30.cmake │ ├── FindVRJuggler.cmake │ ├── FindVRJuggler22.cmake │ ├── FindVRJuggler30.cmake │ ├── FindVRPN.cmake │ ├── FindViewPoint.cmake │ ├── FindVirtuoseAPI.cmake │ ├── FindVirtuoseVPP.cmake │ ├── FindWayland.cmake │ ├── FindWiiSCAAT.cmake │ ├── FindWiiUse.cmake │ ├── FindWinHID.cmake │ ├── FindWindowsSDK.cmake │ ├── FindXrandr.cmake │ ├── Findargp.cmake │ ├── Findcppcheck.cmake │ ├── Findcppcheck.cpp │ ├── Findcppunit.cmake │ ├── Findcutil.cmake │ ├── Finddb2pdf.cmake │ ├── FindosgLua.cmake │ ├── Findquatlib.cmake │ ├── Findudev.cmake │ ├── GenerateCompatibilityVersionFile.cmake │ ├── GetCPUDetails.cmake │ ├── GetCompilerInfoString.cmake │ ├── GetDefineString.cmake │ ├── GetDefineString.cpp.in │ ├── GetDirectoryList.cmake │ ├── GetFileList.cmake │ ├── GetForceIncludeDefinitions.cmake │ ├── GetGitRevisionDescription.cmake │ ├── GetGitRevisionDescription.cmake.in │ ├── GetMSVCVersion.cmake │ ├── GetSubprojectStatus.cmake │ ├── LICENSE_1_0.txt │ ├── Licensing.cmake │ ├── ListCombinations.cmake │ ├── ListFilter.cmake │ ├── LuaTargets.cmake │ ├── MSVCMultipleProcessCompile.cmake │ ├── MSVCStaticRuntime.cmake │ ├── MSVCVerboseLinking.cmake │ ├── MapImportedReleaseVariants.cmake │ ├── OptionRequires.cmake │ ├── PlatformDefinitions.cmake │ ├── PrefixListGlob.cmake │ ├── ProgramFilesGlob.cmake │ ├── README.markdown │ ├── ResetConfigurations.cmake │ ├── SearchProgramFilesForOpenSceneGraph.cmake │ ├── SetDefaultBuildType.cmake │ ├── SplitLibraryList.cmake │ ├── StampSourcesWithVersion.cmake │ ├── StampSourcesWithVersion.sed.in │ ├── TCHARWorkaround.cmake │ ├── UseBackportedModules.cmake │ ├── UseFolders.cmake │ ├── UseMarkdown.cmake │ ├── UseTR1.cmake │ ├── WarningDev.cmake │ ├── cmake-2.8.0-modules │ ├── features │ │ └── SelectLibraryConfigurations.cmake │ └── osg │ │ ├── FindOpenSceneGraph.cmake │ │ ├── FindOpenThreads.cmake │ │ ├── Findosg.cmake │ │ ├── FindosgAnimation.cmake │ │ ├── FindosgDB.cmake │ │ ├── FindosgFX.cmake │ │ ├── FindosgGA.cmake │ │ ├── FindosgIntrospection.cmake │ │ ├── FindosgManipulator.cmake │ │ ├── FindosgParticle.cmake │ │ ├── FindosgProducer.cmake │ │ ├── FindosgShadow.cmake │ │ ├── FindosgSim.cmake │ │ ├── FindosgTerrain.cmake │ │ ├── FindosgText.cmake │ │ ├── FindosgUtil.cmake │ │ ├── FindosgViewer.cmake │ │ ├── FindosgVolume.cmake │ │ ├── FindosgWidget.cmake │ │ └── Findosg_functions.cmake │ ├── cmake-2.8.1-modules │ └── patchctestbug10149 │ │ ├── CTest.cmake │ │ ├── CTestScriptMode.cmake │ │ └── CTestTargets.cmake │ ├── cmake-2.8.12-modules │ ├── CMakePackageConfigHelpers.cmake │ └── CMakeParseArguments.cmake │ ├── cmake-2.8.3-modules │ ├── FixWinInstallPrefix.cmake │ └── autoinclude.cmake │ ├── cmake-2.8.4-modules │ ├── ImproveEclipseGCCErrors.cmake │ ├── autoinclude.cmake │ └── boost │ │ └── FindBoost.cmake │ ├── cmake-3.2.0-modules │ └── FindGit.cmake │ ├── cmake-4.0.0-modules │ ├── RequireOutOfSourceBuild.cmake │ ├── autoinclude.cmake │ └── from-ITK-3.18.0 │ │ └── FindFFTW.cmake │ ├── export-to-directory.sh │ ├── ghost-fake-stl │ ├── alloc.h │ ├── hash_map.h │ ├── iostream.h │ ├── list.h │ ├── pair.h │ ├── set.h │ └── vector.h │ ├── launcher-templates │ ├── genericlauncher.cmd.in │ ├── genericlauncher.sh.in │ ├── launcher.env.cmd.in │ ├── launcher.env.sh.in │ ├── perconfig.vcproj.user.in │ ├── perconfig.vcxproj.user.in │ ├── targetlauncher.cmd.in │ ├── targetlauncher.sh.in │ ├── vcproj.user.in │ └── vcxproj.user.in │ ├── module-docs │ ├── AllModuleDependencies.dot │ ├── AllModuleDependencies.jpg │ ├── AllModuleDependencies.pdf │ ├── AllModuleDependencies.png │ ├── Example-FindMyPackage-UsingImportedTargets.cmake │ ├── Example-FindMyPackage.cmake │ └── Example-FindMySimplePackage.cmake │ ├── module-help.html │ ├── module-help.txt │ ├── nested_targets │ ├── DCubed │ │ ├── CMakeLists.txt │ │ ├── d3ew_p │ │ │ └── CMakeLists.txt │ │ └── d3ew_scene │ │ │ └── CMakeLists.txt │ ├── OpenHaptics │ │ └── CMakeLists.txt │ ├── Parasolid │ │ └── CMakeLists.txt │ └── cutil │ │ └── CMakeLists.txt │ ├── package-licensing │ ├── Boost.cmake │ ├── Eigen.cmake │ ├── FLTK.cmake │ ├── Lua.cmake │ ├── LuaBind.cmake │ ├── OpenHapticsAcademicEdition.cmake │ ├── OpenSceneGraph.cmake │ ├── PhysicalModelingUtils.cmake │ ├── Qt-LGPL.cmake │ ├── VPS.cmake │ ├── VRJuggLua.cmake │ ├── VRJuggler.cmake │ ├── VirtuoseAPI.cmake │ └── osgLua.cmake │ ├── package │ ├── fixupbundle.cmake.in │ └── macosx │ │ ├── VRJuggler22BundleInfo.plist.in │ │ └── VRJuggler30BundleInfo.plist.in │ ├── update-help.sh │ └── workarounds │ ├── mac-alut-framework │ └── AL │ │ └── alut.h │ ├── mac-gl │ └── GL │ │ ├── gl.h │ │ ├── glui.h │ │ └── glut.h │ ├── mac-openal │ └── AL │ │ ├── al.h │ │ └── alc.h │ └── tchar │ └── tchar.h └── license.txt /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.dll 2 | **/*.exe 3 | build/* 4 | bin-*/* 5 | distrib/build_*/* 6 | **.bak 7 | **.orig 8 | screenshot.bmp 9 | *.pyc 10 | Thumbs.db 11 | OpenGL-tutorial_v* 12 | **.mtl 13 | .DS_Store 14 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | 3 | *.dll 4 | *.exe 5 | build/* 6 | bin-*/* 7 | distrib/build_*/* 8 | *.bak 9 | *.orig 10 | screenshot.bmp 11 | *.pyc 12 | Thumbs.db 13 | glob:OpenGL-tutorial_v* 14 | relre:.*\.blend.+ 15 | glob:*.mtl 16 | -------------------------------------------------------------------------------- /BUILDING.txt: -------------------------------------------------------------------------------- 1 | Please READ Tutorial 1 and don't build the tutorials yourself ! Use CMake instead. If you have a problem, read the FAQ. -------------------------------------------------------------------------------- /FPSGame/Shaders/SunFragmentShader.fragmentshader: -------------------------------------------------------------------------------- 1 | #version 330 core 2 | out vec4 FragColor; 3 | 4 | void main() 5 | { 6 | FragColor = vec4(1.0); // set all 4 vector values to 1.0 7 | } -------------------------------------------------------------------------------- /FPSGame/Shaders/SunVertexShader.vertexshader: -------------------------------------------------------------------------------- 1 | #version 330 core 2 | layout (location = 0) in vec3 sunPosition_modelspace; 3 | 4 | uniform mat4 MVP; 5 | 6 | void main() 7 | { 8 | gl_Position = MVP * vec4(sunPosition_modelspace, 1.0); 9 | } -------------------------------------------------------------------------------- /FPSGame/textures/d29_g.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/FPSGame/textures/d29_g.bmp -------------------------------------------------------------------------------- /FPSGame/textures/d3_g.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/FPSGame/textures/d3_g.bmp -------------------------------------------------------------------------------- /FPSGame/textures/mapv1.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/FPSGame/textures/mapv1.blend -------------------------------------------------------------------------------- /FPSGame/textures/mapv1.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/FPSGame/textures/mapv1.blend1 -------------------------------------------------------------------------------- /FPSGame/textures/texture.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/FPSGame/textures/texture.bmp -------------------------------------------------------------------------------- /FPSGame/textures/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/FPSGame/textures/wall.jpg -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo "Please READ Tutorial 1 and don't build the tutorials yourself ! Use CMake instead. If you have a problem, read the FAQ" 3 | -------------------------------------------------------------------------------- /common/controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/common/controls.cpp -------------------------------------------------------------------------------- /common/controls.hpp: -------------------------------------------------------------------------------- 1 | #ifndef CONTROLS_HPP 2 | #define CONTROLS_HPP 3 | 4 | void computeMatricesFromInputs(); 5 | glm::mat4 getViewMatrix(); 6 | glm::mat4 getProjectionMatrix(); 7 | 8 | #endif -------------------------------------------------------------------------------- /common/quaternion_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/common/quaternion_utils.cpp -------------------------------------------------------------------------------- /common/quaternion_utils.hpp: -------------------------------------------------------------------------------- 1 | #ifndef QUATERNION_UTILS_H 2 | #define QUATERNION_UTILS_H 3 | 4 | quat RotationBetweenVectors(vec3 start, vec3 dest); 5 | 6 | quat LookAt(vec3 direction, vec3 desiredUp); 7 | 8 | quat RotateTowards(quat q1, quat q2, float maxAngle); 9 | 10 | 11 | #endif // QUATERNION_UTILS_H -------------------------------------------------------------------------------- /common/shader.hpp: -------------------------------------------------------------------------------- 1 | #ifndef SHADER_HPP 2 | #define SHADER_HPP 3 | 4 | GLuint LoadShaders(const char * vertex_file_path,const char * fragment_file_path); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /common/tangentspace.hpp: -------------------------------------------------------------------------------- 1 | #ifndef TANGENTSPACE_HPP 2 | #define TANGENTSPACE_HPP 3 | 4 | void computeTangentBasis( 5 | // inputs 6 | std::vector & vertices, 7 | std::vector & uvs, 8 | std::vector & normals, 9 | // outputs 10 | std::vector & tangents, 11 | std::vector & bitangents 12 | ); 13 | 14 | 15 | #endif -------------------------------------------------------------------------------- /common/text2D.hpp: -------------------------------------------------------------------------------- 1 | #ifndef TEXT2D_HPP 2 | #define TEXT2D_HPP 3 | 4 | void initText2D(const char * texturePath); 5 | void printText2D(const char * text, int x, int y, int size); 6 | void cleanupText2D(); 7 | 8 | #endif -------------------------------------------------------------------------------- /distrib/external/NVAPI-R304-developer/NVAPI_R304_Public_SDK_RelNotes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/distrib/external/NVAPI-R304-developer/NVAPI_R304_Public_SDK_RelNotes.pdf -------------------------------------------------------------------------------- /distrib/external/NVAPI-R304-developer/NVAPI_Reference_Developer.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/distrib/external/NVAPI-R304-developer/NVAPI_Reference_Developer.chm -------------------------------------------------------------------------------- /distrib/external/NVAPI-R304-developer/NVAPI_SDK_License_Agreement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/distrib/external/NVAPI-R304-developer/NVAPI_SDK_License_Agreement.pdf -------------------------------------------------------------------------------- /distrib/external/NVAPI-R304-developer/amd64/nvapi64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/distrib/external/NVAPI-R304-developer/amd64/nvapi64.lib -------------------------------------------------------------------------------- /distrib/external/NVAPI-R304-developer/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/distrib/external/NVAPI-R304-developer/nvapi.h -------------------------------------------------------------------------------- /distrib/external/NVAPI-R304-developer/x86/nvapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/distrib/external/NVAPI-R304-developer/x86/nvapi.lib -------------------------------------------------------------------------------- /distrib/package.bat: -------------------------------------------------------------------------------- 1 | C:\Python27\python.exe package.py 2 | PAUSE 3 | -------------------------------------------------------------------------------- /distrib/package.py: -------------------------------------------------------------------------------- 1 | from utils import * 2 | 3 | HgUpdate33() 4 | version = raw_input("Enter version number (ex : 0003) :") 5 | Package("OpenGL-tutorial_v"+version+"_33.zip"); 6 | HgUpdate21() 7 | Package("OpenGL-tutorial_v"+version+"_21.zip"); 8 | HgUpdate33() 9 | -------------------------------------------------------------------------------- /distrib/tests_core2.py: -------------------------------------------------------------------------------- 1 | from utils import * 2 | 3 | 4 | Clean() 5 | 6 | HgUpdate21() 7 | PatchAll() 8 | Build_XCode_64() 9 | RunAll() 10 | 11 | Clean() 12 | -------------------------------------------------------------------------------- /distrib/tests_platane.bat: -------------------------------------------------------------------------------- 1 | C:\Python27\python.exe tests_platane.py 2 | PAUSE 3 | -------------------------------------------------------------------------------- /distrib/tests_potiron.bat: -------------------------------------------------------------------------------- 1 | C:\Python27\python.exe tests_potiron.py 2 | PAUSE 3 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_ARB_get_proc_address: -------------------------------------------------------------------------------- 1 | GLX_ARB_get_proc_address 2 | http://oss.sgi.com/projects/ogl-sample/registry/ARB/get_proc_address.txt 3 | GLX_ARB_get_proc_address 4 | extern void ( * glXGetProcAddressARB (const GLubyte *procName)) (void); 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_ATI_pixel_format_float: -------------------------------------------------------------------------------- 1 | GLX_ATI_pixel_format_float 2 | 3 | GLX_ATI_pixel_format_float 4 | GLX_RGBA_FLOAT_ATI_BIT 0x00000100 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_EXT_create_context_es2_profile: -------------------------------------------------------------------------------- 1 | GLX_EXT_create_context_es2_profile 2 | http://www.opengl.org/registry/specs/EXT/glx_create_context_es2_profile.txt 3 | GLX_EXT_create_context_es2_profile 4 | GLX_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_EXT_create_context_es_profile: -------------------------------------------------------------------------------- 1 | GLX_EXT_create_context_es_profile 2 | http://www.opengl.org/registry/specs/EXT/glx_create_context_es_profile.txt 3 | GLX_EXT_create_context_es_profile 4 | GLX_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_EXT_fbconfig_packed_float: -------------------------------------------------------------------------------- 1 | GLX_EXT_fbconfig_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | GLX_EXT_fbconfig_packed_float 4 | GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT 0x20B1 5 | GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT 0x00000008 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GLX_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | GLX_EXT_framebuffer_sRGB 4 | GLX_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20B2 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_MESA_swap_control: -------------------------------------------------------------------------------- 1 | GLX_MESA_swap_control 2 | http://cgit.freedesktop.org/mesa/mesa/plain/docs/MESA_swap_control.spec 3 | GLX_MESA_swap_control 4 | int glXGetSwapIntervalMESA (void) 5 | int glXSwapIntervalMESA (unsigned int interval) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_NV_float_buffer: -------------------------------------------------------------------------------- 1 | GLX_NV_float_buffer 2 | http://cvs1.nvidia.com/inc/GL/glxtokens.h 3 | GLX_NV_float_buffer 4 | GLX_FLOAT_COMPONENTS_NV 0x20B0 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_NV_vertex_array_range: -------------------------------------------------------------------------------- 1 | GLX_NV_vertex_array_range 2 | http://oss.sgi.com/projects/ogl-sample/registry/NV/vertex_array_range.txt 3 | GLX_NV_vertex_array_range 4 | void * glXAllocateMemoryNV (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority) 5 | void glXFreeMemoryNV (void *pointer) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_SGIS_shared_multisample: -------------------------------------------------------------------------------- 1 | GLX_SGIS_shared_multisample 2 | 3 | GLX_SGIS_shared_multisample 4 | GLX_MULTISAMPLE_SUB_RECT_WIDTH_SGIS 0x8026 5 | GLX_MULTISAMPLE_SUB_RECT_HEIGHT_SGIS 0x8027 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_SGIX_swap_barrier: -------------------------------------------------------------------------------- 1 | GLX_SGIX_swap_barrier 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/swap_barrier.txt 3 | GLX_SGIX_swap_barrier 4 | void glXBindSwapBarrierSGIX (Display *dpy, GLXDrawable drawable, int barrier) 5 | Bool glXQueryMaxSwapBarriersSGIX (Display *dpy, int screen, int *max) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_SGIX_swap_group: -------------------------------------------------------------------------------- 1 | GLX_SGIX_swap_group 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/swap_group.txt 3 | GLX_SGIX_swap_group 4 | void glXJoinSwapGroupSGIX (Display *dpy, GLXDrawable drawable, GLXDrawable member) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_SGI_video_sync: -------------------------------------------------------------------------------- 1 | GLX_SGI_video_sync 2 | http://www.opengl.org/registry/specs/SGI/video_sync.txt 3 | GLX_SGI_video_sync 4 | int glXGetVideoSyncSGI (unsigned int* count) 5 | int glXWaitVideoSyncSGI (int divisor, int remainder, unsigned int* count) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_VERSION_1_2: -------------------------------------------------------------------------------- 1 | GLX_VERSION_1_2 2 | http://www.opengl.org/documentation/specs/glx/glx1.2.ps 3 | GLX_VERSION_1_2 4 | Display* glXGetCurrentDisplay (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GLX_VERSION_1_4: -------------------------------------------------------------------------------- 1 | GLX_VERSION_1_4 2 | http://www.opengl.org/documentation/specs/glx/glx1.4.pdf 3 | GLX_VERSION_1_4 4 | GLX_SAMPLE_BUFFERS 100000 5 | GLX_SAMPLES 100001 6 | extern void ( * glXGetProcAddress (const GLubyte *procName)) (void); 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_APPLE_pixel_buffer: -------------------------------------------------------------------------------- 1 | GL_APPLE_pixel_buffer 2 | 3 | GL_APPLE_pixel_buffer 4 | GL_MIN_PBUFFER_VIEWPORT_DIMS_APPLE 0x8A10 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_ARB_draw_instanced: -------------------------------------------------------------------------------- 1 | GL_ARB_draw_instanced 2 | http://www.opengl.org/registry/specs/ARB/draw_instanced.txt 3 | GL_ARB_draw_instanced 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_ATIX_texture_env_combine3: -------------------------------------------------------------------------------- 1 | GL_ATIX_texture_env_combine3 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_texture_env_combine3 4 | GL_MODULATE_ADD_ATIX 0x8744 5 | GL_MODULATE_SIGNED_ADD_ATIX 0x8745 6 | GL_MODULATE_SUBTRACT_ATIX 0x8746 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_ATIX_texture_env_route: -------------------------------------------------------------------------------- 1 | GL_ATIX_texture_env_route 2 | http://www.ati.com/developer/sdk/RadeonSDK/Html/Info/ATIX_texture_env_route.txt 3 | GL_ATIX_texture_env_route 4 | GL_SECONDARY_COLOR_ATIX 0x8747 5 | GL_TEXTURE_OUTPUT_RGB_ATIX 0x8748 6 | GL_TEXTURE_OUTPUT_ALPHA_ATIX 0x8749 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_ATIX_vertex_shader_output_point_size: -------------------------------------------------------------------------------- 1 | GL_ATIX_vertex_shader_output_point_size 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_vertex_shader_output_point_size 4 | GL_OUTPUT_POINT_SIZE_ATIX 0x610E 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_ATI_map_object_buffer: -------------------------------------------------------------------------------- 1 | GL_ATI_map_object_buffer 2 | http://www.opengl.org/registry/specs/ATI/map_object_buffer.txt 3 | GL_ATI_map_object_buffer 4 | void * glMapObjectBufferATI (GLuint buffer) 5 | void glUnmapObjectBufferATI (GLuint buffer) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_ATI_shader_texture_lod: -------------------------------------------------------------------------------- 1 | GL_ATI_shader_texture_lod 2 | 3 | GL_ATI_shader_texture_lod 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_ATI_texture_compression_3dc: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_compression_3dc 2 | 3 | GL_ATI_texture_compression_3dc 4 | GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI 0x8837 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_EXT_Cg_shader: -------------------------------------------------------------------------------- 1 | GL_EXT_Cg_shader 2 | http://download.nvidia.com/developer/GLSL/GLSL%20Release%20Notes%20for%20Release%2060.pdf 3 | GL_EXT_Cg_shader 4 | GL_CG_VERTEX_SHADER_EXT 0x890E 5 | GL_CG_FRAGMENT_SHADER_EXT 0x890F 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_EXT_debug_marker: -------------------------------------------------------------------------------- 1 | GL_EXT_debug_marker 2 | http://www.khronos.org/registry/gles/extensions/EXT/EXT_debug_marker.txt 3 | GL_EXT_debug_marker 4 | void glInsertEventMarkerEXT (GLsizei length, const GLchar* marker) 5 | void glPushGroupMarkerEXT (GLsizei length, const GLchar* marker) 6 | void glPopGroupMarkerEXT (void) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_EXT_depth_bounds_test: -------------------------------------------------------------------------------- 1 | GL_EXT_depth_bounds_test 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_depth_bounds_test.txt 3 | GL_EXT_depth_bounds_test 4 | GL_DEPTH_BOUNDS_TEST_EXT 0x8890 5 | GL_DEPTH_BOUNDS_EXT 0x8891 6 | void glDepthBoundsEXT (GLclampd zmin, GLclampd zmax) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GL_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | GL_EXT_framebuffer_sRGB 4 | GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 5 | GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_EXT_packed_float: -------------------------------------------------------------------------------- 1 | GL_EXT_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | GL_EXT_packed_float 4 | GL_R11F_G11F_B10F_EXT 0x8C3A 5 | GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B 6 | GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_EXT_pixel_buffer_object: -------------------------------------------------------------------------------- 1 | GL_EXT_pixel_buffer_object 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_pixel_buffer_object.txt 3 | GL_EXT_pixel_buffer_object 4 | GL_PIXEL_PACK_BUFFER_EXT 0x88EB 5 | GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC 6 | GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED 7 | GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_EXT_texture_edge_clamp: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_edge_clamp 2 | http://www.opengl.org/developers/documentation/Version1.2/1.2specs/texture_edge_clamp.txt 3 | GL_EXT_texture_edge_clamp 4 | GL_CLAMP_TO_EDGE_EXT 0x812F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_EXT_texture_rectangle: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_rectangle 2 | http://developer.apple.com/opengl/extensions/ext_texture_rectangle.html 3 | GL_EXT_texture_rectangle 4 | GL_TEXTURE_RECTANGLE_EXT 0x84F5 5 | GL_TEXTURE_BINDING_RECTANGLE_EXT 0x84F6 6 | GL_PROXY_TEXTURE_RECTANGLE_EXT 0x84F7 7 | GL_MAX_RECTANGLE_TEXTURE_SIZE_EXT 0x84F8 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_EXT_texture_shared_exponent: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_shared_exponent 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_shared_exponent.txt 3 | GL_EXT_texture_shared_exponent 4 | GL_RGB9_E5_EXT 0x8C3D 5 | GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E 6 | GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_EXT_timer_query: -------------------------------------------------------------------------------- 1 | GL_EXT_timer_query 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_timer_query.txt 3 | GL_EXT_timer_query 4 | GL_TIME_ELAPSED_EXT 0x88BF 5 | void glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64EXT *params) 6 | void glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64EXT *params) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_NV_depth_range_unclamped: -------------------------------------------------------------------------------- 1 | GL_NV_depth_range_unclamped 2 | 3 | GL_NV_depth_range_unclamped 4 | GL_SAMPLE_COUNT_BITS_NV 0x8864 5 | GL_CURRENT_SAMPLE_COUNT_QUERY_NV 0x8865 6 | GL_QUERY_RESULT_NV 0x8866 7 | GL_QUERY_RESULT_AVAILABLE_NV 0x8867 8 | GL_SAMPLE_COUNT_NV 0x8914 9 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_NV_fragment_program4: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_fragment_program4.txt 3 | GL_NV_gpu_program4 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_NV_fragment_program_option: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program_option 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_fragment_program_option.txt 3 | GL_NV_fragment_program_option 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_NV_geometry_shader4: -------------------------------------------------------------------------------- 1 | GL_NV_geometry_shader4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_geometry_shader4.txt 3 | GL_NV_geometry_shader4 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_NV_vertex_program2_option: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program2_option 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_vertex_program2_option.txt 3 | GL_NV_vertex_program2_option 4 | GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 5 | GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_NV_vertex_program3: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program3 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_vertex_program3.txt 3 | GL_NV_vertex_program3 4 | MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_NV_vertex_program4: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_vertex_program4.txt 3 | GL_NV_gpu_program4 4 | GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_SGIX_shadow: -------------------------------------------------------------------------------- 1 | GL_SGIX_shadow 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/shadow.txt 3 | GL_SGIX_shadow 4 | GL_TEXTURE_COMPARE_SGIX 0x819A 5 | GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B 6 | GL_TEXTURE_LEQUAL_R_SGIX 0x819C 7 | GL_TEXTURE_GEQUAL_R_SGIX 0x819D 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_SUN_read_video_pixels: -------------------------------------------------------------------------------- 1 | GL_SUN_read_video_pixels 2 | http://wwws.sun.com/software/graphics/opengl/extensions/gl_sun_read_video_pixels.txt 3 | GL_SUN_read_video_pixels 4 | void glReadVideoPixelsSUN (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void* pixels) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_VERSION_1_2_1: -------------------------------------------------------------------------------- 1 | GL_VERSION_1_2_1 2 | http://www.opengl.org/documentation/specs/version1.2/opengl1.2.1.pdf 3 | 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_VERSION_3_3: -------------------------------------------------------------------------------- 1 | GL_VERSION_3_3 2 | https://www.opengl.org/registry/doc/glspec33.compatibility.20100311.pdf 3 | 4 | GL_RGB10_A2UI 0x906F 5 | GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE 6 | void glVertexAttribDivisor (GLuint index, GLuint divisor) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_VERSION_4_1: -------------------------------------------------------------------------------- 1 | GL_VERSION_4_1 2 | https://www.opengl.org/registry/doc/glspec41.compatibility.20100725.pdf 3 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_VERSION_4_3: -------------------------------------------------------------------------------- 1 | GL_VERSION_4_3 2 | https://www.opengl.org/registry/doc/glspec43.compatibility.20130214.pdf 3 | 4 | GL_VERTEX_ATTRIB_ARRAY_LONG 0x874E 5 | GL_NUM_SHADING_LANGUAGE_VERSIONS 0x82E9 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_VERSION_4_4: -------------------------------------------------------------------------------- 1 | GL_VERSION_4_4 2 | https://www.opengl.org/registry/doc/glspec44.compatibility.pdf 3 | 4 | GL_MAX_VERTEX_ATTRIB_STRIDE 0x82E5 5 | GL_PRIMITIVE_RESTART_FOR_PATCHES_SUPPORTED 0x8221 6 | GL_TEXTURE_BUFFER_BINDING 0x8C2A 7 | 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/GL_WIN_swap_hint: -------------------------------------------------------------------------------- 1 | GL_WIN_swap_hint 2 | http://msdn.microsoft.com/library/default.asp?url=/library/en-us/opengl/glfunc01_16zy.asp 3 | GL_WIN_swap_hint 4 | void glAddSwapHintRectWIN (GLint x, GLint y, GLsizei width, GLsizei height) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/WGL_ATI_render_texture_rectangle: -------------------------------------------------------------------------------- 1 | WGL_ATI_render_texture_rectangle 2 | 3 | WGL_ATI_render_texture_rectangle 4 | WGL_TEXTURE_RECTANGLE_ATI 0x21A5 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/WGL_EXT_create_context_es2_profile: -------------------------------------------------------------------------------- 1 | WGL_EXT_create_context_es2_profile 2 | http://www.opengl.org/registry/specs/EXT/wgl_create_context_es2_profile.txt 3 | WGL_EXT_create_context_es2_profile 4 | WGL_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/WGL_EXT_create_context_es_profile: -------------------------------------------------------------------------------- 1 | WGL_EXT_create_context_es_profile 2 | http://www.opengl.org/registry/specs/EXT/wgl_create_context_es_profile.txt 3 | WGL_EXT_create_context_es_profile 4 | WGL_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/WGL_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | WGL_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | WGL_EXT_framebuffer_sRGB 4 | WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20A9 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/WGL_EXT_pixel_format_packed_float: -------------------------------------------------------------------------------- 1 | WGL_EXT_pixel_format_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | WGL_EXT_pixel_format_packed_float 4 | WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT 0x20A8 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/core/gl/WGL_NV_vertex_array_range: -------------------------------------------------------------------------------- 1 | WGL_NV_vertex_array_range 2 | http://oss.sgi.com/projects/ogl-sample/registry/NV/vertex_array_range.txt 3 | WGL_NV_vertex_array_range 4 | void * wglAllocateMemoryNV (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority) 5 | void wglFreeMemoryNV (void *pointer) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/custom.txt: -------------------------------------------------------------------------------- 1 | WGL_ARB_extensions_string 2 | WGL_EXT_extensions_string 3 | WGL_ARB_pixel_format 4 | WGL_ARB_pbuffer 5 | WGL_NV_float_buffer 6 | WGL_ATI_pixel_format_float 7 | WGL_ARB_multisample 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/.dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/auto/extensions/gl/.dummy -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_3DFX_multisample: -------------------------------------------------------------------------------- 1 | GLX_3DFX_multisample 2 | http://www.opengl.org/registry/specs/3DFX/3dfx_multisample.txt 3 | GLX_3DFX_multisample 4 | GLX_SAMPLE_BUFFERS_3DFX 0x8050 5 | GLX_SAMPLES_3DFX 0x8051 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_ARB_context_flush_control: -------------------------------------------------------------------------------- 1 | GLX_ARB_context_flush_control 2 | http://www.opengl.org/registry/specs/KHR/context_flush_control.txt 3 | GLX_ARB_context_flush_control 4 | GLX_CONTEXT_RELEASE_BEHAVIOR_NONE_ARB 0x0000 5 | GLX_CONTEXT_RELEASE_BEHAVIOR_ARB 0x2097 6 | GLX_CONTEXT_RELEASE_BEHAVIOR_FLUSH_ARB 0x2098 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_ARB_create_context_profile: -------------------------------------------------------------------------------- 1 | GLX_ARB_create_context_profile 2 | http://www.opengl.org/registry/specs/ARB/glx_create_context.txt 3 | GLX_ARB_create_context_profile 4 | GLX_CONTEXT_CORE_PROFILE_BIT_ARB 0x00000001 5 | GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002 6 | GLX_CONTEXT_PROFILE_MASK_ARB 0x9126 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_ARB_fbconfig_float: -------------------------------------------------------------------------------- 1 | GLX_ARB_fbconfig_float 2 | http://www.opengl.org/registry/specs/ARB/color_buffer_float.txt 3 | GLX_ARB_fbconfig_float 4 | GLX_RGBA_FLOAT_BIT_ARB 0x00000004 5 | GLX_RGBA_FLOAT_TYPE_ARB 0x20B9 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_ARB_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GLX_ARB_framebuffer_sRGB 2 | http://www.opengl.org/registry/specs/ARB/framebuffer_sRGB.txt 3 | GLX_ARB_framebuffer_sRGB 4 | GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20B2 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_ARB_get_proc_address: -------------------------------------------------------------------------------- 1 | GLX_ARB_get_proc_address 2 | http://oss.sgi.com/projects/ogl-sample/registry/ARB/get_proc_address.txt 3 | GLX_ARB_get_proc_address 4 | extern void ( * glXGetProcAddressARB (const GLubyte *procName)) (void); 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_ARB_multisample: -------------------------------------------------------------------------------- 1 | GLX_ARB_multisample 2 | http://www.opengl.org/registry/specs/ARB/multisample.txt 3 | GLX_ARB_multisample 4 | GLX_SAMPLE_BUFFERS_ARB 100000 5 | GLX_SAMPLES_ARB 100001 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_ARB_robustness_application_isolation: -------------------------------------------------------------------------------- 1 | GLX_ARB_robustness_application_isolation 2 | http://www.opengl.org/registry/specs/ARB/glx_robustness_isolation.txt 3 | GLX_ARB_robustness_application_isolation 4 | GLX_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_ARB_robustness_share_group_isolation: -------------------------------------------------------------------------------- 1 | GLX_ARB_robustness_share_group_isolation 2 | http://www.opengl.org/registry/specs/ARB/glx_robustness_isolation.txt 3 | GLX_ARB_robustness_share_group_isolation 4 | GLX_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_ARB_vertex_buffer_object: -------------------------------------------------------------------------------- 1 | GLX_ARB_vertex_buffer_object 2 | http://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt 3 | GLX_ARB_vertex_buffer_object 4 | GLX_CONTEXT_ALLOW_BUFFER_BYTE_ORDER_MISMATCH_ARB 0x2095 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_ATI_pixel_format_float: -------------------------------------------------------------------------------- 1 | GLX_ATI_pixel_format_float 2 | 3 | GLX_ATI_pixel_format_float 4 | GLX_RGBA_FLOAT_ATI_BIT 0x00000100 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_EXT_buffer_age: -------------------------------------------------------------------------------- 1 | GLX_EXT_buffer_age 2 | http://www.opengl.org/registry/specs/EXT/glx_buffer_age.txt 3 | GLX_EXT_buffer_age 4 | GLX_BACK_BUFFER_AGE_EXT 0x20F4 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_EXT_create_context_es2_profile: -------------------------------------------------------------------------------- 1 | GLX_EXT_create_context_es2_profile 2 | http://www.opengl.org/registry/specs/EXT/glx_create_context_es2_profile.txt 3 | GLX_EXT_create_context_es2_profile 4 | GLX_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_EXT_create_context_es_profile: -------------------------------------------------------------------------------- 1 | GLX_EXT_create_context_es_profile 2 | http://www.opengl.org/registry/specs/EXT/glx_create_context_es_profile.txt 3 | GLX_EXT_create_context_es_profile 4 | GLX_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_EXT_fbconfig_packed_float: -------------------------------------------------------------------------------- 1 | GLX_EXT_fbconfig_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | GLX_EXT_fbconfig_packed_float 4 | GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT 0x20B1 5 | GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT 0x00000008 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GLX_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | GLX_EXT_framebuffer_sRGB 4 | GLX_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20B2 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_EXT_scene_marker: -------------------------------------------------------------------------------- 1 | GLX_EXT_scene_marker 2 | http://www.opengl.org/registry/specs/EXT/scene_marker.txt 3 | GLX_EXT_scene_marker 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_EXT_stereo_tree: -------------------------------------------------------------------------------- 1 | GLX_EXT_stereo_tree 2 | http://www.opengl.org/registry/specs/EXT/glx_stereo_tree.txt 3 | GLX_EXT_stereo_tree 4 | GLX_STEREO_NOTIFY_EXT 0x00000000 5 | GLX_STEREO_NOTIFY_MASK_EXT 0x00000001 6 | GLX_STEREO_TREE_EXT 0x20F5 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_EXT_swap_control: -------------------------------------------------------------------------------- 1 | GLX_EXT_swap_control 2 | http://www.opengl.org/registry/specs/EXT/swap_control.txt 3 | GLX_EXT_swap_control 4 | GLX_SWAP_INTERVAL_EXT 0x20F1 5 | GLX_MAX_SWAP_INTERVAL_EXT 0x20F2 6 | void glXSwapIntervalEXT (Display* dpy, GLXDrawable drawable, int interval) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_EXT_swap_control_tear: -------------------------------------------------------------------------------- 1 | GLX_EXT_swap_control_tear 2 | http://www.opengl.org/registry/specs/EXT/glx_swap_control_tear.txt 3 | GLX_EXT_swap_control_tear 4 | GLX_LATE_SWAPS_TEAR_EXT 0x20F3 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_EXT_visual_rating: -------------------------------------------------------------------------------- 1 | GLX_EXT_visual_rating 2 | http://www.opengl.org/registry/specs/EXT/visual_rating.txt 3 | GLX_EXT_visual_rating 4 | GLX_VISUAL_CAVEAT_EXT 0x20 5 | GLX_SLOW_VISUAL_EXT 0x8001 6 | GLX_NON_CONFORMANT_VISUAL_EXT 0x800D 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_INTEL_swap_event: -------------------------------------------------------------------------------- 1 | GLX_INTEL_swap_event 2 | http://www.opengl.org/registry/specs/INTEL/swap_event.txt 3 | GLX_INTEL_swap_event 4 | GLX_EXCHANGE_COMPLETE_INTEL 0x8180 5 | GLX_COPY_COMPLETE_INTEL 0x8181 6 | GLX_FLIP_COMPLETE_INTEL 0x8182 7 | GLX_BUFFER_SWAP_COMPLETE_INTEL_MASK 0x04000000 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_MESA_agp_offset: -------------------------------------------------------------------------------- 1 | GLX_MESA_agp_offset 2 | http://www.opengl.org/registry/specs/MESA/agp_offset.txt 3 | GLX_MESA_agp_offset 4 | unsigned int glXGetAGPOffsetMESA (const void* pointer) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_MESA_copy_sub_buffer: -------------------------------------------------------------------------------- 1 | GLX_MESA_copy_sub_buffer 2 | http://www.opengl.org/registry/specs/MESA/copy_sub_buffer.txt 3 | GLX_MESA_copy_sub_buffer 4 | void glXCopySubBufferMESA (Display* dpy, GLXDrawable drawable, int x, int y, int width, int height) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_MESA_pixmap_colormap: -------------------------------------------------------------------------------- 1 | GLX_MESA_pixmap_colormap 2 | http://www.opengl.org/registry/specs/MESA/pixmap_colormap.txt 3 | GLX_MESA_pixmap_colormap 4 | GLXPixmap glXCreateGLXPixmapMESA (Display* dpy, XVisualInfo *visual, Pixmap pixmap, Colormap cmap) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_MESA_release_buffers: -------------------------------------------------------------------------------- 1 | GLX_MESA_release_buffers 2 | http://www.opengl.org/registry/specs/MESA/release_buffers.txt 3 | GLX_MESA_release_buffers 4 | Bool glXReleaseBuffersMESA (Display* dpy, GLXDrawable d) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_MESA_set_3dfx_mode: -------------------------------------------------------------------------------- 1 | GLX_MESA_set_3dfx_mode 2 | http://www.opengl.org/registry/specs/MESA/set_3dfx_mode.txt 3 | GLX_MESA_set_3dfx_mode 4 | GLX_3DFX_WINDOW_MODE_MESA 0x1 5 | GLX_3DFX_FULLSCREEN_MODE_MESA 0x2 6 | GLboolean glXSet3DfxModeMESA (GLint mode) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_MESA_swap_control: -------------------------------------------------------------------------------- 1 | GLX_MESA_swap_control 2 | http://cgit.freedesktop.org/mesa/mesa/plain/docs/MESA_swap_control.spec 3 | GLX_MESA_swap_control 4 | int glXGetSwapIntervalMESA (void) 5 | int glXSwapIntervalMESA (unsigned int interval) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_NV_delay_before_swap: -------------------------------------------------------------------------------- 1 | GLX_NV_delay_before_swap 2 | http://www.opengl.org/registry/specs/NV/glx_delay_before_swap.txt 3 | GLX_NV_delay_before_swap 4 | Bool glXDelayBeforeSwapNV (Display* dpy, GLXDrawable drawable, GLfloat seconds) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_NV_float_buffer: -------------------------------------------------------------------------------- 1 | GLX_NV_float_buffer 2 | http://cvs1.nvidia.com/inc/GL/glxtokens.h 3 | GLX_NV_float_buffer 4 | GLX_FLOAT_COMPONENTS_NV 0x20B0 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_NV_multisample_coverage: -------------------------------------------------------------------------------- 1 | GLX_NV_multisample_coverage 2 | http://www.opengl.org/registry/specs/NV/multisample_coverage.txt 3 | GLX_NV_multisample_coverage 4 | GLX_COLOR_SAMPLES_NV 0x20B3 5 | GLX_COVERAGE_SAMPLES_NV 100001 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_NV_vertex_array_range: -------------------------------------------------------------------------------- 1 | GLX_NV_vertex_array_range 2 | http://oss.sgi.com/projects/ogl-sample/registry/NV/vertex_array_range.txt 3 | GLX_NV_vertex_array_range 4 | void * glXAllocateMemoryNV (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority) 5 | void glXFreeMemoryNV (void *pointer) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_OML_swap_method: -------------------------------------------------------------------------------- 1 | GLX_OML_swap_method 2 | http://www.opengl.org/registry/specs/OML/glx_swap_method.txt 3 | GLX_OML_swap_method 4 | GLX_SWAP_METHOD_OML 0x8060 5 | GLX_SWAP_EXCHANGE_OML 0x8061 6 | GLX_SWAP_COPY_OML 0x8062 7 | GLX_SWAP_UNDEFINED_OML 0x8063 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGIS_blended_overlay: -------------------------------------------------------------------------------- 1 | GLX_SGIS_blended_overlay 2 | http://www.opengl.org/registry/specs/SGIS/blended_overlay.txt 3 | GLX_SGIS_blended_overlay 4 | GLX_BLENDED_RGBA_SGIS 0x8025 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGIS_color_range: -------------------------------------------------------------------------------- 1 | GLX_SGIS_color_range 2 | http://www.opengl.org/registry/specs/SGIS/color_range.txt 3 | GLX_SGIS_color_range 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGIS_multisample: -------------------------------------------------------------------------------- 1 | GLX_SGIS_multisample 2 | http://www.opengl.org/registry/specs/SGIS/multisample.txt 3 | GLX_SGIS_multisample 4 | GLX_SAMPLE_BUFFERS_SGIS 100000 5 | GLX_SAMPLES_SGIS 100001 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGIS_shared_multisample: -------------------------------------------------------------------------------- 1 | GLX_SGIS_shared_multisample 2 | 3 | GLX_SGIS_shared_multisample 4 | GLX_MULTISAMPLE_SUB_RECT_WIDTH_SGIS 0x8026 5 | GLX_MULTISAMPLE_SUB_RECT_HEIGHT_SGIS 0x8027 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGIX_swap_barrier: -------------------------------------------------------------------------------- 1 | GLX_SGIX_swap_barrier 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/swap_barrier.txt 3 | GLX_SGIX_swap_barrier 4 | void glXBindSwapBarrierSGIX (Display *dpy, GLXDrawable drawable, int barrier) 5 | Bool glXQueryMaxSwapBarriersSGIX (Display *dpy, int screen, int *max) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGIX_swap_group: -------------------------------------------------------------------------------- 1 | GLX_SGIX_swap_group 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/swap_group.txt 3 | GLX_SGIX_swap_group 4 | void glXJoinSwapGroupSGIX (Display *dpy, GLXDrawable drawable, GLXDrawable member) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGIX_visual_select_group: -------------------------------------------------------------------------------- 1 | GLX_SGIX_visual_select_group 2 | http://www.opengl.org/registry/specs/SGIX/visual_select_group.txt 3 | GLX_SGIX_visual_select_group 4 | GLX_VISUAL_SELECT_GROUP_SGIX 0x8028 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGI_cushion: -------------------------------------------------------------------------------- 1 | GLX_SGI_cushion 2 | http://www.opengl.org/registry/specs/SGI/cushion.txt 3 | GLX_SGI_cushion 4 | void glXCushionSGI (Display* dpy, Window window, float cushion) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGI_make_current_read: -------------------------------------------------------------------------------- 1 | GLX_SGI_make_current_read 2 | http://www.opengl.org/registry/specs/SGI/make_current_read.txt 3 | GLX_SGI_make_current_read 4 | GLXDrawable glXGetCurrentReadDrawableSGI (void) 5 | Bool glXMakeCurrentReadSGI (Display* dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGI_swap_control: -------------------------------------------------------------------------------- 1 | GLX_SGI_swap_control 2 | http://www.opengl.org/registry/specs/SGI/swap_control.txt 3 | GLX_SGI_swap_control 4 | int glXSwapIntervalSGI (int interval) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SGI_video_sync: -------------------------------------------------------------------------------- 1 | GLX_SGI_video_sync 2 | http://www.opengl.org/registry/specs/SGI/video_sync.txt 3 | GLX_SGI_video_sync 4 | int glXGetVideoSyncSGI (unsigned int* count) 5 | int glXWaitVideoSyncSGI (int divisor, int remainder, unsigned int* count) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GLX_SUN_get_transparent_index: -------------------------------------------------------------------------------- 1 | GLX_SUN_get_transparent_index 2 | http://www.opengl.org/registry/specs/SUN/get_transparent_index.txt 3 | GLX_SUN_get_transparent_index 4 | Status glXGetTransparentIndexSUN (Display* dpy, Window overlay, Window underlay, unsigned long *pTransparentIndex) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_3DFX_multisample: -------------------------------------------------------------------------------- 1 | GL_3DFX_multisample 2 | http://www.opengl.org/registry/specs/3DFX/3dfx_multisample.txt 3 | GL_3DFX_multisample 4 | GL_MULTISAMPLE_3DFX 0x86B2 5 | GL_SAMPLE_BUFFERS_3DFX 0x86B3 6 | GL_SAMPLES_3DFX 0x86B4 7 | GL_MULTISAMPLE_BIT_3DFX 0x20000000 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_3DFX_tbuffer: -------------------------------------------------------------------------------- 1 | GL_3DFX_tbuffer 2 | http://www.opengl.org/registry/specs/3DFX/tbuffer.txt 3 | GL_3DFX_tbuffer 4 | void glTbufferMask3DFX (GLuint mask) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_3DFX_texture_compression_FXT1: -------------------------------------------------------------------------------- 1 | GL_3DFX_texture_compression_FXT1 2 | http://www.opengl.org/registry/specs/3DFX/texture_compression_FXT1.txt 3 | GL_3DFX_texture_compression_FXT1 4 | GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0 5 | GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_blend_minmax_factor: -------------------------------------------------------------------------------- 1 | GL_AMD_blend_minmax_factor 2 | http://www.opengl.org/registry/specs/AMD/blend_minmax_factor.txt 3 | GL_AMD_blend_minmax_factor 4 | GL_FACTOR_MIN_AMD 0x901C 5 | GL_FACTOR_MAX_AMD 0x901D 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_conservative_depth: -------------------------------------------------------------------------------- 1 | GL_AMD_conservative_depth 2 | http://www.opengl.org/registry/specs/AMD/conservative_depth.txt 3 | GL_AMD_conservative_depth 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_depth_clamp_separate: -------------------------------------------------------------------------------- 1 | GL_AMD_depth_clamp_separate 2 | http://www.opengl.org/registry/specs/AMD/depth_clamp_separate.txt 3 | GL_AMD_depth_clamp_separate 4 | GL_DEPTH_CLAMP_NEAR_AMD 0x901E 5 | GL_DEPTH_CLAMP_FAR_AMD 0x901F 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_gcn_shader: -------------------------------------------------------------------------------- 1 | GL_AMD_gcn_shader 2 | http://www.opengl.org/registry/specs/AMD/gcn_shader.txt 3 | GL_AMD_gcn_shader 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_gpu_shader_int64: -------------------------------------------------------------------------------- 1 | GL_AMD_gpu_shader_int64 2 | http://www.opengl.org/registry/specs/AMD/gpu_shader_int64.txt 3 | GL_AMD_gpu_shader_int64 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_pinned_memory: -------------------------------------------------------------------------------- 1 | GL_AMD_pinned_memory 2 | http://www.opengl.org/registry/specs/AMD/pinned_memory.txt 3 | GL_AMD_pinned_memory 4 | GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD 0x9160 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_query_buffer_object: -------------------------------------------------------------------------------- 1 | GL_AMD_query_buffer_object 2 | http://www.opengl.org/registry/specs/AMD/query_buffer_object.txt 3 | GL_AMD_query_buffer_object 4 | GL_QUERY_BUFFER_AMD 0x9192 5 | GL_QUERY_BUFFER_BINDING_AMD 0x9193 6 | GL_QUERY_RESULT_NO_WAIT_AMD 0x9194 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_sample_positions: -------------------------------------------------------------------------------- 1 | GL_AMD_sample_positions 2 | http://www.opengl.org/registry/specs/AMD/sample_positions.txt 3 | GL_AMD_sample_positions 4 | GL_SUBSAMPLE_DISTANCE_AMD 0x883F 5 | void glSetMultisamplefvAMD (GLenum pname, GLuint index, const GLfloat* val) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_seamless_cubemap_per_texture: -------------------------------------------------------------------------------- 1 | GL_AMD_seamless_cubemap_per_texture 2 | http://www.opengl.org/registry/specs/AMD/seamless_cubemap_per_texture.txt 3 | GL_AMD_seamless_cubemap_per_texture 4 | GL_TEXTURE_CUBE_MAP_SEAMLESS_ARB 0x884F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_shader_atomic_counter_ops: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_atomic_counter_ops 2 | http://www.opengl.org/registry/specs/AMD/shader_atomic_counter_ops.txt 3 | GL_AMD_shader_atomic_counter_ops 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_shader_stencil_export: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_stencil_export 2 | http://www.opengl.org/registry/specs/AMD/shader_stencil_export.txt 3 | GL_AMD_shader_stencil_export 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_shader_stencil_value_export: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_stencil_value_export 2 | http://www.opengl.org/registry/specs/AMD/shader_stencil_value_export.txt 3 | GL_AMD_shader_stencil_value_export 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_shader_trinary_minmax: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_trinary_minmax 2 | http://www.opengl.org/registry/specs/AMD/shader_trinary_minmax.txt 3 | GL_AMD_shader_trinary_minmax 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_texture_texture4: -------------------------------------------------------------------------------- 1 | GL_AMD_texture_texture4 2 | http://www.opengl.org/registry/specs/AMD/texture_texture4.txt 3 | GL_AMD_texture_texture4 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_transform_feedback3_lines_triangles: -------------------------------------------------------------------------------- 1 | GL_AMD_transform_feedback3_lines_triangles 2 | http://www.opengl.org/registry/specs/AMD/transform_feedback3_lines_triangles.txt 3 | GL_AMD_transform_feedback3_lines_triangles 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_transform_feedback4: -------------------------------------------------------------------------------- 1 | GL_AMD_transform_feedback4 2 | http://www.opengl.org/registry/specs/AMD/transform_feedback4.txt 3 | GL_AMD_transform_feedback4 4 | GL_STREAM_RASTERIZATION_AMD 0x91A0 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_vertex_shader_layer: -------------------------------------------------------------------------------- 1 | GL_AMD_vertex_shader_layer 2 | http://www.opengl.org/registry/specs/AMD/vertex_shader_layer.txt 3 | GL_AMD_vertex_shader_layer 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_AMD_vertex_shader_viewport_index: -------------------------------------------------------------------------------- 1 | GL_AMD_vertex_shader_viewport_index 2 | http://www.opengl.org/registry/specs/AMD/vertex_shader_viewport_index.txt 3 | GL_AMD_vertex_shader_viewport_index 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ANGLE_depth_texture: -------------------------------------------------------------------------------- 1 | GL_ANGLE_depth_texture 2 | https://code.google.com/p/angleproject/source/browse/#git%2Fextensions 3 | GL_ANGLE_depth_texture 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ANGLE_pack_reverse_row_order: -------------------------------------------------------------------------------- 1 | GL_ANGLE_pack_reverse_row_order 2 | https://code.google.com/p/angleproject/source/browse/#git%2Fextensions 3 | GL_ANGLE_pack_reverse_row_order 4 | GL_PACK_REVERSE_ROW_ORDER_ANGLE 0x93A4 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ANGLE_program_binary: -------------------------------------------------------------------------------- 1 | GL_ANGLE_program_binary 2 | https://code.google.com/p/angleproject/source/browse/#git%2Fextensions 3 | GL_ANGLE_program_binary 4 | GL_PROGRAM_BINARY_ANGLE 0x93A6 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ANGLE_texture_usage: -------------------------------------------------------------------------------- 1 | GL_ANGLE_texture_usage 2 | https://code.google.com/p/angleproject/source/browse/#git%2Fextensions 3 | GL_ANGLE_texture_usage 4 | GL_TEXTURE_USAGE_ANGLE 0x93A2 5 | GL_FRAMEBUFFER_ATTACHMENT_ANGLE 0x93A3 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_APPLE_aux_depth_stencil: -------------------------------------------------------------------------------- 1 | GL_APPLE_aux_depth_stencil 2 | http://www.opengl.org/registry/specs/APPLE/aux_depth_stencil.txt 3 | GL_APPLE_aux_depth_stencil 4 | GL_AUX_DEPTH_STENCIL_APPLE 0x8A14 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_APPLE_client_storage: -------------------------------------------------------------------------------- 1 | GL_APPLE_client_storage 2 | http://www.opengl.org/registry/specs/APPLE/client_storage.txt 3 | GL_APPLE_client_storage 4 | GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_APPLE_pixel_buffer: -------------------------------------------------------------------------------- 1 | GL_APPLE_pixel_buffer 2 | 3 | GL_APPLE_pixel_buffer 4 | GL_MIN_PBUFFER_VIEWPORT_DIMS_APPLE 0x8A10 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_APPLE_rgb_422: -------------------------------------------------------------------------------- 1 | GL_APPLE_rgb_422 2 | http://www.opengl.org/registry/specs/APPLE/rgb_422.txt 3 | GL_APPLE_rgb_422 4 | GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA 5 | GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB 6 | GL_RGB_422_APPLE 0x8A1F 7 | GL_RGB_RAW_422_APPLE 0x8A51 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_APPLE_row_bytes: -------------------------------------------------------------------------------- 1 | GL_APPLE_row_bytes 2 | http://www.opengl.org/registry/specs/APPLE/row_bytes.txt 3 | GL_APPLE_row_bytes 4 | GL_PACK_ROW_BYTES_APPLE 0x8A15 5 | GL_UNPACK_ROW_BYTES_APPLE 0x8A16 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_APPLE_specular_vector: -------------------------------------------------------------------------------- 1 | GL_APPLE_specular_vector 2 | http://www.opengl.org/registry/specs/APPLE/specular_vector.txt 3 | GL_APPLE_specular_vector 4 | GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_APPLE_transform_hint: -------------------------------------------------------------------------------- 1 | GL_APPLE_transform_hint 2 | http://www.opengl.org/registry/specs/APPLE/transform_hint.txt 3 | GL_APPLE_transform_hint 4 | GL_TRANSFORM_HINT_APPLE 0x85B1 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_APPLE_ycbcr_422: -------------------------------------------------------------------------------- 1 | GL_APPLE_ycbcr_422 2 | http://www.opengl.org/registry/specs/APPLE/ycbcr_422.txt 3 | GL_APPLE_ycbcr_422 4 | GL_YCBCR_422_APPLE 0x85B9 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_ES3_1_compatibility: -------------------------------------------------------------------------------- 1 | GL_ARB_ES3_1_compatibility 2 | http://www.opengl.org/registry/specs/ARB/ES3_1_compatibility.txt 3 | GL_ARB_ES3_1_compatibility 4 | void glMemoryBarrierByRegion (GLbitfield barriers) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_arrays_of_arrays: -------------------------------------------------------------------------------- 1 | GL_ARB_arrays_of_arrays 2 | http://www.opengl.org/registry/specs/ARB/arrays_of_arrays.txt 3 | GL_ARB_arrays_of_arrays 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_compatibility: -------------------------------------------------------------------------------- 1 | GL_ARB_compatibility 2 | http://www.opengl.org/registry/specs/ARB/compatibility.txt 3 | GL_ARB_compatibility 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_conservative_depth: -------------------------------------------------------------------------------- 1 | GL_ARB_conservative_depth 2 | http://www.opengl.org/registry/specs/ARB/conservative_depth.txt 3 | GL_ARB_conservative_depth 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_copy_buffer: -------------------------------------------------------------------------------- 1 | GL_ARB_copy_buffer 2 | http://www.opengl.org/registry/specs/ARB/copy_buffer.txt 3 | GL_ARB_copy_buffer 4 | GL_COPY_READ_BUFFER 0x8F36 5 | GL_COPY_WRITE_BUFFER 0x8F37 6 | void glCopyBufferSubData (GLenum readtarget, GLenum writetarget, GLintptr readoffset, GLintptr writeoffset, GLsizeiptr size) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_cull_distance: -------------------------------------------------------------------------------- 1 | GL_ARB_cull_distance 2 | http://www.opengl.org/registry/specs/ARB/cull_distance.txt 3 | GL_ARB_cull_distance 4 | GL_MAX_CULL_DISTANCES 0x82F9 5 | GL_MAX_COMBINED_CLIP_AND_CULL_DISTANCES 0x82FA 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_depth_buffer_float: -------------------------------------------------------------------------------- 1 | GL_ARB_depth_buffer_float 2 | http://www.opengl.org/registry/specs/ARB/depth_buffer_float.txt 3 | GL_ARB_depth_buffer_float 4 | GL_DEPTH_COMPONENT32F 0x8CAC 5 | GL_DEPTH32F_STENCIL8 0x8CAD 6 | GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_depth_clamp: -------------------------------------------------------------------------------- 1 | GL_ARB_depth_clamp 2 | http://www.opengl.org/registry/specs/ARB/depth_clamp.txt 3 | GL_ARB_depth_clamp 4 | GL_DEPTH_CLAMP 0x864F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_depth_texture: -------------------------------------------------------------------------------- 1 | GL_ARB_depth_texture 2 | http://www.opengl.org/registry/specs/ARB/depth_texture.txt 3 | GL_ARB_depth_texture 4 | GL_DEPTH_COMPONENT16_ARB 0x81A5 5 | GL_DEPTH_COMPONENT24_ARB 0x81A6 6 | GL_DEPTH_COMPONENT32_ARB 0x81A7 7 | GL_TEXTURE_DEPTH_SIZE_ARB 0x884A 8 | GL_DEPTH_TEXTURE_MODE_ARB 0x884B 9 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_derivative_control: -------------------------------------------------------------------------------- 1 | GL_ARB_derivative_control 2 | http://www.opengl.org/registry/specs/ARB/derivative_control.txt 3 | GL_ARB_derivative_control 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_draw_instanced: -------------------------------------------------------------------------------- 1 | GL_ARB_draw_instanced 2 | http://www.opengl.org/registry/specs/ARB/draw_instanced.txt 3 | GL_ARB_draw_instanced 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_enhanced_layouts: -------------------------------------------------------------------------------- 1 | GL_ARB_enhanced_layouts 2 | http://www.opengl.org/registry/specs/ARB/enhanced_layouts.txt 3 | GL_ARB_enhanced_layouts 4 | GL_LOCATION_COMPONENT 0x934A 5 | GL_TRANSFORM_FEEDBACK_BUFFER_INDEX 0x934B 6 | GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE 0x934C 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_explicit_attrib_location: -------------------------------------------------------------------------------- 1 | GL_ARB_explicit_attrib_location 2 | http://www.opengl.org/registry/specs/ARB/explicit_attrib_location.txt 3 | GL_ARB_explicit_attrib_location 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_explicit_uniform_location: -------------------------------------------------------------------------------- 1 | GL_ARB_explicit_uniform_location 2 | http://www.opengl.org/registry/specs/ARB/explicit_uniform_location.txt 3 | GL_ARB_explicit_uniform_location 4 | GL_MAX_UNIFORM_LOCATIONS 0x826E 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_fragment_coord_conventions: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_coord_conventions 2 | http://www.opengl.org/registry/specs/ARB/fragment_coord_conventions.txt 3 | GL_ARB_fragment_coord_conventions 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_fragment_layer_viewport: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_layer_viewport 2 | http://www.opengl.org/registry/specs/ARB/fragment_layer_viewport.txt 3 | GL_ARB_fragment_layer_viewport 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_fragment_program_shadow: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_program_shadow 2 | http://www.opengl.org/registry/specs/ARB/fragment_program_shadow.txt 3 | GL_ARB_fragment_program_shadow 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_fragment_shader: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_shader 2 | http://www.opengl.org/registry/specs/ARB/fragment_shader.txt 3 | GL_ARB_fragment_shader 4 | GL_FRAGMENT_SHADER_ARB 0x8B30 5 | GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB 0x8B49 6 | GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_fragment_shader_interlock: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_shader_interlock 2 | http://www.opengl.org/registry/specs/ARB/fragment_shader_interlock.txt 3 | GL_ARB_fragment_shader_interlock 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GL_ARB_framebuffer_sRGB 2 | http://www.opengl.org/registry/specs/ARB/framebuffer_sRGB.txt 3 | GL_ARB_framebuffer_sRGB 4 | GL_FRAMEBUFFER_SRGB 0x8DB9 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_half_float_pixel: -------------------------------------------------------------------------------- 1 | GL_ARB_half_float_pixel 2 | http://www.opengl.org/registry/specs/ARB/half_float_pixel.txt 3 | GL_ARB_half_float_pixel 4 | GL_HALF_FLOAT_ARB 0x140B 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_half_float_vertex: -------------------------------------------------------------------------------- 1 | GL_ARB_half_float_vertex 2 | http://www.opengl.org/registry/specs/ARB/half_float_vertex.txt 3 | GL_ARB_half_float_vertex 4 | GL_HALF_FLOAT 0x140B 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_internalformat_query: -------------------------------------------------------------------------------- 1 | GL_ARB_internalformat_query 2 | http://www.opengl.org/registry/specs/ARB/internalformat_query.txt 3 | GL_ARB_internalformat_query 4 | GL_NUM_SAMPLE_COUNTS 0x9380 5 | void glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint* params) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_map_buffer_alignment: -------------------------------------------------------------------------------- 1 | GL_ARB_map_buffer_alignment 2 | http://www.opengl.org/registry/specs/ARB/map_buffer_alignment.txt 3 | GL_ARB_map_buffer_alignment 4 | GL_MIN_MAP_BUFFER_ALIGNMENT 0x90BC 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_occlusion_query2: -------------------------------------------------------------------------------- 1 | GL_ARB_occlusion_query2 2 | http://www.opengl.org/registry/specs/ARB/occlusion_query2.txt 3 | GL_ARB_occlusion_query2 4 | GL_ANY_SAMPLES_PASSED 0x8C2F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_parallel_shader_compile: -------------------------------------------------------------------------------- 1 | GL_ARB_parallel_shader_compile 2 | http://www.opengl.org/registry/specs/ARB/parallel_shader_compile.txt 3 | GL_ARB_parallel_shader_compile 4 | GL_MAX_SHADER_COMPILER_THREADS_ARB 0x91B0 5 | GL_COMPLETION_STATUS_ARB 0x91B1 6 | void glMaxShaderCompilerThreadsARB (GLuint count) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_pixel_buffer_object: -------------------------------------------------------------------------------- 1 | GL_ARB_pixel_buffer_object 2 | http://www.opengl.org/registry/specs/ARB/pixel_buffer_object.txt 3 | GL_ARB_pixel_buffer_object 4 | GL_PIXEL_PACK_BUFFER_ARB 0x88EB 5 | GL_PIXEL_UNPACK_BUFFER_ARB 0x88EC 6 | GL_PIXEL_PACK_BUFFER_BINDING_ARB 0x88ED 7 | GL_PIXEL_UNPACK_BUFFER_BINDING_ARB 0x88EF 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_point_sprite: -------------------------------------------------------------------------------- 1 | GL_ARB_point_sprite 2 | http://www.opengl.org/registry/specs/ARB/point_sprite.txt 3 | GL_ARB_point_sprite 4 | GL_POINT_SPRITE_ARB 0x8861 5 | GL_COORD_REPLACE_ARB 0x8862 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_post_depth_coverage: -------------------------------------------------------------------------------- 1 | GL_ARB_post_depth_coverage 2 | http://www.opengl.org/registry/specs/ARB/post_depth_coverage.txt 3 | GL_ARB_post_depth_coverage 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_query_buffer_object: -------------------------------------------------------------------------------- 1 | GL_ARB_query_buffer_object 2 | http://www.opengl.org/registry/specs/ARB/query_buffer_object.txt 3 | GL_ARB_query_buffer_object 4 | GL_QUERY_BUFFER_BARRIER_BIT 0x00008000 5 | GL_QUERY_BUFFER 0x9192 6 | GL_QUERY_BUFFER_BINDING 0x9193 7 | GL_QUERY_RESULT_NO_WAIT 0x9194 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_robust_buffer_access_behavior: -------------------------------------------------------------------------------- 1 | GL_ARB_robust_buffer_access_behavior 2 | http://www.opengl.org/registry/specs/ARB/robust_buffer_access_behavior.txt 3 | GL_ARB_robust_buffer_access_behavior 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_robustness_application_isolation: -------------------------------------------------------------------------------- 1 | GL_ARB_robustness_application_isolation 2 | http://www.opengl.org/registry/specs/ARB/robustness_isolation.txt 3 | GL_ARB_robustness_application_isolation 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_robustness_share_group_isolation: -------------------------------------------------------------------------------- 1 | GL_ARB_robustness_share_group_isolation 2 | http://www.opengl.org/registry/specs/ARB/robustness_isolation.txt 3 | GL_ARB_robustness_share_group_isolation 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_sample_shading: -------------------------------------------------------------------------------- 1 | GL_ARB_sample_shading 2 | http://www.opengl.org/registry/specs/ARB/sample_shading.txt 3 | GL_ARB_sample_shading 4 | GL_SAMPLE_SHADING_ARB 0x8C36 5 | GL_MIN_SAMPLE_SHADING_VALUE_ARB 0x8C37 6 | void glMinSampleShadingARB (GLclampf value) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_seamless_cube_map: -------------------------------------------------------------------------------- 1 | GL_ARB_seamless_cube_map 2 | http://www.opengl.org/registry/specs/ARB/seamless_cube_map.txt 3 | GL_ARB_seamless_cube_map 4 | GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_seamless_cubemap_per_texture: -------------------------------------------------------------------------------- 1 | GL_ARB_seamless_cubemap_per_texture 2 | http://www.opengl.org/registry/specs/ARB/seamless_cubemap_per_texture.txt 3 | GL_ARB_seamless_cubemap_per_texture 4 | GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_atomic_counter_ops: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_atomic_counter_ops 2 | http://www.opengl.org/registry/specs/ARB/shader_atomic_counter_ops.txt 3 | GL_ARB_shader_atomic_counter_ops 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_ballot: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_ballot 2 | http://www.opengl.org/registry/specs/ARB/shader_ballot.txt 3 | GL_ARB_shader_ballot 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_bit_encoding: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_bit_encoding 2 | http://www.opengl.org/registry/specs/ARB/shader_bit_encoding.txt 3 | GL_ARB_shader_bit_encoding 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_clock: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_clock 2 | http://www.opengl.org/registry/specs/ARB/shader_clock.txt 3 | GL_ARB_shader_clock 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_draw_parameters: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_draw_parameters 2 | http://www.opengl.org/registry/specs/ARB/shader_draw_parameters.txt 3 | GL_ARB_shader_draw_parameters 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_group_vote: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_group_vote 2 | http://www.opengl.org/registry/specs/ARB/shader_group_vote.txt 3 | GL_ARB_shader_group_vote 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_image_size: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_image_size 2 | http://www.opengl.org/registry/specs/ARB/shader_image_size.txt 3 | GL_ARB_shader_image_size 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_precision: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_precision 2 | http://www.opengl.org/registry/specs/ARB/shader_precision.txt 3 | GL_ARB_shader_precision 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_stencil_export: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_stencil_export 2 | http://www.opengl.org/registry/specs/ARB/shader_stencil_export.txt 3 | GL_ARB_shader_stencil_export 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_texture_image_samples: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_texture_image_samples 2 | http://www.opengl.org/registry/specs/ARB/shader_texture_image_samples.txt 3 | GL_ARB_shader_texture_image_samples 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_texture_lod: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_texture_lod 2 | http://www.opengl.org/registry/specs/ARB/shader_texture_lod.txt 3 | GL_ARB_shader_texture_lod 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shader_viewport_layer_array: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_viewport_layer_array 2 | http://www.opengl.org/registry/specs/ARB/shader_viewport_layer_array.txt 3 | GL_ARB_shader_viewport_layer_array 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shading_language_100: -------------------------------------------------------------------------------- 1 | GL_ARB_shading_language_100 2 | http://www.opengl.org/registry/specs/ARB/shading_language_100.txt 3 | GL_ARB_shading_language_100 4 | GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shading_language_420pack: -------------------------------------------------------------------------------- 1 | GL_ARB_shading_language_420pack 2 | http://www.opengl.org/registry/specs/ARB/shading_language_420pack.txt 3 | GL_ARB_shading_language_420pack 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shading_language_packing: -------------------------------------------------------------------------------- 1 | GL_ARB_shading_language_packing 2 | http://www.opengl.org/registry/specs/ARB/shading_language_packing.txt 3 | GL_ARB_shading_language_packing 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shadow: -------------------------------------------------------------------------------- 1 | GL_ARB_shadow 2 | http://www.opengl.org/registry/specs/ARB/shadow.txt 3 | GL_ARB_shadow 4 | GL_TEXTURE_COMPARE_MODE_ARB 0x884C 5 | GL_TEXTURE_COMPARE_FUNC_ARB 0x884D 6 | GL_COMPARE_R_TO_TEXTURE_ARB 0x884E 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_shadow_ambient: -------------------------------------------------------------------------------- 1 | GL_ARB_shadow_ambient 2 | http://www.opengl.org/registry/specs/ARB/shadow_ambient.txt 3 | GL_ARB_shadow_ambient 4 | GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_sparse_buffer: -------------------------------------------------------------------------------- 1 | GL_ARB_sparse_buffer 2 | http://www.opengl.org/registry/specs/ARB/sparse_buffer.txt 3 | GL_ARB_sparse_buffer 4 | GL_SPARSE_STORAGE_BIT_ARB 0x0400 5 | GL_SPARSE_BUFFER_PAGE_SIZE_ARB 0x82F8 6 | void glBufferPageCommitmentARB (GLenum target, GLintptr offset, GLsizeiptr size, GLboolean commit) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_sparse_texture2: -------------------------------------------------------------------------------- 1 | GL_ARB_sparse_texture2 2 | http://www.opengl.org/registry/specs/ARB/sparse_texture2.txt 3 | GL_ARB_sparse_texture2 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_sparse_texture_clamp: -------------------------------------------------------------------------------- 1 | GL_ARB_sparse_texture_clamp 2 | http://www.opengl.org/registry/specs/ARB/sparse_texture_clamp.txt 3 | GL_ARB_sparse_texture_clamp 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_stencil_texturing: -------------------------------------------------------------------------------- 1 | GL_ARB_stencil_texturing 2 | http://www.opengl.org/registry/specs/ARB/stencil_texturing.txt 3 | GL_ARB_stencil_texturing 4 | GL_DEPTH_STENCIL_TEXTURE_MODE 0x90EA 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_barrier: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_barrier 2 | http://www.opengl.org/registry/specs/ARB/texture_barrier.txt 3 | GL_ARB_texture_barrier 4 | void glTextureBarrier (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_border_clamp: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_border_clamp 2 | http://www.opengl.org/registry/specs/ARB/texture_border_clamp.txt 3 | GL_ARB_texture_border_clamp 4 | GL_CLAMP_TO_BORDER_ARB 0x812D 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_buffer_object_rgb32: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_buffer_object_rgb32 2 | http://www.opengl.org/registry/specs/ARB/texture_buffer_object_rgb32.txt 3 | GL_ARB_texture_buffer_object_rgb32 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_compression_rgtc: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_compression_rgtc 2 | http://www.opengl.org/registry/specs/ARB/texture_compression_rgtc.txt 3 | GL_ARB_texture_compression_rgtc 4 | GL_COMPRESSED_RED_RGTC1 0x8DBB 5 | GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC 6 | GL_COMPRESSED_RG_RGTC2 0x8DBD 7 | GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_env_add: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_env_add 2 | http://www.opengl.org/registry/specs/ARB/texture_env_add.txt 3 | GL_ARB_texture_env_add 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_env_crossbar: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_env_crossbar 2 | http://www.opengl.org/registry/specs/ARB/texture_env_crossbar.txt 3 | GL_ARB_texture_env_crossbar 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_env_dot3: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_env_dot3 2 | http://www.opengl.org/registry/specs/ARB/texture_env_dot3.txt 3 | GL_ARB_texture_env_dot3 4 | GL_DOT3_RGB_ARB 0x86AE 5 | GL_DOT3_RGBA_ARB 0x86AF 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_filter_minmax: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_filter_minmax 2 | http://www.opengl.org/registry/specs/ARB/texture_filter_minmax.txt 3 | GL_ARB_texture_filter_minmax 4 | GL_TEXTURE_REDUCTION_MODE_ARB 0x9366 5 | GL_WEIGHTED_AVERAGE_ARB 0x9367 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_gather: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_gather 2 | http://www.opengl.org/registry/specs/ARB/texture_gather.txt 3 | GL_ARB_texture_gather 4 | GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5E 5 | GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5F 6 | GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB 0x8F9F 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_mirror_clamp_to_edge: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_mirror_clamp_to_edge 2 | http://www.opengl.org/registry/specs/ARB/texture_mirror_clamp_to_edge.txt 3 | GL_ARB_texture_mirror_clamp_to_edge 4 | GL_MIRROR_CLAMP_TO_EDGE 0x8743 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_mirrored_repeat: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_mirrored_repeat 2 | http://www.opengl.org/registry/specs/ARB/texture_mirrored_repeat.txt 3 | GL_ARB_texture_mirrored_repeat 4 | GL_MIRRORED_REPEAT_ARB 0x8370 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_non_power_of_two: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_non_power_of_two 2 | http://www.opengl.org/registry/specs/ARB/texture_non_power_of_two.txt 3 | GL_ARB_texture_non_power_of_two 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_query_levels: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_query_levels 2 | http://www.opengl.org/registry/specs/ARB/texture_query_levels.txt 3 | GL_ARB_texture_query_levels 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_query_lod: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_query_lod 2 | http://www.opengl.org/registry/specs/ARB/texture_query_lod.txt 3 | GL_ARB_texture_query_lod 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_rgb10_a2ui: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_rgb10_a2ui 2 | http://www.opengl.org/registry/specs/ARB/texture_rgb10_a2ui.txt 3 | GL_ARB_texture_rgb10_a2ui 4 | GL_RGB10_A2UI 0x906F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_stencil8: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_stencil8 2 | http://www.opengl.org/registry/specs/ARB/texture_stencil8.txt 3 | GL_ARB_texture_stencil8 4 | GL_STENCIL_INDEX 0x1901 5 | GL_STENCIL_INDEX8 0x8D48 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_swizzle: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_swizzle 2 | http://www.opengl.org/registry/specs/ARB/texture_swizzle.txt 3 | GL_ARB_texture_swizzle 4 | GL_TEXTURE_SWIZZLE_R 0x8E42 5 | GL_TEXTURE_SWIZZLE_G 0x8E43 6 | GL_TEXTURE_SWIZZLE_B 0x8E44 7 | GL_TEXTURE_SWIZZLE_A 0x8E45 8 | GL_TEXTURE_SWIZZLE_RGBA 0x8E46 9 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_transform_feedback_overflow_query: -------------------------------------------------------------------------------- 1 | GL_ARB_transform_feedback_overflow_query 2 | http://www.opengl.org/registry/specs/ARB/transform_feedback_overflow_query.txt 3 | GL_ARB_transform_feedback_overflow_query 4 | GL_TRANSFORM_FEEDBACK_OVERFLOW_ARB 0x82EC 5 | GL_TRANSFORM_FEEDBACK_STREAM_OVERFLOW_ARB 0x82ED 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_vertex_array_bgra: -------------------------------------------------------------------------------- 1 | GL_ARB_vertex_array_bgra 2 | http://www.opengl.org/registry/specs/ARB/vertex_array_bgra.txt 3 | GL_ARB_vertex_array_bgra 4 | GL_BGRA 0x80E1 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ARB_vertex_type_10f_11f_11f_rev: -------------------------------------------------------------------------------- 1 | GL_ARB_vertex_type_10f_11f_11f_rev 2 | http://www.opengl.org/registry/specs/ARB/vertex_type_10f_11f_11f_rev.txt 3 | GL_ARB_vertex_type_10f_11f_11f_rev 4 | GL_UNSIGNED_INT_10F_11F_11F_REV 0x8C3B 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ATIX_texture_env_combine3: -------------------------------------------------------------------------------- 1 | GL_ATIX_texture_env_combine3 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_texture_env_combine3 4 | GL_MODULATE_ADD_ATIX 0x8744 5 | GL_MODULATE_SIGNED_ADD_ATIX 0x8745 6 | GL_MODULATE_SUBTRACT_ATIX 0x8746 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ATIX_texture_env_route: -------------------------------------------------------------------------------- 1 | GL_ATIX_texture_env_route 2 | http://www.ati.com/developer/sdk/RadeonSDK/Html/Info/ATIX_texture_env_route.txt 3 | GL_ATIX_texture_env_route 4 | GL_SECONDARY_COLOR_ATIX 0x8747 5 | GL_TEXTURE_OUTPUT_RGB_ATIX 0x8748 6 | GL_TEXTURE_OUTPUT_ALPHA_ATIX 0x8749 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ATIX_vertex_shader_output_point_size: -------------------------------------------------------------------------------- 1 | GL_ATIX_vertex_shader_output_point_size 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_vertex_shader_output_point_size 4 | GL_OUTPUT_POINT_SIZE_ATIX 0x610E 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ATI_map_object_buffer: -------------------------------------------------------------------------------- 1 | GL_ATI_map_object_buffer 2 | http://www.opengl.org/registry/specs/ATI/map_object_buffer.txt 3 | GL_ATI_map_object_buffer 4 | void * glMapObjectBufferATI (GLuint buffer) 5 | void glUnmapObjectBufferATI (GLuint buffer) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ATI_meminfo: -------------------------------------------------------------------------------- 1 | GL_ATI_meminfo 2 | http://www.opengl.org/registry/specs/ATI/meminfo.txt 3 | GL_ATI_meminfo 4 | GL_VBO_FREE_MEMORY_ATI 0x87FB 5 | GL_TEXTURE_FREE_MEMORY_ATI 0x87FC 6 | GL_RENDERBUFFER_FREE_MEMORY_ATI 0x87FD 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ATI_shader_texture_lod: -------------------------------------------------------------------------------- 1 | GL_ATI_shader_texture_lod 2 | 3 | GL_ATI_shader_texture_lod 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ATI_text_fragment_shader: -------------------------------------------------------------------------------- 1 | GL_ATI_text_fragment_shader 2 | http://www.opengl.org/registry/specs/ATI/text_fragment_shader.txt 3 | GL_ATI_text_fragment_shader 4 | GL_TEXT_FRAGMENT_SHADER_ATI 0x8200 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ATI_texture_compression_3dc: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_compression_3dc 2 | 3 | GL_ATI_texture_compression_3dc 4 | GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI 0x8837 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ATI_texture_env_combine3: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_env_combine3 2 | http://www.opengl.org/registry/specs/ATI/texture_env_combine3.txt 3 | GL_ATI_texture_env_combine3 4 | GL_MODULATE_ADD_ATI 0x8744 5 | GL_MODULATE_SIGNED_ADD_ATI 0x8745 6 | GL_MODULATE_SUBTRACT_ATI 0x8746 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_ATI_texture_mirror_once: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_mirror_once 2 | http://www.opengl.org/registry/specs/ATI/texture_mirror_once.txt 3 | GL_ATI_texture_mirror_once 4 | GL_MIRROR_CLAMP_ATI 0x8742 5 | GL_MIRROR_CLAMP_TO_EDGE_ATI 0x8743 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_422_pixels: -------------------------------------------------------------------------------- 1 | GL_EXT_422_pixels 2 | http://www.opengl.org/registry/specs/EXT/422_pixels.txt 3 | GL_EXT_422_pixels 4 | GL_422_EXT 0x80CC 5 | GL_422_REV_EXT 0x80CD 6 | GL_422_AVERAGE_EXT 0x80CE 7 | GL_422_REV_AVERAGE_EXT 0x80CF 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_Cg_shader: -------------------------------------------------------------------------------- 1 | GL_EXT_Cg_shader 2 | http://download.nvidia.com/developer/GLSL/GLSL%20Release%20Notes%20for%20Release%2060.pdf 3 | GL_EXT_Cg_shader 4 | GL_CG_VERTEX_SHADER_EXT 0x890E 5 | GL_CG_FRAGMENT_SHADER_EXT 0x890F 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_abgr: -------------------------------------------------------------------------------- 1 | GL_EXT_abgr 2 | http://www.opengl.org/registry/specs/EXT/abgr.txt 3 | GL_EXT_abgr 4 | GL_ABGR_EXT 0x8000 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_bgra: -------------------------------------------------------------------------------- 1 | GL_EXT_bgra 2 | http://www.opengl.org/registry/specs/EXT/bgra.txt 3 | GL_EXT_bgra 4 | GL_BGR_EXT 0x80E0 5 | GL_BGRA_EXT 0x80E1 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_blend_equation_separate: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_equation_separate 2 | http://www.opengl.org/registry/specs/EXT/blend_equation_separate.txt 3 | GL_EXT_blend_equation_separate 4 | GL_BLEND_EQUATION_RGB_EXT 0x8009 5 | GL_BLEND_EQUATION_ALPHA_EXT 0x883D 6 | void glBlendEquationSeparateEXT (GLenum modeRGB, GLenum modeAlpha) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_blend_logic_op: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_logic_op 2 | http://www.opengl.org/registry/specs/EXT/blend_logic_op.txt 3 | GL_EXT_blend_logic_op 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_blend_minmax: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_minmax 2 | http://www.opengl.org/registry/specs/EXT/blend_minmax.txt 3 | GL_EXT_blend_minmax 4 | GL_FUNC_ADD_EXT 0x8006 5 | GL_MIN_EXT 0x8007 6 | GL_MAX_EXT 0x8008 7 | GL_BLEND_EQUATION_EXT 0x8009 8 | void glBlendEquationEXT (GLenum mode) 9 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_blend_subtract: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_subtract 2 | http://www.opengl.org/registry/specs/EXT/blend_subtract.txt 3 | GL_EXT_blend_subtract 4 | GL_FUNC_SUBTRACT_EXT 0x800A 5 | GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_clip_volume_hint: -------------------------------------------------------------------------------- 1 | GL_EXT_clip_volume_hint 2 | http://www.opengl.org/registry/specs/EXT/clip_volume_hint.txt 3 | GL_EXT_clip_volume_hint 4 | GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_cmyka: -------------------------------------------------------------------------------- 1 | GL_EXT_cmyka 2 | http://www.opengl.org/registry/specs/EXT/cmyka.txt 3 | GL_EXT_cmyka 4 | GL_CMYK_EXT 0x800C 5 | GL_CMYKA_EXT 0x800D 6 | GL_PACK_CMYK_HINT_EXT 0x800E 7 | GL_UNPACK_CMYK_HINT_EXT 0x800F 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_compiled_vertex_array: -------------------------------------------------------------------------------- 1 | GL_EXT_compiled_vertex_array 2 | http://www.opengl.org/registry/specs/EXT/compiled_vertex_array.txt 3 | GL_EXT_compiled_vertex_array 4 | GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8 5 | GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9 6 | void glLockArraysEXT (GLint first, GLsizei count) 7 | void glUnlockArraysEXT (void) 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_debug_marker: -------------------------------------------------------------------------------- 1 | GL_EXT_debug_marker 2 | http://www.khronos.org/registry/gles/extensions/EXT/EXT_debug_marker.txt 3 | GL_EXT_debug_marker 4 | void glInsertEventMarkerEXT (GLsizei length, const GLchar* marker) 5 | void glPushGroupMarkerEXT (GLsizei length, const GLchar* marker) 6 | void glPopGroupMarkerEXT (void) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_depth_bounds_test: -------------------------------------------------------------------------------- 1 | GL_EXT_depth_bounds_test 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_depth_bounds_test.txt 3 | GL_EXT_depth_bounds_test 4 | GL_DEPTH_BOUNDS_TEST_EXT 0x8890 5 | GL_DEPTH_BOUNDS_EXT 0x8891 6 | void glDepthBoundsEXT (GLclampd zmin, GLclampd zmax) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_framebuffer_multisample_blit_scaled: -------------------------------------------------------------------------------- 1 | GL_EXT_framebuffer_multisample_blit_scaled 2 | http://www.opengl.org/registry/specs/EXT/framebuffer_multisample_blit_scaled.txt 3 | GL_EXT_framebuffer_multisample_blit_scaled 4 | GL_SCALED_RESOLVE_FASTEST_EXT 0x90BA 5 | GL_SCALED_RESOLVE_NICEST_EXT 0x90BB 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GL_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | GL_EXT_framebuffer_sRGB 4 | GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 5 | GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_index_array_formats: -------------------------------------------------------------------------------- 1 | GL_EXT_index_array_formats 2 | http://www.opengl.org/registry/specs/EXT/index_array_formats.txt 3 | GL_EXT_index_array_formats 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_index_func: -------------------------------------------------------------------------------- 1 | GL_EXT_index_func 2 | http://www.opengl.org/registry/specs/EXT/index_func.txt 3 | GL_EXT_index_func 4 | void glIndexFuncEXT (GLenum func, GLfloat ref) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_index_material: -------------------------------------------------------------------------------- 1 | GL_EXT_index_material 2 | http://www.opengl.org/registry/specs/EXT/index_material.txt 3 | GL_EXT_index_material 4 | void glIndexMaterialEXT (GLenum face, GLenum mode) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_index_texture: -------------------------------------------------------------------------------- 1 | GL_EXT_index_texture 2 | http://www.opengl.org/registry/specs/EXT/index_texture.txt 3 | GL_EXT_index_texture 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_misc_attribute: -------------------------------------------------------------------------------- 1 | GL_EXT_misc_attribute 2 | http://www.opengl.org/registry/specs/EXT/misc_attribute.txt 3 | GL_EXT_misc_attribute 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_packed_depth_stencil: -------------------------------------------------------------------------------- 1 | GL_EXT_packed_depth_stencil 2 | http://www.opengl.org/registry/specs/EXT/packed_depth_stencil.txt 3 | GL_EXT_packed_depth_stencil 4 | GL_DEPTH_STENCIL_EXT 0x84F9 5 | GL_UNSIGNED_INT_24_8_EXT 0x84FA 6 | GL_DEPTH24_STENCIL8_EXT 0x88F0 7 | GL_TEXTURE_STENCIL_SIZE_EXT 0x88F1 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_packed_float: -------------------------------------------------------------------------------- 1 | GL_EXT_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | GL_EXT_packed_float 4 | GL_R11F_G11F_B10F_EXT 0x8C3A 5 | GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B 6 | GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_packed_pixels: -------------------------------------------------------------------------------- 1 | GL_EXT_packed_pixels 2 | http://www.opengl.org/registry/specs/EXT/packed_pixels.txt 3 | GL_EXT_packed_pixels 4 | GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032 5 | GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033 6 | GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034 7 | GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035 8 | GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036 9 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_pixel_buffer_object: -------------------------------------------------------------------------------- 1 | GL_EXT_pixel_buffer_object 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_pixel_buffer_object.txt 3 | GL_EXT_pixel_buffer_object 4 | GL_PIXEL_PACK_BUFFER_EXT 0x88EB 5 | GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC 6 | GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED 7 | GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_pixel_transform_color_table: -------------------------------------------------------------------------------- 1 | GL_EXT_pixel_transform_color_table 2 | http://www.opengl.org/registry/specs/EXT/pixel_transform_color_table.txt 3 | GL_EXT_pixel_transform_color_table 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_polygon_offset: -------------------------------------------------------------------------------- 1 | GL_EXT_polygon_offset 2 | http://www.opengl.org/registry/specs/EXT/polygon_offset.txt 3 | GL_EXT_polygon_offset 4 | GL_POLYGON_OFFSET_EXT 0x8037 5 | GL_POLYGON_OFFSET_FACTOR_EXT 0x8038 6 | GL_POLYGON_OFFSET_BIAS_EXT 0x8039 7 | void glPolygonOffsetEXT (GLfloat factor, GLfloat bias) 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_polygon_offset_clamp: -------------------------------------------------------------------------------- 1 | GL_EXT_polygon_offset_clamp 2 | http://www.opengl.org/registry/specs/EXT/polygon_offset_clamp.txt 3 | GL_EXT_polygon_offset_clamp 4 | GL_POLYGON_OFFSET_CLAMP_EXT 0x8E1B 5 | void glPolygonOffsetClampEXT (GLfloat factor, GLfloat units, GLfloat clamp) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_post_depth_coverage: -------------------------------------------------------------------------------- 1 | GL_EXT_post_depth_coverage 2 | http://www.opengl.org/registry/specs/EXT/post_depth_coverage.txt 3 | GL_EXT_post_depth_coverage 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_rescale_normal: -------------------------------------------------------------------------------- 1 | GL_EXT_rescale_normal 2 | http://www.opengl.org/registry/specs/EXT/rescale_normal.txt 3 | GL_EXT_rescale_normal 4 | GL_RESCALE_NORMAL_EXT 0x803A 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_scene_marker: -------------------------------------------------------------------------------- 1 | GL_EXT_scene_marker 2 | http://www.opengl.org/registry/specs/EXT/scene_marker.txt 3 | GL_EXT_scene_marker 4 | void glBeginSceneEXT (void) 5 | void glEndSceneEXT (void) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_separate_specular_color: -------------------------------------------------------------------------------- 1 | GL_EXT_separate_specular_color 2 | http://www.opengl.org/registry/specs/EXT/separate_specular_color.txt 3 | GL_EXT_separate_specular_color 4 | GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8 5 | GL_SINGLE_COLOR_EXT 0x81F9 6 | GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_shader_image_load_formatted: -------------------------------------------------------------------------------- 1 | GL_EXT_shader_image_load_formatted 2 | http://www.opengl.org/registry/specs/EXT/shader_image_load_formatted.txt 3 | GL_EXT_shader_image_load_formatted 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_shader_integer_mix: -------------------------------------------------------------------------------- 1 | GL_EXT_shader_integer_mix 2 | http://www.opengl.org/registry/specs/EXT/shader_integer_mix.txt 3 | GL_EXT_shader_integer_mix 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_shadow_funcs: -------------------------------------------------------------------------------- 1 | GL_EXT_shadow_funcs 2 | http://www.opengl.org/registry/specs/EXT/shadow_funcs.txt 3 | GL_EXT_shadow_funcs 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_shared_texture_palette: -------------------------------------------------------------------------------- 1 | GL_EXT_shared_texture_palette 2 | http://www.opengl.org/registry/specs/EXT/shared_texture_palette.txt 3 | GL_EXT_shared_texture_palette 4 | GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_sparse_texture2: -------------------------------------------------------------------------------- 1 | GL_EXT_sparse_texture2 2 | http://www.opengl.org/registry/specs/EXT/sparse_texture2.txt 3 | GL_EXT_sparse_texture2 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_stencil_clear_tag: -------------------------------------------------------------------------------- 1 | GL_EXT_stencil_clear_tag 2 | http://www.opengl.org/registry/specs/EXT/stencil_clear_tag.txt 3 | GL_EXT_stencil_clear_tag 4 | GL_STENCIL_TAG_BITS_EXT 0x88F2 5 | GL_STENCIL_CLEAR_TAG_VALUE_EXT 0x88F3 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_stencil_two_side: -------------------------------------------------------------------------------- 1 | GL_EXT_stencil_two_side 2 | http://www.opengl.org/registry/specs/EXT/stencil_two_side.txt 3 | GL_EXT_stencil_two_side 4 | GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910 5 | GL_ACTIVE_STENCIL_FACE_EXT 0x8911 6 | void glActiveStencilFaceEXT (GLenum face) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_stencil_wrap: -------------------------------------------------------------------------------- 1 | GL_EXT_stencil_wrap 2 | http://www.opengl.org/registry/specs/EXT/stencil_wrap.txt 3 | GL_EXT_stencil_wrap 4 | GL_INCR_WRAP_EXT 0x8507 5 | GL_DECR_WRAP_EXT 0x8508 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_compression_dxt1: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_dxt1 2 | http://www.opengl.org/registry/specs/EXT/texture_compression_dxt1.txt 3 | GL_EXT_texture_compression_dxt1 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_edge_clamp: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_edge_clamp 2 | http://www.opengl.org/developers/documentation/Version1.2/1.2specs/texture_edge_clamp.txt 3 | GL_EXT_texture_edge_clamp 4 | GL_CLAMP_TO_EDGE_EXT 0x812F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_env: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_env 2 | http://www.opengl.org/registry/specs/EXT/texture_env.txt 3 | GL_EXT_texture_env 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_env_add: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_env_add 2 | http://www.opengl.org/registry/specs/EXT/texture_env_add.txt 3 | GL_EXT_texture_env_add 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_env_dot3: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_env_dot3 2 | http://www.opengl.org/registry/specs/EXT/texture_env_dot3.txt 3 | GL_EXT_texture_env_dot3 4 | GL_DOT3_RGB_EXT 0x8740 5 | GL_DOT3_RGBA_EXT 0x8741 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_filter_anisotropic: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_filter_anisotropic 2 | http://www.opengl.org/registry/specs/EXT/texture_filter_anisotropic.txt 3 | GL_EXT_texture_filter_anisotropic 4 | GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE 5 | GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_filter_minmax: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_filter_minmax 2 | http://www.opengl.org/registry/specs/EXT/texture_filter_minmax.txt 3 | GL_EXT_texture_filter_minmax 4 | GL_TEXTURE_REDUCTION_MODE_EXT 0x9366 5 | GL_WEIGHTED_AVERAGE_EXT 0x9367 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_lod_bias: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_lod_bias 2 | http://www.opengl.org/registry/specs/EXT/texture_lod_bias.txt 3 | GL_EXT_texture_lod_bias 4 | GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD 5 | GL_TEXTURE_FILTER_CONTROL_EXT 0x8500 6 | GL_TEXTURE_LOD_BIAS_EXT 0x8501 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_mirror_clamp: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_mirror_clamp 2 | http://www.opengl.org/registry/specs/EXT/texture_mirror_clamp.txt 3 | GL_EXT_texture_mirror_clamp 4 | GL_MIRROR_CLAMP_EXT 0x8742 5 | GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 6 | GL_MIRROR_CLAMP_TO_BORDER_EXT 0x8912 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_perturb_normal: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_perturb_normal 2 | http://www.opengl.org/registry/specs/EXT/texture_perturb_normal.txt 3 | GL_EXT_texture_perturb_normal 4 | GL_PERTURB_EXT 0x85AE 5 | GL_TEXTURE_NORMAL_EXT 0x85AF 6 | void glTextureNormalEXT (GLenum mode) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_rectangle: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_rectangle 2 | http://developer.apple.com/opengl/extensions/ext_texture_rectangle.html 3 | GL_EXT_texture_rectangle 4 | GL_TEXTURE_RECTANGLE_EXT 0x84F5 5 | GL_TEXTURE_BINDING_RECTANGLE_EXT 0x84F6 6 | GL_PROXY_TEXTURE_RECTANGLE_EXT 0x84F7 7 | GL_MAX_RECTANGLE_TEXTURE_SIZE_EXT 0x84F8 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_sRGB_decode: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_sRGB_decode 2 | http://www.opengl.org/registry/specs/EXT/texture_sRGB_decode.txt 3 | GL_EXT_texture_sRGB_decode 4 | GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 5 | GL_DECODE_EXT 0x8A49 6 | GL_SKIP_DECODE_EXT 0x8A4A 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_shared_exponent: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_shared_exponent 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_shared_exponent.txt 3 | GL_EXT_texture_shared_exponent 4 | GL_RGB9_E5_EXT 0x8C3D 5 | GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E 6 | GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_swizzle: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_swizzle 2 | http://www.opengl.org/registry/specs/EXT/texture_swizzle.txt 3 | GL_EXT_texture_swizzle 4 | GL_TEXTURE_SWIZZLE_R_EXT 0x8E42 5 | GL_TEXTURE_SWIZZLE_G_EXT 0x8E43 6 | GL_TEXTURE_SWIZZLE_B_EXT 0x8E44 7 | GL_TEXTURE_SWIZZLE_A_EXT 0x8E45 8 | GL_TEXTURE_SWIZZLE_RGBA_EXT 0x8E46 9 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_timer_query: -------------------------------------------------------------------------------- 1 | GL_EXT_timer_query 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_timer_query.txt 3 | GL_EXT_timer_query 4 | GL_TIME_ELAPSED_EXT 0x88BF 5 | void glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64EXT *params) 6 | void glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64EXT *params) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_vertex_array_bgra: -------------------------------------------------------------------------------- 1 | GL_EXT_vertex_array_bgra 2 | http://www.opengl.org/registry/specs/EXT/vertex_array_bgra.txt 3 | GL_EXT_vertex_array_bgra 4 | GL_BGRA 0x80E1 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_EXT_x11_sync_object: -------------------------------------------------------------------------------- 1 | GL_EXT_x11_sync_object 2 | http://www.opengl.org/registry/specs/EXT/x11_sync_object.txt 3 | GL_EXT_x11_sync_object 4 | GL_SYNC_X11_FENCE_EXT 0x90E1 5 | GLsync glImportSyncEXT (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_GREMEDY_frame_terminator: -------------------------------------------------------------------------------- 1 | GL_GREMEDY_frame_terminator 2 | http://www.opengl.org/registry/specs/GREMEDY/frame_terminator.txt 3 | GL_GREMEDY_frame_terminator 4 | void glFrameTerminatorGREMEDY (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_GREMEDY_string_marker: -------------------------------------------------------------------------------- 1 | GL_GREMEDY_string_marker 2 | http://www.opengl.org/registry/specs/GREMEDY/string_marker.txt 3 | GL_GREMEDY_string_marker 4 | void glStringMarkerGREMEDY (GLsizei len, const void *string) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_HP_convolution_border_modes: -------------------------------------------------------------------------------- 1 | GL_HP_convolution_border_modes 2 | http://www.opengl.org/registry/specs/HP/convolution_border_modes.txt 3 | GL_HP_convolution_border_modes 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_HP_occlusion_test: -------------------------------------------------------------------------------- 1 | GL_HP_occlusion_test 2 | http://www.opengl.org/registry/specs/HP/occlusion_test.txt 3 | GL_HP_occlusion_test 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_HP_texture_lighting: -------------------------------------------------------------------------------- 1 | GL_HP_texture_lighting 2 | http://www.opengl.org/registry/specs/HP/texture_lighting.txt 3 | GL_HP_texture_lighting 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_IBM_cull_vertex: -------------------------------------------------------------------------------- 1 | GL_IBM_cull_vertex 2 | http://www.opengl.org/registry/specs/IBM/cull_vertex.txt 3 | GL_IBM_cull_vertex 4 | GL_CULL_VERTEX_IBM 103050 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_IBM_rasterpos_clip: -------------------------------------------------------------------------------- 1 | GL_IBM_rasterpos_clip 2 | http://www.opengl.org/registry/specs/IBM/rasterpos_clip.txt 3 | GL_IBM_rasterpos_clip 4 | GL_RASTER_POSITION_UNCLIPPED_IBM 103010 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_IBM_static_data: -------------------------------------------------------------------------------- 1 | GL_IBM_static_data 2 | http://www.opengl.org/registry/specs/IBM/static_data.txt 3 | GL_IBM_static_data 4 | GL_ALL_STATIC_DATA_IBM 103060 5 | GL_STATIC_VERTEX_ARRAY_IBM 103061 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_IBM_texture_mirrored_repeat: -------------------------------------------------------------------------------- 1 | GL_IBM_texture_mirrored_repeat 2 | http://www.opengl.org/registry/specs/IBM/texture_mirrored_repeat.txt 3 | GL_IBM_texture_mirrored_repeat 4 | GL_MIRRORED_REPEAT_IBM 0x8370 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_INGR_interlace_read: -------------------------------------------------------------------------------- 1 | GL_INGR_interlace_read 2 | http://www.opengl.org/registry/specs/INGR/interlace_read.txt 3 | GL_INGR_interlace_read 4 | GL_INTERLACE_READ_INGR 0x8568 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_INTEL_fragment_shader_ordering: -------------------------------------------------------------------------------- 1 | GL_INTEL_fragment_shader_ordering 2 | http://www.opengl.org/registry/specs/INTEL/fragment_shader_ordering.txt 3 | GL_INTEL_fragment_shader_ordering 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_INTEL_framebuffer_CMAA: -------------------------------------------------------------------------------- 1 | GL_INTEL_framebuffer_CMAA 2 | http://www.opengl.org/registry/specs/INTEL/framebuffer_CMAA.txt 3 | GL_INTEL_framebuffer_CMAA 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_INTEL_texture_scissor: -------------------------------------------------------------------------------- 1 | GL_INTEL_texture_scissor 2 | http://www.opengl.org/registry/specs/INTEL/texture_scissor.txt 3 | GL_INTEL_texture_scissor 4 | void glTexScissorFuncINTEL (GLenum target, GLenum lfunc, GLenum hfunc) 5 | void glTexScissorINTEL (GLenum target, GLclampf tlow, GLclampf thigh) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_KHR_blend_equation_advanced_coherent: -------------------------------------------------------------------------------- 1 | GL_KHR_blend_equation_advanced_coherent 2 | http://www.opengl.org/registry/specs/KHR/blend_equation_advanced.txt 3 | GL_KHR_blend_equation_advanced_coherent 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_KHR_context_flush_control: -------------------------------------------------------------------------------- 1 | GL_KHR_context_flush_control 2 | http://www.opengl.org/registry/specs/KHR/context_flush_control.txt 3 | GL_KHR_context_flush_control 4 | GL_CONTEXT_RELEASE_BEHAVIOR 0x82FB 5 | GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH 0x82FC 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_KHR_no_error: -------------------------------------------------------------------------------- 1 | GL_KHR_no_error 2 | http://www.opengl.org/registry/specs/KHR/no_error.txt 3 | GL_KHR_no_error 4 | GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_KHR_robust_buffer_access_behavior: -------------------------------------------------------------------------------- 1 | GL_KHR_robust_buffer_access_behavior 2 | http://www.opengl.org/registry/specs/KHR/robust_buffer_access_behavior.txt 3 | GL_KHR_robust_buffer_access_behavior 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_MESA_pack_invert: -------------------------------------------------------------------------------- 1 | GL_MESA_pack_invert 2 | http://www.opengl.org/registry/specs/MESA/pack_invert.txt 3 | GL_MESA_pack_invert 4 | GL_PACK_INVERT_MESA 0x8758 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_MESA_resize_buffers: -------------------------------------------------------------------------------- 1 | GL_MESA_resize_buffers 2 | http://www.opengl.org/registry/specs/MESA/resize_buffers.txt 3 | GL_MESA_resize_buffers 4 | void glResizeBuffersMESA (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_MESA_ycbcr_texture: -------------------------------------------------------------------------------- 1 | GL_MESA_ycbcr_texture 2 | http://www.opengl.org/registry/specs/MESA/ycbcr_texture.txt 3 | GL_MESA_ycbcr_texture 4 | GL_UNSIGNED_SHORT_8_8_MESA 0x85BA 5 | GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB 6 | GL_YCBCR_MESA 0x8757 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NVX_conditional_render: -------------------------------------------------------------------------------- 1 | GL_NVX_conditional_render 2 | http://www.opengl.org/registry/specs/NVX/nvx_conditional_render.txt 3 | GL_NVX_conditional_render 4 | void glBeginConditionalRenderNVX (GLuint id) 5 | void glEndConditionalRenderNVX (void) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_blend_equation_advanced_coherent: -------------------------------------------------------------------------------- 1 | GL_NV_blend_equation_advanced_coherent 2 | http://www.opengl.org/registry/specs/NV/blend_equation_advanced.txt 3 | GL_NV_blend_equation_advanced_coherent 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_blend_square: -------------------------------------------------------------------------------- 1 | GL_NV_blend_square 2 | http://www.opengl.org/registry/specs/NV/blend_square.txt 3 | GL_NV_blend_square 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_compute_program5: -------------------------------------------------------------------------------- 1 | GL_NV_compute_program5 2 | http://www.opengl.org/registry/specs/NV/compute_program5.txt 3 | GL_NV_compute_program5 4 | GL_COMPUTE_PROGRAM_NV 0x90FB 5 | GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV 0x90FC 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_copy_depth_to_color: -------------------------------------------------------------------------------- 1 | GL_NV_copy_depth_to_color 2 | http://www.opengl.org/registry/specs/NV/copy_depth_to_color.txt 3 | GL_NV_copy_depth_to_color 4 | GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E 5 | GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_deep_texture3D: -------------------------------------------------------------------------------- 1 | GL_NV_deep_texture3D 2 | http://www.opengl.org/registry/specs/NV/deep_texture3D.txt 3 | GL_NV_deep_texture3D 4 | GL_MAX_DEEP_3D_TEXTURE_WIDTH_HEIGHT_NV 0x90D0 5 | GL_MAX_DEEP_3D_TEXTURE_DEPTH_NV 0x90D1 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_depth_clamp: -------------------------------------------------------------------------------- 1 | GL_NV_depth_clamp 2 | http://www.opengl.org/registry/specs/NV/depth_clamp.txt 3 | GL_NV_depth_clamp 4 | GL_DEPTH_CLAMP_NV 0x864F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_depth_range_unclamped: -------------------------------------------------------------------------------- 1 | GL_NV_depth_range_unclamped 2 | 3 | GL_NV_depth_range_unclamped 4 | GL_SAMPLE_COUNT_BITS_NV 0x8864 5 | GL_CURRENT_SAMPLE_COUNT_QUERY_NV 0x8865 6 | GL_QUERY_RESULT_NV 0x8866 7 | GL_QUERY_RESULT_AVAILABLE_NV 0x8867 8 | GL_SAMPLE_COUNT_NV 0x8914 9 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_draw_texture: -------------------------------------------------------------------------------- 1 | GL_NV_draw_texture 2 | http://www.opengl.org/registry/specs/NV/draw_texture.txt 3 | GL_NV_draw_texture 4 | void glDrawTextureNV (GLuint texture, GLuint sampler, GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, GLfloat z, GLfloat s0, GLfloat t0, GLfloat s1, GLfloat t1) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_fill_rectangle: -------------------------------------------------------------------------------- 1 | GL_NV_fill_rectangle 2 | http://www.opengl.org/registry/specs/NV/fill_rectangle.txt 3 | GL_NV_fill_rectangle 4 | GL_FILL_RECTANGLE_NV 0x933C 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_fog_distance: -------------------------------------------------------------------------------- 1 | GL_NV_fog_distance 2 | http://www.opengl.org/registry/specs/NV/fog_distance.txt 3 | GL_NV_fog_distance 4 | GL_FOG_DISTANCE_MODE_NV 0x855A 5 | GL_EYE_RADIAL_NV 0x855B 6 | GL_EYE_PLANE_ABSOLUTE_NV 0x855C 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_fragment_coverage_to_color: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_coverage_to_color 2 | http://www.opengl.org/registry/specs/NV/fragment_coverage_to_color.txt 3 | GL_NV_fragment_coverage_to_color 4 | GL_FRAGMENT_COVERAGE_TO_COLOR_NV 0x92DD 5 | GL_FRAGMENT_COVERAGE_COLOR_NV 0x92DE 6 | void glFragmentCoverageColorNV (GLuint color) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_fragment_program4: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_fragment_program4.txt 3 | GL_NV_gpu_program4 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_fragment_program_option: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program_option 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_fragment_program_option.txt 3 | GL_NV_fragment_program_option 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_fragment_shader_interlock: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_shader_interlock 2 | http://www.opengl.org/registry/specs/NV/fragment_shader_interlock.txt 3 | GL_NV_fragment_shader_interlock 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_geometry_shader4: -------------------------------------------------------------------------------- 1 | GL_NV_geometry_shader4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_geometry_shader4.txt 3 | GL_NV_geometry_shader4 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_geometry_shader_passthrough: -------------------------------------------------------------------------------- 1 | GL_NV_geometry_shader_passthrough 2 | http://www.opengl.org/registry/specs/NV/geometry_shader_passthrough.txt 3 | GL_NV_geometry_shader_passthrough 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_gpu_program5_mem_extended: -------------------------------------------------------------------------------- 1 | GL_NV_gpu_program5_mem_extended 2 | http://www.opengl.org/registry/specs/NV/gpu_program5_mem_extended.txt 3 | GL_NV_gpu_program5_mem_extended 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_gpu_program_fp64: -------------------------------------------------------------------------------- 1 | GL_NV_gpu_program_fp64 2 | http://www.opengl.org/registry/specs/NV/gpu_program5.txt 3 | GL_NV_gpu_program_fp64 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_light_max_exponent: -------------------------------------------------------------------------------- 1 | GL_NV_light_max_exponent 2 | http://www.opengl.org/registry/specs/NV/light_max_exponent.txt 3 | GL_NV_light_max_exponent 4 | GL_MAX_SHININESS_NV 0x8504 5 | GL_MAX_SPOT_EXPONENT_NV 0x8505 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_multisample_coverage: -------------------------------------------------------------------------------- 1 | GL_NV_multisample_coverage 2 | http://www.opengl.org/registry/specs/NV/multisample_coverage.txt 3 | GL_NV_multisample_coverage 4 | GL_COLOR_SAMPLES_NV 0x8E20 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_multisample_filter_hint: -------------------------------------------------------------------------------- 1 | GL_NV_multisample_filter_hint 2 | http://www.opengl.org/registry/specs/NV/multisample_filter_hint.txt 3 | GL_NV_multisample_filter_hint 4 | GL_MULTISAMPLE_FILTER_HINT_NV 0x8534 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_packed_depth_stencil: -------------------------------------------------------------------------------- 1 | GL_NV_packed_depth_stencil 2 | http://www.opengl.org/registry/specs/NV/packed_depth_stencil.txt 3 | GL_NV_packed_depth_stencil 4 | GL_DEPTH_STENCIL_NV 0x84F9 5 | GL_UNSIGNED_INT_24_8_NV 0x84FA 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_parameter_buffer_object2: -------------------------------------------------------------------------------- 1 | GL_NV_parameter_buffer_object2 2 | http://www.opengl.org/registry/specs/NV/parameter_buffer_object2.txt 3 | GL_NV_parameter_buffer_object2 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_path_rendering_shared_edge: -------------------------------------------------------------------------------- 1 | GL_NV_path_rendering_shared_edge 2 | http://www.opengl.org/registry/specs/NV/path_rendering_shared_edge.txt 3 | GL_NV_path_rendering_shared_edge 4 | GL_SHARED_EDGE_NV 0xC0 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_primitive_restart: -------------------------------------------------------------------------------- 1 | GL_NV_primitive_restart 2 | http://www.opengl.org/registry/specs/NV/primitive_restart.txt 3 | GL_NV_primitive_restart 4 | GL_PRIMITIVE_RESTART_NV 0x8558 5 | GL_PRIMITIVE_RESTART_INDEX_NV 0x8559 6 | void glPrimitiveRestartIndexNV (GLuint index) 7 | void glPrimitiveRestartNV (void) 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_sample_mask_override_coverage: -------------------------------------------------------------------------------- 1 | GL_NV_sample_mask_override_coverage 2 | http://www.opengl.org/registry/specs/NV/sample_mask_override_coverage.txt 3 | GL_NV_sample_mask_override_coverage 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_shader_atomic_counters: -------------------------------------------------------------------------------- 1 | GL_NV_shader_atomic_counters 2 | http://www.opengl.org/registry/specs/NV/shader_atomic_counters.txt 3 | GL_NV_shader_atomic_counters 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_shader_atomic_float: -------------------------------------------------------------------------------- 1 | GL_NV_shader_atomic_float 2 | http://www.opengl.org/registry/specs/NV/shader_atomic_float.txt 3 | GL_NV_shader_atomic_float 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_shader_atomic_fp16_vector: -------------------------------------------------------------------------------- 1 | GL_NV_shader_atomic_fp16_vector 2 | http://www.opengl.org/registry/specs/NV/shader_atomic_fp16_vector.txt 3 | GL_NV_shader_atomic_fp16_vector 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_shader_atomic_int64: -------------------------------------------------------------------------------- 1 | GL_NV_shader_atomic_int64 2 | http://www.opengl.org/registry/specs/NV/shader_atomic_int64.txt 3 | GL_NV_shader_atomic_int64 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_shader_storage_buffer_object: -------------------------------------------------------------------------------- 1 | GL_NV_shader_storage_buffer_object 2 | http://www.opengl.org/registry/specs/NV/shader_storage_buffer_object.txt 3 | GL_NV_shader_storage_buffer_object 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_shader_thread_group: -------------------------------------------------------------------------------- 1 | GL_NV_shader_thread_group 2 | http://www.opengl.org/registry/specs/NV/shader_thread_group.txt 3 | GL_NV_shader_thread_group 4 | GL_WARP_SIZE_NV 0x9339 5 | GL_WARPS_PER_SM_NV 0x933A 6 | GL_SM_COUNT_NV 0x933B 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_shader_thread_shuffle: -------------------------------------------------------------------------------- 1 | GL_NV_shader_thread_shuffle 2 | http://www.opengl.org/registry/specs/NV/shader_thread_shuffle.txt 3 | GL_NV_shader_thread_shuffle 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_texgen_emboss: -------------------------------------------------------------------------------- 1 | GL_NV_texgen_emboss 2 | http://www.opengl.org/registry/specs/NV/texgen_emboss.txt 3 | GL_NV_texgen_emboss 4 | GL_EMBOSS_LIGHT_NV 0x855D 5 | GL_EMBOSS_CONSTANT_NV 0x855E 6 | GL_EMBOSS_MAP_NV 0x855F 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_texgen_reflection: -------------------------------------------------------------------------------- 1 | GL_NV_texgen_reflection 2 | http://www.opengl.org/registry/specs/NV/texgen_reflection.txt 3 | GL_NV_texgen_reflection 4 | GL_NORMAL_MAP_NV 0x8511 5 | GL_REFLECTION_MAP_NV 0x8512 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_texture_barrier: -------------------------------------------------------------------------------- 1 | GL_NV_texture_barrier 2 | http://www.opengl.org/registry/specs/NV/texture_barrier.txt 3 | GL_NV_texture_barrier 4 | void glTextureBarrierNV (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_texture_compression_vtc: -------------------------------------------------------------------------------- 1 | GL_NV_texture_compression_vtc 2 | http://www.opengl.org/registry/specs/NV/texture_compression_vtc.txt 3 | GL_NV_texture_compression_vtc 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_texture_env_combine4: -------------------------------------------------------------------------------- 1 | GL_NV_texture_env_combine4 2 | http://www.opengl.org/registry/specs/NV/texture_env_combine4.txt 3 | GL_NV_texture_env_combine4 4 | GL_COMBINE4_NV 0x8503 5 | GL_SOURCE3_RGB_NV 0x8583 6 | GL_SOURCE3_ALPHA_NV 0x858B 7 | GL_OPERAND3_RGB_NV 0x8593 8 | GL_OPERAND3_ALPHA_NV 0x859B 9 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_texture_expand_normal: -------------------------------------------------------------------------------- 1 | GL_NV_texture_expand_normal 2 | http://www.opengl.org/registry/specs/NV/texture_expand_normal.txt 3 | GL_NV_texture_expand_normal 4 | GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_texture_rectangle: -------------------------------------------------------------------------------- 1 | GL_NV_texture_rectangle 2 | http://www.opengl.org/registry/specs/NV/texture_rectangle.txt 3 | GL_NV_texture_rectangle 4 | GL_TEXTURE_RECTANGLE_NV 0x84F5 5 | GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6 6 | GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7 7 | GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_uniform_buffer_unified_memory: -------------------------------------------------------------------------------- 1 | GL_NV_uniform_buffer_unified_memory 2 | http://www.opengl.org/registry/specs/NV/uniform_buffer_unified_memory.txt 3 | GL_NV_uniform_buffer_unified_memory 4 | GL_UNIFORM_BUFFER_UNIFIED_NV 0x936E 5 | GL_UNIFORM_BUFFER_ADDRESS_NV 0x936F 6 | GL_UNIFORM_BUFFER_LENGTH_NV 0x9370 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_vertex_array_range2: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_array_range2 2 | http://www.opengl.org/registry/specs/NV/vertex_array_range2.txt 3 | GL_NV_vertex_array_range2 4 | GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_vertex_program1_1: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program1_1 2 | http://www.opengl.org/registry/specs/NV/vertex_program1_1.txt 3 | GL_NV_vertex_program1_1 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_vertex_program2: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program2 2 | http://www.opengl.org/registry/specs/NV/vertex_program2.txt 3 | GL_NV_vertex_program2 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_vertex_program2_option: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program2_option 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_vertex_program2_option.txt 3 | GL_NV_vertex_program2_option 4 | GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 5 | GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_vertex_program3: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program3 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_vertex_program3.txt 3 | GL_NV_vertex_program3 4 | MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_vertex_program4: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_vertex_program4.txt 3 | GL_NV_gpu_program4 4 | GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_NV_viewport_array2: -------------------------------------------------------------------------------- 1 | GL_NV_viewport_array2 2 | http://www.opengl.org/registry/specs/NV/viewport_array2.txt 3 | GL_NV_viewport_array2 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_OES_byte_coordinates: -------------------------------------------------------------------------------- 1 | GL_OES_byte_coordinates 2 | http://www.opengl.org/registry/specs/OES/OES_byte_coordinates.txt 3 | GL_OES_byte_coordinates 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_OES_read_format: -------------------------------------------------------------------------------- 1 | GL_OES_read_format 2 | http://www.opengl.org/registry/specs/OES/OES_read_format.txt 3 | GL_OES_read_format 4 | GL_IMPLEMENTATION_COLOR_READ_TYPE_OES 0x8B9A 5 | GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES 0x8B9B 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_OML_interlace: -------------------------------------------------------------------------------- 1 | GL_OML_interlace 2 | http://www.opengl.org/registry/specs/OML/interlace.txt 3 | GL_OML_interlace 4 | GL_INTERLACE_OML 0x8980 5 | GL_INTERLACE_READ_OML 0x8981 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_OML_resample: -------------------------------------------------------------------------------- 1 | GL_OML_resample 2 | http://www.opengl.org/registry/specs/OML/resample.txt 3 | GL_OML_resample 4 | GL_PACK_RESAMPLE_OML 0x8984 5 | GL_UNPACK_RESAMPLE_OML 0x8985 6 | GL_RESAMPLE_REPLICATE_OML 0x8986 7 | GL_RESAMPLE_ZERO_FILL_OML 0x8987 8 | GL_RESAMPLE_AVERAGE_OML 0x8988 9 | GL_RESAMPLE_DECIMATE_OML 0x8989 10 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_OML_subsample: -------------------------------------------------------------------------------- 1 | GL_OML_subsample 2 | http://www.opengl.org/registry/specs/OML/subsample.txt 3 | GL_OML_subsample 4 | GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982 5 | GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_OVR_multiview2: -------------------------------------------------------------------------------- 1 | GL_OVR_multiview2 2 | http://www.opengl.org/registry/specs/OVR/multiview2.txt 3 | GL_OVR_multiview2 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_REGAL_error_string: -------------------------------------------------------------------------------- 1 | GL_REGAL_error_string 2 | https://github.com/p3/regal/tree/master/doc/extensions 3 | GL_REGAL_error_string 4 | const GLchar* glErrorStringREGAL (GLenum error) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_REGAL_extension_query: -------------------------------------------------------------------------------- 1 | GL_REGAL_extension_query 2 | https://github.com/p3/regal/tree/master/doc/extensions 3 | GL_REGAL_extension_query 4 | GLboolean glGetExtensionREGAL (const GLchar* ext) 5 | GLboolean glIsSupportedREGAL (const GLchar* ext) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_REGAL_proc_address: -------------------------------------------------------------------------------- 1 | GL_REGAL_proc_address 2 | https://github.com/p3/regal/tree/master/doc/extensions 3 | GL_REGAL_proc_address 4 | void * glGetProcAddressREGAL (const GLchar *name) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_REND_screen_coordinates: -------------------------------------------------------------------------------- 1 | GL_REND_screen_coordinates 2 | http://www.opengl.org/registry/specs/REND/screen_coordinates.txt 3 | GL_REND_screen_coordinates 4 | GL_SCREEN_COORDINATES_REND 0x8490 5 | GL_INVERTED_SCREEN_W_REND 0x8491 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_S3_s3tc: -------------------------------------------------------------------------------- 1 | GL_S3_s3tc 2 | http://www.opengl.org/registry/specs/S3/s3tc.txt 3 | GL_S3_s3tc 4 | GL_RGB_S3TC 0x83A0 5 | GL_RGB4_S3TC 0x83A1 6 | GL_RGBA_S3TC 0x83A2 7 | GL_RGBA4_S3TC 0x83A3 8 | GL_RGBA_DXT5_S3TC 0x83A4 9 | GL_RGBA4_DXT5_S3TC 0x83A5 10 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIS_detail_texture: -------------------------------------------------------------------------------- 1 | GL_SGIS_detail_texture 2 | http://www.opengl.org/registry/specs/SGIS/detail_texture.txt 3 | GL_SGIS_detail_texture 4 | void glDetailTexFuncSGIS (GLenum target, GLsizei n, const GLfloat* points) 5 | void glGetDetailTexFuncSGIS (GLenum target, GLfloat* points) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIS_fog_function: -------------------------------------------------------------------------------- 1 | GL_SGIS_fog_function 2 | http://www.opengl.org/registry/specs/SGIS/fog_func.txt 3 | GL_SGIS_fog_function 4 | void glFogFuncSGIS (GLsizei n, const GLfloat* points) 5 | void glGetFogFuncSGIS (GLfloat* points) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIS_generate_mipmap: -------------------------------------------------------------------------------- 1 | GL_SGIS_generate_mipmap 2 | http://www.opengl.org/registry/specs/SGIS/generate_mipmap.txt 3 | GL_SGIS_generate_mipmap 4 | GL_GENERATE_MIPMAP_SGIS 0x8191 5 | GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIS_pixel_texture: -------------------------------------------------------------------------------- 1 | GL_SGIS_pixel_texture 2 | http://www.opengl.org/registry/specs/SGIS/pixel_texture.txt 3 | GL_SGIS_pixel_texture 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIS_sharpen_texture: -------------------------------------------------------------------------------- 1 | GL_SGIS_sharpen_texture 2 | http://www.opengl.org/registry/specs/SGIS/sharpen_texture.txt 3 | GL_SGIS_sharpen_texture 4 | void glGetSharpenTexFuncSGIS (GLenum target, GLfloat* points) 5 | void glSharpenTexFuncSGIS (GLenum target, GLsizei n, const GLfloat* points) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIS_texture_border_clamp: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_border_clamp 2 | http://www.opengl.org/registry/specs/SGIS/texture_border_clamp.txt 3 | GL_SGIS_texture_border_clamp 4 | GL_CLAMP_TO_BORDER_SGIS 0x812D 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIS_texture_edge_clamp: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_edge_clamp 2 | http://www.opengl.org/registry/specs/SGIS/texture_edge_clamp.txt 3 | GL_SGIS_texture_edge_clamp 4 | GL_CLAMP_TO_EDGE_SGIS 0x812F 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIS_texture_filter4: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_filter4 2 | http://www.opengl.org/registry/specs/SGIS/texture_filter4.txt 3 | GL_SGIS_texture_filter4 4 | void glGetTexFilterFuncSGIS (GLenum target, GLenum filter, GLfloat* weights) 5 | void glTexFilterFuncSGIS (GLenum target, GLenum filter, GLsizei n, const GLfloat* weights) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIS_texture_lod: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_lod 2 | http://www.opengl.org/registry/specs/SGIS/texture_lod.txt 3 | GL_SGIS_texture_lod 4 | GL_TEXTURE_MIN_LOD_SGIS 0x813A 5 | GL_TEXTURE_MAX_LOD_SGIS 0x813B 6 | GL_TEXTURE_BASE_LEVEL_SGIS 0x813C 7 | GL_TEXTURE_MAX_LEVEL_SGIS 0x813D 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIS_texture_select: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_select 2 | http://www.opengl.org/registry/specs/SGIS/texture_select.txt 3 | GL_SGIS_texture_select 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_async_histogram: -------------------------------------------------------------------------------- 1 | GL_SGIX_async_histogram 2 | http://www.opengl.org/registry/specs/SGIX/async_histogram.txt 3 | GL_SGIX_async_histogram 4 | GL_ASYNC_HISTOGRAM_SGIX 0x832C 5 | GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_blend_alpha_minmax: -------------------------------------------------------------------------------- 1 | GL_SGIX_blend_alpha_minmax 2 | http://www.opengl.org/registry/specs/SGIX/blend_alpha_minmax.txt 3 | GL_SGIX_blend_alpha_minmax 4 | GL_ALPHA_MIN_SGIX 0x8320 5 | GL_ALPHA_MAX_SGIX 0x8321 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_clipmap: -------------------------------------------------------------------------------- 1 | GL_SGIX_clipmap 2 | http://www.opengl.org/registry/specs/SGIX/clipmap.txt 3 | GL_SGIX_clipmap 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_convolution_accuracy: -------------------------------------------------------------------------------- 1 | GL_SGIX_convolution_accuracy 2 | http://www.opengl.org/registry/specs/SGIX/convolution_accuracy.txt 3 | GL_SGIX_convolution_accuracy 4 | GL_CONVOLUTION_HINT_SGIX 0x8316 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_depth_texture: -------------------------------------------------------------------------------- 1 | GL_SGIX_depth_texture 2 | http://www.opengl.org/registry/specs/SGIX/depth_texture.txt 3 | GL_SGIX_depth_texture 4 | GL_DEPTH_COMPONENT16_SGIX 0x81A5 5 | GL_DEPTH_COMPONENT24_SGIX 0x81A6 6 | GL_DEPTH_COMPONENT32_SGIX 0x81A7 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_flush_raster: -------------------------------------------------------------------------------- 1 | GL_SGIX_flush_raster 2 | http://www.opengl.org/registry/specs/SGIX/flush_raster.txt 3 | GL_SGIX_flush_raster 4 | void glFlushRasterSGIX (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_fog_offset: -------------------------------------------------------------------------------- 1 | GL_SGIX_fog_offset 2 | http://www.opengl.org/registry/specs/SGIX/fog_offset.txt 3 | GL_SGIX_fog_offset 4 | GL_FOG_OFFSET_SGIX 0x8198 5 | GL_FOG_OFFSET_VALUE_SGIX 0x8199 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_fog_texture: -------------------------------------------------------------------------------- 1 | GL_SGIX_fog_texture 2 | http://www.opengl.org/registry/specs/SGIX/fog_texture.txt 3 | GL_SGIX_fog_texture 4 | GL_FOG_PATCHY_FACTOR_SGIX 0 5 | GL_FRAGMENT_FOG_SGIX 0 6 | GL_TEXTURE_FOG_SGIX 0 7 | void glTextureFogSGIX (GLenum pname) 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_framezoom: -------------------------------------------------------------------------------- 1 | GL_SGIX_framezoom 2 | http://www.opengl.org/registry/specs/SGIX/framezoom.txt 3 | GL_SGIX_framezoom 4 | void glFrameZoomSGIX (GLint factor) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_interlace: -------------------------------------------------------------------------------- 1 | GL_SGIX_interlace 2 | http://www.opengl.org/registry/specs/SGIX/interlace.txt 3 | GL_SGIX_interlace 4 | GL_INTERLACE_SGIX 0x8094 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_ir_instrument1: -------------------------------------------------------------------------------- 1 | GL_SGIX_ir_instrument1 2 | http://www.opengl.org/registry/specs/SGIX/ir_instrument1.txt 3 | GL_SGIX_ir_instrument1 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_list_priority: -------------------------------------------------------------------------------- 1 | GL_SGIX_list_priority 2 | http://www.opengl.org/registry/specs/SGIX/list_priority.txt 3 | GL_SGIX_list_priority 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_pixel_texture: -------------------------------------------------------------------------------- 1 | GL_SGIX_pixel_texture 2 | http://www.opengl.org/registry/specs/SGIX/sgix_pixel_texture.txt 3 | GL_SGIX_pixel_texture 4 | void glPixelTexGenSGIX (GLenum mode) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_pixel_texture_bits: -------------------------------------------------------------------------------- 1 | GL_SGIX_pixel_texture_bits 2 | http://www.opengl.org/registry/specs/SGIX/pixel_texture_bits.txt 3 | GL_SGIX_pixel_texture_bits 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_reference_plane: -------------------------------------------------------------------------------- 1 | GL_SGIX_reference_plane 2 | http://www.opengl.org/registry/specs/SGIX/reference_plane.txt 3 | GL_SGIX_reference_plane 4 | void glReferencePlaneSGIX (const GLdouble* equation) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_resample: -------------------------------------------------------------------------------- 1 | GL_SGIX_resample 2 | http://www.opengl.org/registry/specs/SGIX/resample.txt 3 | GL_SGIX_resample 4 | GL_PACK_RESAMPLE_SGIX 0x842E 5 | GL_UNPACK_RESAMPLE_SGIX 0x842F 6 | GL_RESAMPLE_DECIMATE_SGIX 0x8430 7 | GL_RESAMPLE_REPLICATE_SGIX 0x8433 8 | GL_RESAMPLE_ZERO_FILL_SGIX 0x8434 9 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_shadow: -------------------------------------------------------------------------------- 1 | GL_SGIX_shadow 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/shadow.txt 3 | GL_SGIX_shadow 4 | GL_TEXTURE_COMPARE_SGIX 0x819A 5 | GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B 6 | GL_TEXTURE_LEQUAL_R_SGIX 0x819C 7 | GL_TEXTURE_GEQUAL_R_SGIX 0x819D 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_shadow_ambient: -------------------------------------------------------------------------------- 1 | GL_SGIX_shadow_ambient 2 | http://www.opengl.org/registry/specs/SGIX/shadow_ambient.txt 3 | GL_SGIX_shadow_ambient 4 | GL_SHADOW_AMBIENT_SGIX 0x80BF 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_tag_sample_buffer: -------------------------------------------------------------------------------- 1 | GL_SGIX_tag_sample_buffer 2 | http://www.opengl.org/registry/specs/SGIX/tag_sample_buffer.txt 3 | GL_SGIX_tag_sample_buffer 4 | void glTagSampleBufferSGIX (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_texture_add_env: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_add_env 2 | http://www.opengl.org/registry/specs/SGIX/texture_env_add.txt 3 | GL_SGIX_texture_add_env 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_texture_coordinate_clamp: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_coordinate_clamp 2 | http://www.opengl.org/registry/specs/SGIX/texture_coordinate_clamp.txt 3 | GL_SGIX_texture_coordinate_clamp 4 | GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369 5 | GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A 6 | GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_texture_lod_bias: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_lod_bias 2 | http://www.opengl.org/registry/specs/SGIX/texture_lod_bias.txt 3 | GL_SGIX_texture_lod_bias 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_texture_multi_buffer: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_multi_buffer 2 | http://www.opengl.org/registry/specs/SGIX/texture_multi_buffer.txt 3 | GL_SGIX_texture_multi_buffer 4 | GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_vertex_preclip: -------------------------------------------------------------------------------- 1 | GL_SGIX_vertex_preclip 2 | http://www.opengl.org/registry/specs/SGIX/vertex_preclip.txt 3 | GL_SGIX_vertex_preclip 4 | GL_VERTEX_PRECLIP_SGIX 0x83EE 5 | GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_vertex_preclip_hint: -------------------------------------------------------------------------------- 1 | GL_SGIX_vertex_preclip_hint 2 | http://www.opengl.org/registry/specs/SGIX/vertex_preclip.txt 3 | GL_SGIX_vertex_preclip_hint 4 | GL_VERTEX_PRECLIP_SGIX 0x83EE 5 | GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGIX_ycrcb: -------------------------------------------------------------------------------- 1 | GL_SGIX_ycrcb 2 | http://www.opengl.org/registry/specs/SGIX/ycrcb.txt 3 | GL_SGIX_ycrcb 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SGI_texture_color_table: -------------------------------------------------------------------------------- 1 | GL_SGI_texture_color_table 2 | http://www.opengl.org/registry/specs/SGI/texture_color_table.txt 3 | GL_SGI_texture_color_table 4 | GL_TEXTURE_COLOR_TABLE_SGI 0x80BC 5 | GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SUNX_constant_data: -------------------------------------------------------------------------------- 1 | GL_SUNX_constant_data 2 | http://www.opengl.org/registry/specs/SUNX/constant_data.txt 3 | GL_SUNX_constant_data 4 | GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5 5 | GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6 6 | void glFinishTextureSUNX (void) 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SUN_convolution_border_modes: -------------------------------------------------------------------------------- 1 | GL_SUN_convolution_border_modes 2 | http://www.opengl.org/registry/specs/SUN/convolution_border_modes.txt 3 | GL_SUN_convolution_border_modes 4 | GL_WRAP_BORDER_SUN 0x81D4 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SUN_mesh_array: -------------------------------------------------------------------------------- 1 | GL_SUN_mesh_array 2 | http://www.opengl.org/registry/specs/SUN/mesh_array.txt 3 | GL_SUN_mesh_array 4 | GL_QUAD_MESH_SUN 0x8614 5 | GL_TRIANGLE_MESH_SUN 0x8615 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SUN_read_video_pixels: -------------------------------------------------------------------------------- 1 | GL_SUN_read_video_pixels 2 | http://wwws.sun.com/software/graphics/opengl/extensions/gl_sun_read_video_pixels.txt 3 | GL_SUN_read_video_pixels 4 | void glReadVideoPixelsSUN (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, void* pixels) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_SUN_slice_accum: -------------------------------------------------------------------------------- 1 | GL_SUN_slice_accum 2 | http://www.opengl.org/registry/specs/SUN/slice_accum.txt 3 | GL_SUN_slice_accum 4 | GL_SLICE_ACCUM_SUN 0x85CC 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_WIN_phong_shading: -------------------------------------------------------------------------------- 1 | GL_WIN_phong_shading 2 | http://www.opengl.org/registry/specs/WIN/phong_shading.txt 3 | GL_WIN_phong_shading 4 | GL_PHONG_WIN 0x80EA 5 | GL_PHONG_HINT_WIN 0x80EB 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_WIN_specular_fog: -------------------------------------------------------------------------------- 1 | GL_WIN_specular_fog 2 | http://www.opengl.org/registry/specs/WIN/specular_fog.txt 3 | GL_WIN_specular_fog 4 | GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/GL_WIN_swap_hint: -------------------------------------------------------------------------------- 1 | GL_WIN_swap_hint 2 | http://msdn.microsoft.com/library/default.asp?url=/library/en-us/opengl/glfunc01_16zy.asp 3 | GL_WIN_swap_hint 4 | void glAddSwapHintRectWIN (GLint x, GLint y, GLsizei width, GLsizei height) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_3DFX_multisample: -------------------------------------------------------------------------------- 1 | WGL_3DFX_multisample 2 | http://www.opengl.org/registry/specs/3DFX/3dfx_multisample.txt 3 | WGL_3DFX_multisample 4 | WGL_SAMPLE_BUFFERS_3DFX 0x2060 5 | WGL_SAMPLES_3DFX 0x2061 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_ARB_context_flush_control: -------------------------------------------------------------------------------- 1 | WGL_ARB_context_flush_control 2 | http://www.opengl.org/registry/specs/KHR/context_flush_control.txt 3 | WGL_ARB_context_flush_control 4 | WGL_CONTEXT_RELEASE_BEHAVIOR_NONE_ARB 0x0000 5 | WGL_CONTEXT_RELEASE_BEHAVIOR_ARB 0x2097 6 | WGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_ARB 0x2098 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_ARB_create_context_profile: -------------------------------------------------------------------------------- 1 | WGL_ARB_create_context_profile 2 | http://www.opengl.org/registry/specs/ARB/wgl_create_context.txt 3 | WGL_ARB_create_context_profile 4 | WGL_CONTEXT_CORE_PROFILE_BIT_ARB 0x00000001 5 | WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002 6 | WGL_CONTEXT_PROFILE_MASK_ARB 0x9126 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_ARB_extensions_string: -------------------------------------------------------------------------------- 1 | WGL_ARB_extensions_string 2 | http://www.opengl.org/registry/specs/ARB/wgl_extensions_string.txt 3 | WGL_ARB_extensions_string 4 | const char* wglGetExtensionsStringARB (HDC hdc) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_ARB_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | WGL_ARB_framebuffer_sRGB 2 | http://www.opengl.org/registry/specs/ARB/framebuffer_sRGB.txt 3 | WGL_ARB_framebuffer_sRGB 4 | WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20A9 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_ARB_multisample: -------------------------------------------------------------------------------- 1 | WGL_ARB_multisample 2 | http://www.opengl.org/registry/specs/ARB/multisample.txt 3 | WGL_ARB_multisample 4 | WGL_SAMPLE_BUFFERS_ARB 0x2041 5 | WGL_SAMPLES_ARB 0x2042 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_ARB_pixel_format_float: -------------------------------------------------------------------------------- 1 | WGL_ARB_pixel_format_float 2 | http://www.opengl.org/registry/specs/ARB/color_buffer_float.txt 3 | WGL_ARB_pixel_format_float 4 | WGL_TYPE_RGBA_FLOAT_ARB 0x21A0 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_ARB_robustness_application_isolation: -------------------------------------------------------------------------------- 1 | WGL_ARB_robustness_application_isolation 2 | http://www.opengl.org/registry/specs/ARB/wgl_robustness_isolation.txt 3 | WGL_ARB_robustness_application_isolation 4 | WGL_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_ARB_robustness_share_group_isolation: -------------------------------------------------------------------------------- 1 | WGL_ARB_robustness_share_group_isolation 2 | http://www.opengl.org/registry/specs/ARB/wgl_robustness_isolation.txt 3 | WGL_ARB_robustness_share_group_isolation 4 | WGL_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_ATI_pixel_format_float: -------------------------------------------------------------------------------- 1 | WGL_ATI_pixel_format_float 2 | http://www.opengl.org/registry/specs/ATI/pixel_format_float.txt 3 | WGL_ATI_pixel_format_float 4 | WGL_TYPE_RGBA_FLOAT_ATI 0x21A0 5 | GL_RGBA_FLOAT_MODE_ATI 0x8820 6 | GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_ATI_render_texture_rectangle: -------------------------------------------------------------------------------- 1 | WGL_ATI_render_texture_rectangle 2 | 3 | WGL_ATI_render_texture_rectangle 4 | WGL_TEXTURE_RECTANGLE_ATI 0x21A5 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_EXT_create_context_es2_profile: -------------------------------------------------------------------------------- 1 | WGL_EXT_create_context_es2_profile 2 | http://www.opengl.org/registry/specs/EXT/wgl_create_context_es2_profile.txt 3 | WGL_EXT_create_context_es2_profile 4 | WGL_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_EXT_create_context_es_profile: -------------------------------------------------------------------------------- 1 | WGL_EXT_create_context_es_profile 2 | http://www.opengl.org/registry/specs/EXT/wgl_create_context_es_profile.txt 3 | WGL_EXT_create_context_es_profile 4 | WGL_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_EXT_depth_float: -------------------------------------------------------------------------------- 1 | WGL_EXT_depth_float 2 | http://www.opengl.org/registry/specs/EXT/wgl_depth_float.txt 3 | WGL_EXT_depth_float 4 | WGL_DEPTH_FLOAT_EXT 0x2040 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_EXT_extensions_string: -------------------------------------------------------------------------------- 1 | WGL_EXT_extensions_string 2 | http://www.opengl.org/registry/specs/EXT/wgl_extensions_string.txt 3 | WGL_EXT_extensions_string 4 | const char* wglGetExtensionsStringEXT (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | WGL_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | WGL_EXT_framebuffer_sRGB 4 | WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20A9 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_EXT_make_current_read: -------------------------------------------------------------------------------- 1 | WGL_EXT_make_current_read 2 | http://www.opengl.org/registry/specs/EXT/wgl_make_current_read.txt 3 | WGL_EXT_make_current_read 4 | HDC wglGetCurrentReadDCEXT (VOID) 5 | BOOL wglMakeContextCurrentEXT (HDC hDrawDC, HDC hReadDC, HGLRC hglrc) 6 | ERROR_INVALID_PIXEL_TYPE_EXT 0x2043 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_EXT_multisample: -------------------------------------------------------------------------------- 1 | WGL_EXT_multisample 2 | http://www.opengl.org/registry/specs/EXT/wgl_multisample.txt 3 | WGL_EXT_multisample 4 | WGL_SAMPLE_BUFFERS_EXT 0x2041 5 | WGL_SAMPLES_EXT 0x2042 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_EXT_pixel_format_packed_float: -------------------------------------------------------------------------------- 1 | WGL_EXT_pixel_format_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | WGL_EXT_pixel_format_packed_float 4 | WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT 0x20A8 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_EXT_swap_control: -------------------------------------------------------------------------------- 1 | WGL_EXT_swap_control 2 | http://www.opengl.org/registry/specs/EXT/wgl_swap_control.txt 3 | WGL_EXT_swap_control 4 | int wglGetSwapIntervalEXT (void) 5 | BOOL wglSwapIntervalEXT (int interval) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_EXT_swap_control_tear: -------------------------------------------------------------------------------- 1 | WGL_EXT_swap_control_tear 2 | http://www.opengl.org/registry/specs/EXT/wgl_swap_control_tear.txt 3 | WGL_EXT_swap_control_tear 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_I3D_swap_frame_lock: -------------------------------------------------------------------------------- 1 | WGL_I3D_swap_frame_lock 2 | http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_lock.txt 3 | WGL_I3D_swap_frame_lock 4 | BOOL wglDisableFrameLockI3D (VOID) 5 | BOOL wglEnableFrameLockI3D (VOID) 6 | BOOL wglIsEnabledFrameLockI3D (BOOL* pFlag) 7 | BOOL wglQueryFrameLockMasterI3D (BOOL* pFlag) 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_NV_DX_interop2: -------------------------------------------------------------------------------- 1 | WGL_NV_DX_interop2 2 | http://www.opengl.org/registry/specs/NV/DX_interop2.txt 3 | WGL_NV_DX_interop2 4 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_NV_delay_before_swap: -------------------------------------------------------------------------------- 1 | WGL_NV_delay_before_swap 2 | http://www.opengl.org/registry/specs/NV/wgl_delay_before_swap.txt 3 | WGL_NV_delay_before_swap 4 | BOOL wglDelayBeforeSwapNV (HDC hDC, GLfloat seconds) 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_NV_multisample_coverage: -------------------------------------------------------------------------------- 1 | WGL_NV_multisample_coverage 2 | http://www.opengl.org/registry/specs/NV/multisample_coverage.txt 3 | WGL_NV_multisample_coverage 4 | WGL_COVERAGE_SAMPLES_NV 0x2042 5 | WGL_COLOR_SAMPLES_NV 0x20B9 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_NV_render_texture_rectangle: -------------------------------------------------------------------------------- 1 | WGL_NV_render_texture_rectangle 2 | http://www.opengl.org/registry/specs/NV/render_texture_rectangle.txt 3 | WGL_NV_render_texture_rectangle 4 | WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV 0x20A0 5 | WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV 0x20A1 6 | WGL_TEXTURE_RECTANGLE_NV 0x20A2 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/extensions/gl/WGL_NV_vertex_array_range: -------------------------------------------------------------------------------- 1 | WGL_NV_vertex_array_range 2 | http://oss.sgi.com/projects/ogl-sample/registry/NV/vertex_array_range.txt 3 | WGL_NV_vertex_array_range 4 | void * wglAllocateMemoryNV (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority) 5 | void wglFreeMemoryNV (void *pointer) 6 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/src/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/src/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/auto/src/glew.rc -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/src/glew_str_tail.c: -------------------------------------------------------------------------------- 1 | } 2 | ret = (len == 0); 3 | } 4 | return ret; 5 | } 6 | 7 | #endif /* _WIN32 */ 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/src/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/auto/src/glewinfo.rc -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/src/glewinfo_gl.c: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------------------------------------ */ 2 | 3 | static void glewInfo (void) 4 | { 5 | #ifdef GL_VERSION_1_1 6 | _glewInfo_GL_VERSION_1_1(); 7 | #endif /* GL_VERSION_1_1 */ 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/src/glewinfo_glx.c: -------------------------------------------------------------------------------- 1 | } 2 | 3 | #else /* _UNIX */ 4 | 5 | static void glxewInfo () 6 | { 7 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/src/glewinfo_wgl.c: -------------------------------------------------------------------------------- 1 | } 2 | 3 | /* ------------------------------------------------------------------------ */ 4 | 5 | #ifdef _WIN32 6 | 7 | static void wglewInfo () 8 | { 9 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/src/glxew_mid.h: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------------------------------------- */ 2 | 3 | #ifdef GLEW_MX 4 | #define GLXEW_FUN_EXPORT GLEW_FUN_EXPORT 5 | #define GLXEW_VAR_EXPORT 6 | #else 7 | #define GLXEW_FUN_EXPORT GLEW_FUN_EXPORT 8 | #define GLXEW_VAR_EXPORT GLEW_VAR_EXPORT 9 | #endif /* GLEW_MX */ 10 | -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/src/visualinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/auto/src/visualinfo.rc -------------------------------------------------------------------------------- /external/glew-1.13.0/auto/src/wglew_mid.h: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------------------------------------- */ 2 | 3 | #ifdef GLEW_MX 4 | #define WGLEW_FUN_EXPORT 5 | #define WGLEW_VAR_EXPORT 6 | #else 7 | #define WGLEW_FUN_EXPORT GLEW_FUN_EXPORT 8 | #define WGLEW_VAR_EXPORT GLEW_VAR_EXPORT 9 | #endif /* GLEW_MX */ 10 | -------------------------------------------------------------------------------- /external/glew-1.13.0/build/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/build/glew.rc -------------------------------------------------------------------------------- /external/glew-1.13.0/build/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/build/glewinfo.rc -------------------------------------------------------------------------------- /external/glew-1.13.0/build/visualinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/build/visualinfo.rc -------------------------------------------------------------------------------- /external/glew-1.13.0/config/Makefile.fedora-mingw32: -------------------------------------------------------------------------------- 1 | # For cross-compiling from Linux to Windows x86 using mingw32 2 | # http://www.mingw.org/ 3 | # 4 | # $ make SYSTEM=fedora-mingw32 5 | # 6 | 7 | include config/Makefile.linux-mingw32 8 | 9 | CC := i686-pc-mingw32-gcc 10 | LD := i686-pc-mingw32-ld 11 | LDFLAGS.GL += -L/usr/i686-pc-mingw32/sys-root/mingw/lib 12 | -------------------------------------------------------------------------------- /external/glew-1.13.0/config/version: -------------------------------------------------------------------------------- 1 | GLEW_MAJOR = 1 2 | GLEW_MINOR = 13 3 | GLEW_MICRO = 0 4 | GLEW_VERSION = $(GLEW_MAJOR).$(GLEW_MINOR).$(GLEW_MICRO) 5 | GLEW_NAME = GLEW 6 | SO_MAJOR = $(GLEW_MAJOR).$(GLEW_MINOR) 7 | SO_VERSION = $(GLEW_VERSION) 8 | -------------------------------------------------------------------------------- /external/glew-1.13.0/doc/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/doc/github.png -------------------------------------------------------------------------------- /external/glew-1.13.0/doc/glew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/doc/glew.png -------------------------------------------------------------------------------- /external/glew-1.13.0/doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/doc/new.png -------------------------------------------------------------------------------- /external/glew-1.13.0/doc/ogl_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glew-1.13.0/doc/ogl_sm.jpg -------------------------------------------------------------------------------- /external/glew-1.13.0/glew.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=${prefix} 3 | libdir=@libdir@ 4 | includedir=${prefix}/include 5 | 6 | Name: glew 7 | Description: The OpenGL Extension Wrangler library 8 | Version: @version@ 9 | Cflags: -I${includedir} @cflags@ 10 | Libs: -L${libdir} -l@libname@ 11 | Requires: @requireslib@ 12 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_custom_target(docs ALL ${DOXYGEN_EXECUTABLE} 3 | WORKING_DIRECTORY ${GLFW_BINARY_DIR}/docs 4 | COMMENT "Generating HTML documentation" VERBATIM) 5 | 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/footer.html: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/bc_s.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/bdwn.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/closed.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/doxygen.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2blank.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2doc.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2folderopen.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2lastnode.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2link.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2mnode.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2node.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2plastnode.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2pnode.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2splitbar.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/ftv2vertline.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/nav_f.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/nav_g.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/nav_h.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/open.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/all_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['error_20codes',['Error codes',['../group__errors.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/all_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['height',['height',['../structGLFWvidmode.html#ac65942a5f6981695517437a9d571d03c',1,'GLFWvidmode::height()'],['../structGLFWimage.html#a0b7d95368f0c80d5e5c9875057c7dbec',1,'GLFWimage::height()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/all_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['joysticks',['Joysticks',['../group__joysticks.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/all_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['keyboard_20keys',['Keyboard keys',['../group__keys.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/all_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['notitle',['notitle',['../index.html',1,'']]], 4 | ['native_20access',['Native access',['../group__native.html',1,'']]], 5 | ['new_20features',['New features',['../news.html',1,'']]], 6 | ['news_2edox',['news.dox',['../news_8dox.html',1,'']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/all_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['oculus_20rift_20guide',['Oculus Rift guide',['../rift.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/all_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pixels',['pixels',['../structGLFWimage.html#a0c532a5c2bb715555279b7817daba0fb',1,'GLFWimage']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/all_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['quick_2edox',['quick.dox',['../quick_8dox.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/all_e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['standards_20conformance',['Standards conformance',['../compat.html',1,'']]], 4 | ['standard_20cursor_20shapes',['Standard cursor shapes',['../group__shapes.html',1,'']]], 5 | ['size',['size',['../structGLFWgammaramp.html#ad620e1cffbff9a32c51bca46301b59a5',1,'GLFWgammaramp']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/classes_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['glfwgammaramp',['GLFWgammaramp',['../structGLFWgammaramp.html',1,'']]], 4 | ['glfwimage',['GLFWimage',['../structGLFWimage.html',1,'']]], 5 | ['glfwvidmode',['GLFWvidmode',['../structGLFWvidmode.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/search/close.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['build_2edox',['build.dox',['../build_8dox.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/files_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['compat_2edox',['compat.dox',['../compat_8dox.html',1,'']]], 4 | ['compile_2edox',['compile.dox',['../compile_8dox.html',1,'']]], 5 | ['context_2edox',['context.dox',['../context_8dox.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/files_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['glfw3_2eh',['glfw3.h',['../glfw3_8h.html',1,'']]], 4 | ['glfw3native_2eh',['glfw3native.h',['../glfw3native_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/files_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['input_2edox',['input.dox',['../input_8dox.html',1,'']]], 4 | ['intro_2edox',['intro.dox',['../intro_8dox.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/files_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['main_2edox',['main.dox',['../main_8dox.html',1,'']]], 4 | ['monitor_2edox',['monitor.dox',['../monitor_8dox.html',1,'']]], 5 | ['moving_2edox',['moving.dox',['../moving_8dox.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/files_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['news_2edox',['news.dox',['../news_8dox.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/files_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['quick_2edox',['quick.dox',['../quick_8dox.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/files_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['rift_2edox',['rift.dox',['../rift_8dox.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/files_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['window_2edox',['window.dox',['../window_8dox.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/groups_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['context_20handling',['Context handling',['../group__context.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/groups_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['error_20codes',['Error codes',['../group__errors.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/groups_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['initialization_2c_20version_20and_20errors',['Initialization, version and errors',['../group__init.html',1,'']]], 4 | ['input_20handling',['Input handling',['../group__input.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/groups_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['joysticks',['Joysticks',['../group__joysticks.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/groups_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['keyboard_20keys',['Keyboard keys',['../group__keys.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/groups_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['mouse_20buttons',['Mouse buttons',['../group__buttons.html',1,'']]], 4 | ['modifier_20key_20flags',['Modifier key flags',['../group__mods.html',1,'']]], 5 | ['monitor_20handling',['Monitor handling',['../group__monitor.html',1,'']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/groups_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['native_20access',['Native access',['../group__native.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/groups_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['standard_20cursor_20shapes',['Standard cursor shapes',['../group__shapes.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/groups_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['window_20handling',['Window handling',['../group__window.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/search/mag_sel.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['bug_20list',['Bug List',['../bug.html',1,'']]], 4 | ['building_20applications',['Building applications',['../build.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/pages_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['compiling_20glfw',['Compiling GLFW',['../compile.html',1,'']]], 4 | ['context_20guide',['Context guide',['../context.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/pages_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['getting_20started',['Getting started',['../quick.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/pages_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['input_20guide',['Input guide',['../input.html',1,'']]], 4 | ['introduction_20to_20the_20api',['Introduction to the API',['../intro.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/pages_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['monitor_20guide',['Monitor guide',['../monitor.html',1,'']]], 4 | ['moving_20from_20glfw_202_20to_203',['Moving from GLFW 2 to 3',['../moving.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/pages_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['notitle',['notitle',['../index.html',1,'']]], 4 | ['new_20features',['New features',['../news.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/pages_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['oculus_20rift_20guide',['Oculus Rift guide',['../rift.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/pages_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['standards_20conformance',['Standards conformance',['../compat.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/pages_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['window_20guide',['Window guide',['../window.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/search/search_l.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/search/search_m.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/search/search_r.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['blue',['blue',['../structGLFWgammaramp.html#acf0c836d0efe29c392fe8d1a1042744b',1,'GLFWgammaramp']]], 4 | ['bluebits',['blueBits',['../structGLFWvidmode.html#af310977f58d2e3b188175b6e3d314047',1,'GLFWvidmode']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/variables_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['green',['green',['../structGLFWgammaramp.html#affccc6f5df47820b6562d709da3a5a3a',1,'GLFWgammaramp']]], 4 | ['greenbits',['greenBits',['../structGLFWvidmode.html#a292fdd281f3485fb3ff102a5bda43faa',1,'GLFWvidmode']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['height',['height',['../structGLFWvidmode.html#ac65942a5f6981695517437a9d571d03c',1,'GLFWvidmode::height()'],['../structGLFWimage.html#a0b7d95368f0c80d5e5c9875057c7dbec',1,'GLFWimage::height()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/variables_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['pixels',['pixels',['../structGLFWimage.html#a0c532a5c2bb715555279b7817daba0fb',1,'GLFWimage']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/variables_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['size',['size',['../structGLFWgammaramp.html#ad620e1cffbff9a32c51bca46301b59a5',1,'GLFWgammaramp']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/search/variables_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['width',['width',['../structGLFWvidmode.html#a698dcb200562051a7249cb6ae154c71d',1,'GLFWvidmode::width()'],['../structGLFWimage.html#af6a71cc999fe6d3aea31dd7e9687d835',1,'GLFWimage::width()']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/sync_off.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/sync_on.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/tab_a.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/tab_b.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/tab_h.png -------------------------------------------------------------------------------- /external/glfw-3.1.2/docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glfw-3.1.2/docs/html/tab_s.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/cmake/glmBuildConfig.cmake.in: -------------------------------------------------------------------------------- 1 | set(GLM_VERSION "@GLM_VERSION@") 2 | set(GLM_INCLUDE_DIRS "@CMAKE_CURRENT_SOURCE_DIR@") 3 | 4 | if (NOT CMAKE_VERSION VERSION_LESS "3.0") 5 | include("${CMAKE_CURRENT_LIST_DIR}/glmTargets.cmake") 6 | endif() 7 | -------------------------------------------------------------------------------- /external/glm-0.9.7.1/cmake/glmConfig.cmake.in: -------------------------------------------------------------------------------- 1 | set(GLM_VERSION "@GLM_VERSION@") 2 | 3 | @PACKAGE_INIT@ 4 | 5 | set_and_check(GLM_INCLUDE_DIRS "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@") 6 | 7 | if (NOT CMAKE_VERSION VERSION_LESS "3.0") 8 | include("${CMAKE_CURRENT_LIST_DIR}/glmTargets.cmake") 9 | endif() 10 | -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/arrowdown.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/arrowright.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/bc_s.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/bdwn.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/closed.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/doc.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/doxygen.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/folderclosed.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/folderopen.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/logo.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/nav_f.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/nav_g.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/nav_h.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/open.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/splitbar.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/sync_off.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/sync_on.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/tab_a.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/tab_b.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/tab_h.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/api/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/api/tab_s.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/glm.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/glm.docx -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/glm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/glm.pdf -------------------------------------------------------------------------------- /external/glm-0.9.7.1/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/doc/logo.png -------------------------------------------------------------------------------- /external/glm-0.9.7.1/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/test/bug/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm-0.9.7.1/test/external/gli/core/dummy.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /external/glm-0.9.7.1/test/glm.cppcheck: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /external/glm-0.9.7.1/test/gtc/gtc_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/glm-0.9.7.1/test/gtc/gtc_quaternion.cpp -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | *.sh text eol=lf 5 | 6 | # cmake launcher templates 7 | *.sh.in text eol=lf 8 | *.cmd.in text eol=crlf 9 | *vcproj.user.in text eol=crlf 10 | *vcxproj.user.in text eol=crlf 11 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/BoostTestTargetsDynamic.h: -------------------------------------------------------------------------------- 1 | // Small header computed by CMake to set up boost test. 2 | // include AFTER #define BOOST_TEST_MODULE whatever 3 | // but before any other boost test includes. 4 | 5 | // Using the Boost UTF dynamic library 6 | 7 | #define BOOST_TEST_DYN_LINK 8 | #include 9 | 10 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/BoostTestTargetsIncluded.h: -------------------------------------------------------------------------------- 1 | // Small header computed by CMake to set up boost test. 2 | // include AFTER #define BOOST_TEST_MODULE whatever 3 | // but before any other boost test includes. 4 | 5 | // Using the Boost UTF included framework 6 | 7 | #include 8 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/BoostTestTargetsStatic.h: -------------------------------------------------------------------------------- 1 | // Small header computed by CMake to set up boost test. 2 | // include AFTER #define BOOST_TEST_MODULE whatever 3 | // but before any other boost test includes. 4 | 5 | // Using the Boost UTF static library 6 | 7 | #include 8 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/GetDefineString.cpp.in: -------------------------------------------------------------------------------- 1 | @GET_DEFINE_STRING_INCLUDES@ 2 | 3 | char const * info = "INFO" ":" "define[" @GET_DEFINE_STRING_NAME@ "]"; 4 | 5 | int main(int argc, char * argv[]) { 6 | int require = 0; 7 | require += info[argc]; 8 | (void)argv; 9 | return require; 10 | } -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/launcher-templates/genericlauncher.cmd.in: -------------------------------------------------------------------------------- 1 | cd @USERFILE_WORKING_DIRECTORY@ 2 | @USERFILE_ENV_COMMANDS@ 3 | 4 | IF NOT [x%1]==[x--debugger] GOTO SkipDebuggingMess 5 | 6 | ECHO Need to ditch the debugger! 7 | SHIFT /1 8 | %1 %2 %3 %4 %5 %6 %7 %8 %9 9 | GOTO EOF 10 | 11 | :SkipDebuggingMess 12 | %* 13 | 14 | :EOF -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/launcher-templates/launcher.env.cmd.in: -------------------------------------------------------------------------------- 1 | set @_arg@ 2 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/launcher-templates/launcher.env.sh.in: -------------------------------------------------------------------------------- 1 | export @_arg@ 2 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/launcher-templates/targetlauncher.cmd.in: -------------------------------------------------------------------------------- 1 | cd @USERFILE_WORKING_DIRECTORY@ 2 | @USERFILE_ENV_COMMANDS@ 3 | if [%1]==[--debugger] ( 4 | SHIFT 5 | ) 6 | 7 | "@USERFILE_COMMAND@" @LAUNCHERSCRIPT_COMMAND_ARGUMENTS@ 8 | pause 9 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/launcher-templates/vcproj.user.in: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | @USERFILE_CONFIGSECTIONS@ 9 | 10 | 11 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/launcher-templates/vcxproj.user.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | @USERFILE_CONFIGSECTIONS@ 4 | 5 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/module-docs/AllModuleDependencies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/rpavlik-cmake-modules-fe2273/module-docs/AllModuleDependencies.jpg -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/module-docs/AllModuleDependencies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/rpavlik-cmake-modules-fe2273/module-docs/AllModuleDependencies.pdf -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/module-docs/AllModuleDependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edg956/Basic-FPS-OpenGL/073088303205b24102cfb40571eb9b8b596fdfcc/external/rpavlik-cmake-modules-fe2273/module-docs/AllModuleDependencies.png -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/update-help.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | src="$(dirname $(readlink -f $0))" 4 | : ${CMAKE:=$(which cmake)} 5 | $CMAKE "-DCMAKE_MODULE_PATH=$src" --help-custom-modules "$src/module-help.html" 6 | $CMAKE "-DCMAKE_MODULE_PATH=$src" --help-custom-modules "$src/module-help.txt" 7 | 8 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/workarounds/mac-alut-framework/AL/alut.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/workarounds/mac-gl/GL/gl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/workarounds/mac-gl/GL/glui.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/workarounds/mac-gl/GL/glut.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/workarounds/mac-openal/AL/al.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/workarounds/mac-openal/AL/alc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /external/rpavlik-cmake-modules-fe2273/workarounds/tchar/tchar.h: -------------------------------------------------------------------------------- 1 | #define _tmain main 2 | #define _TCHAR char --------------------------------------------------------------------------------