├── .gitignore ├── .gitmodules ├── AUTHORS ├── CMakeLists.txt ├── LICENSE ├── README.md ├── launcher_template.sh.in ├── modules ├── FindFontConfig.cmake ├── FindNVCTRL.cmake └── FindSensors.cmake ├── src ├── CMakeLists.txt ├── elfhacks │ ├── CMakeLists.txt │ ├── elfhacks.c │ └── elfhacks.h ├── freetype-gl-glxosd │ ├── CMakeLists.txt │ ├── freetype-gl.version.in │ ├── gl-dynamic-loader.c │ └── gl-dynamic-loader.h ├── glinject │ ├── CMakeLists.txt │ ├── glinject.c │ ├── glinject.h │ ├── glinject.version │ ├── glx_events.c │ ├── glx_events.h │ ├── x_events.c │ └── x_events.h └── glxosd │ ├── Bootstrap.lua │ ├── ConfigurationManager.lua │ ├── Context.lua │ ├── Main.lua │ ├── conf │ ├── OSD │ │ └── dataproviders │ │ │ ├── FrameDataProvider │ │ │ └── formatterfunction.lua │ │ │ ├── LibsensorsDataProvider │ │ │ └── formatterfunction.lua │ │ │ └── NVMLDataProvider │ │ │ └── formatterfunction.lua │ ├── arch.lua │ ├── chainload.lua │ ├── glxosd_config.lua │ └── paths.lua │ ├── ffi │ ├── clock.lua │ ├── ffitypes.lua │ ├── fontconfig.lua │ ├── freetype-gl.lua │ ├── gl.lua │ ├── glext.lua │ ├── gltypes.lua │ ├── glx.lua │ ├── init.lua │ ├── libsensors.lua │ └── nvml.lua │ ├── plugins │ ├── OSD │ │ ├── OSD.lua │ │ └── dataproviders │ │ │ ├── DummyDataProvider.lua │ │ │ ├── FrameDataProvider.lua │ │ │ ├── LibsensorsDataProvider.lua │ │ │ └── NVMLDataProvider.lua │ └── TimeRecorder │ │ └── TimeRecorder.lua │ ├── rendering │ ├── MarkupElement.lua │ ├── TextRenderer.lua │ ├── gl_error_handling.lua │ ├── normalise_gl_state.lua │ └── shader_support.lua │ └── util │ ├── fontutil.lua │ ├── formattingutil.lua │ └── util.lua └── third-party ├── BuildFreetype.cmake ├── BuildGLEW.cmake ├── BuildLuaJIT.cmake ├── LuaJIT-2.0.4.tar.gz ├── freetype-2.6.tar.gz └── glew-1.13.0 ├── LICENSE.txt ├── README.txt ├── TODO.txt ├── auto ├── 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 │ ├── 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 /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "src/freetype-gl-glxosd/freetype-gl"] 2 | path = src/freetype-gl-glxosd/freetype-gl 3 | url = https://github.com/nickguletskii/freetype-gl.git 4 | branch = strdup-fix 5 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Original authors: 2 | Nick Guletskii (nick@nickguletskii.com) 3 | Contributors: 4 | scrawl (https://github.com/scrawl) 5 | Stanisław Gackowski (soeb@soeb.eu) 6 | Special thanks for helping track down issues: 7 | Yusuf Ismail Bin Shukor (linkinpark_neon@yahoo.com) 8 | scrawl (https://github.com/scrawl) 9 | -------------------------------------------------------------------------------- /modules/FindFontConfig.cmake: -------------------------------------------------------------------------------- 1 | find_path(FONTCONFIG_INCLUDE_DIR fontconfig/fontconfig.h) 2 | find_library(FONTCONFIG_LIBRARY NAMES fontconfig) 3 | if(FONTCONFIG_LIBRARY AND FONTCONFIG_INCLUDE_DIR) 4 | set(FONTCONFIG_FOUND TRUE) 5 | endif(FONTCONFIG_LIBRARY AND FONTCONFIG_INCLUDE_DIR) 6 | mark_as_advanced(FONTCONFIG_INCLUDE_DIR FONTCONFIG_LIBRARY) 7 | 8 | -------------------------------------------------------------------------------- /modules/FindNVCTRL.cmake: -------------------------------------------------------------------------------- 1 | FIND_PATH(NVCTRL_INCLUDE_DIR NVCtrl/NVCtrl.h) 2 | FIND_LIBRARY(NVCTRL_LIBRARIES NAMES XNVCtrl) 3 | if(NVCTRL_LIBRARIES AND NVCTRL_INCLUDE_DIR) 4 | set(NVCTRL_FOUND TRUE) 5 | endif(NVCTRL_LIBRARIES AND NVCTRL_INCLUDE_DIR) 6 | mark_as_advanced(NVCTRL_INCLUDE_DIR NVCTRL_LIBRARIES) 7 | -------------------------------------------------------------------------------- /modules/FindSensors.cmake: -------------------------------------------------------------------------------- 1 | FIND_PATH(SENSORS_INCLUDE_DIR sensors/sensors.h) 2 | FIND_LIBRARY(SENSORS_LIBRARIES NAMES sensors) 3 | if(SENSORS_LIBRARIES AND SENSORS_INCLUDE_DIR) 4 | set(SENSORS_FOUND TRUE) 5 | endif(SENSORS_LIBRARIES AND SENSORS_INCLUDE_DIR) 6 | mark_as_advanced(SENSORS_INCLUDE_DIR SENSORS_LIBRARIES) 7 | -------------------------------------------------------------------------------- /src/elfhacks/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include(GNUInstallDirs) 2 | add_library(elfhacks STATIC elfhacks.c) 3 | target_compile_options(elfhacks PRIVATE -fPIC) 4 | target_link_libraries(elfhacks dl rt) 5 | -------------------------------------------------------------------------------- /src/freetype-gl-glxosd/freetype-gl.version.in: -------------------------------------------------------------------------------- 1 | { 2 | global: 3 | glinject_dynamic_gl_initialise; 4 | @FREETYPE_GL_SYMBOL_WHITELIST@; 5 | local: *; 6 | }; 7 | -------------------------------------------------------------------------------- /src/glxosd/conf/chainload.lua: -------------------------------------------------------------------------------- 1 | local homePath = (os.getenv ("XDG_CONFIG_HOME") or (os.getenv ("HOME").."/.config/")).."/glxosd/"; 2 | local customPath = os.getenv ("GLXOSD_ADDITIONAL_CONFIG_LOCATION"); 3 | if not customPath or #customPath == 0 then 4 | customPath = homePath; 5 | end 6 | return { 7 | customPath, 8 | homePath, 9 | "/etc/glxosd/", 10 | glxosdPackageRoot.."/glxosd/conf/" 11 | } 12 | -------------------------------------------------------------------------------- /third-party/LuaJIT-2.0.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/LuaJIT-2.0.4.tar.gz -------------------------------------------------------------------------------- /third-party/freetype-2.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/freetype-2.6.tar.gz -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/blacklist: -------------------------------------------------------------------------------- 1 | EXT/draw_range_elements.txt 2 | EXT/static_vertex_array.txt 3 | EXT/vertex_array_set.alt.txt 4 | EXT/vertex_array_set.txt 5 | EXT/nurbs_tessellator.txt 6 | EXT/object_space_tess.txt 7 | SGI/filter4_parameters.txt 8 | SGIS/texture_color_mask.txt 9 | SGIX/dmbuffer.txt 10 | SGIX/instruments.txt 11 | SGIX/video_source.txt 12 | SGIX/hyperpipe_group.txt 13 | OES/OES_fixed_point.txt 14 | OES/OES_query_matrix.txt 15 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GLX_SUN_video_resize: -------------------------------------------------------------------------------- 1 | GLX_SUN_video_resize 2 | http://wwws.sun.com/software/graphics/opengl/extensions/glx_sun_video_resize.txt 3 | GLX_SUN_video_resize 4 | GL_VIDEO_RESIZE_COMPENSATION_SUN 0x85CD 5 | GLX_VIDEO_RESIZE_SUN 0x8171 6 | int glXVideoResizeSUN (Display* display, GLXDrawable window, float factor) 7 | int glXGetVideoResizeSUN (Display* display, GLXDrawable window, float* factor) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_ATIX_point_sprites: -------------------------------------------------------------------------------- 1 | GL_ATIX_point_sprites 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_point_sprites 4 | GL_TEXTURE_POINT_MODE_ATIX 0x60B0 5 | GL_TEXTURE_POINT_ONE_COORD_ATIX 0x60B1 6 | GL_TEXTURE_POINT_SPRITE_ATIX 0x60B2 7 | GL_POINT_SPRITE_CULL_MODE_ATIX 0x60B3 8 | GL_POINT_SPRITE_CULL_CENTER_ATIX 0x60B4 9 | GL_POINT_SPRITE_CULL_CLIP_ATIX 0x60B5 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_EXT_draw_instanced: -------------------------------------------------------------------------------- 1 | GL_EXT_draw_instanced 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_draw_instanced.txt 3 | GL_EXT_draw_instanced 4 | void glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount) 5 | void glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount) 6 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_EXT_draw_range_elements: -------------------------------------------------------------------------------- 1 | GL_EXT_draw_range_elements 2 | http://oss.sgi.com/projects/ogl-sample/registry/EXT/draw_range_elements.txt 3 | GL_EXT_draw_range_elements 4 | GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 5 | GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 6 | void glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices) 7 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_EXT_gpu_program_parameters: -------------------------------------------------------------------------------- 1 | GL_EXT_gpu_program_parameters 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_gpu_program_parameters.txt 3 | GL_EXT_gpu_program_parameters 4 | void glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat* params) 5 | void glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat* params) 6 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_EXT_texture_compression_latc: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_latc 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_compression_latc.txt 3 | GL_EXT_texture_compression_latc 4 | GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70 5 | GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71 6 | GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72 7 | GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73 8 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_EXT_texture_compression_rgtc: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_rgtc 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_compression_rgtc.txt 3 | GL_EXT_texture_compression_rgtc 4 | GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB 5 | GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC 6 | GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD 7 | GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_NVX_gpu_memory_info: -------------------------------------------------------------------------------- 1 | GL_NVX_gpu_memory_info 2 | http://developer.download.nvidia.com/opengl/specs/GL_NVX_gpu_memory_info.txt 3 | GL_NVX_gpu_memory_info 4 | GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX 0x9047 5 | GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX 0x9048 6 | GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX 0x9049 7 | GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX 0x904A 8 | GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX 0x904B 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_NV_fragment_program2: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program2 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_fragment_program2.txt 3 | GL_NV_fragment_program2 4 | GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 5 | GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 6 | GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 7 | GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 8 | GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_NV_geometry_program4: -------------------------------------------------------------------------------- 1 | GL_NV_geometry_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_geometry_program4.txt 3 | GL_NV_gpu_program4 4 | GL_GEOMETRY_PROGRAM_NV 0x8C26 5 | GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27 6 | GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 7 | void glProgramVertexLimitNV (GLenum target, GLint limit) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_NV_gpu_program5: -------------------------------------------------------------------------------- 1 | GL_NV_gpu_program5 2 | http://www.opengl.org/registry/specs/NV/gpu_program5.txt 3 | GL_NV_gpu_program5 4 | GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A 5 | GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B 6 | GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C 7 | GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D 8 | GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5E 9 | GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5F 10 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/core/gl/GL_NV_tessellation_program5: -------------------------------------------------------------------------------- 1 | GL_NV_tessellation_program5 2 | http://www.opengl.org/registry/specs/NV/tessellation_program5.txt 3 | GL_NV_gpu_program5 4 | GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 5 | GL_TESS_CONTROL_PROGRAM_NV 0x891E 6 | GL_TESS_EVALUATION_PROGRAM_NV 0x891F 7 | GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74 8 | GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/.dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/auto/extensions/gl/.dummy -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GLX_ARB_create_context_robustness: -------------------------------------------------------------------------------- 1 | GLX_ARB_create_context_robustness 2 | http://www.opengl.org/registry/specs/ARB/glx_create_context_robustness.txt 3 | GLX_ARB_create_context_robustness 4 | GLX_CONTEXT_ROBUST_ACCESS_BIT_ARB 0x00000004 5 | GLX_LOSE_CONTEXT_ON_RESET_ARB 0x8252 6 | GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 7 | GLX_NO_RESET_NOTIFICATION_ARB 0x8261 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GLX_NV_copy_image: -------------------------------------------------------------------------------- 1 | GLX_NV_copy_image 2 | http://www.opengl.org/registry/specs/NV/copy_image.txt 3 | GLX_NV_copy_image 4 | void glXCopyImageSubDataNV (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth) 5 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GLX_NV_present_video: -------------------------------------------------------------------------------- 1 | GLX_NV_present_video 2 | http://www.opengl.org/registry/specs/NV/present_video.txt 3 | GLX_NV_present_video 4 | GLX_NUM_VIDEO_SLOTS_NV 0x20F0 5 | int glXBindVideoDeviceNV (Display* dpy, unsigned int video_slot, unsigned int video_device, const int *attrib_list) 6 | unsigned int* glXEnumerateVideoDevicesNV (Display *dpy, int screen, int *nelements) 7 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GLX_SUN_video_resize: -------------------------------------------------------------------------------- 1 | GLX_SUN_video_resize 2 | http://wwws.sun.com/software/graphics/opengl/extensions/glx_sun_video_resize.txt 3 | GLX_SUN_video_resize 4 | GL_VIDEO_RESIZE_COMPENSATION_SUN 0x85CD 5 | GLX_VIDEO_RESIZE_SUN 0x8171 6 | int glXVideoResizeSUN (Display* display, GLXDrawable window, float factor) 7 | int glXGetVideoResizeSUN (Display* display, GLXDrawable window, float* factor) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_AMD_multi_draw_indirect: -------------------------------------------------------------------------------- 1 | GL_AMD_multi_draw_indirect 2 | http://www.opengl.org/registry/specs/AMD/multi_draw_indirect.txt 3 | GL_AMD_multi_draw_indirect 4 | void glMultiDrawArraysIndirectAMD (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride) 5 | void glMultiDrawElementsIndirectAMD (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride) 6 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_AMD_stencil_operation_extended: -------------------------------------------------------------------------------- 1 | GL_AMD_stencil_operation_extended 2 | http://www.opengl.org/registry/specs/AMD/stencil_operation_extended.txt 3 | GL_AMD_stencil_operation_extended 4 | GL_SET_AMD 0x874A 5 | GL_REPLACE_VALUE_AMD 0x874B 6 | GL_STENCIL_OP_VALUE_AMD 0x874C 7 | GL_STENCIL_BACK_OP_VALUE_AMD 0x874D 8 | void glStencilOpValueAMD (GLenum face, GLuint value) 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ANGLE_framebuffer_multisample: -------------------------------------------------------------------------------- 1 | GL_ANGLE_framebuffer_multisample 2 | https://code.google.com/p/angleproject/source/browse/#git%2Fextensions 3 | GL_ANGLE_framebuffer_multisample 4 | GL_RENDERBUFFER_SAMPLES_ANGLE 0x8CAB 5 | GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE 0x8D56 6 | GL_MAX_SAMPLES_ANGLE 0x8D57 7 | void glRenderbufferStorageMultisampleANGLE (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ANGLE_texture_compression_dxt1: -------------------------------------------------------------------------------- 1 | GL_ANGLE_texture_compression_dxt1 2 | https://code.google.com/p/angleproject/source/browse/#git%2Fextensions 3 | GL_ANGLE_texture_compression_dxt1 4 | GL_COMPRESSED_RGB_S3TC_DXT1_ANGLE 0x83F0 5 | GL_COMPRESSED_RGBA_S3TC_DXT1_ANGLE 0x83F1 6 | GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 7 | GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 8 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ANGLE_texture_compression_dxt3: -------------------------------------------------------------------------------- 1 | GL_ANGLE_texture_compression_dxt3 2 | https://code.google.com/p/angleproject/source/browse/#git%2Fextensions 3 | GL_ANGLE_texture_compression_dxt3 4 | GL_COMPRESSED_RGB_S3TC_DXT1_ANGLE 0x83F0 5 | GL_COMPRESSED_RGBA_S3TC_DXT1_ANGLE 0x83F1 6 | GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 7 | GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 8 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ANGLE_texture_compression_dxt5: -------------------------------------------------------------------------------- 1 | GL_ANGLE_texture_compression_dxt5 2 | https://code.google.com/p/angleproject/source/browse/#git%2Fextensions 3 | GL_ANGLE_texture_compression_dxt5 4 | GL_COMPRESSED_RGB_S3TC_DXT1_ANGLE 0x83F0 5 | GL_COMPRESSED_RGBA_S3TC_DXT1_ANGLE 0x83F1 6 | GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE 0x83F2 7 | GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE 0x83F3 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ANGLE_translated_shader_source: -------------------------------------------------------------------------------- 1 | GL_ANGLE_translated_shader_source 2 | https://code.google.com/p/angleproject/source/browse/#git%2Fextensions 3 | GL_ANGLE_translated_shader_source 4 | GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE 0x93A0 5 | void glGetTranslatedShaderSourceANGLE (GLuint shader, GLsizei bufsize, GLsizei* length, GLchar* source) 6 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_APPLE_flush_buffer_range: -------------------------------------------------------------------------------- 1 | GL_APPLE_flush_buffer_range 2 | http://www.opengl.org/registry/specs/APPLE/flush_buffer_range.txt 3 | GL_APPLE_flush_buffer_range 4 | GL_BUFFER_SERIALIZED_MODIFY_APPLE 0x8A12 5 | GL_BUFFER_FLUSHING_UNMAP_APPLE 0x8A13 6 | void glBufferParameteriAPPLE (GLenum target, GLenum pname, GLint param) 7 | void glFlushMappedBufferRangeAPPLE (GLenum target, GLintptr offset, GLsizeiptr size) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_APPLE_vertex_array_object: -------------------------------------------------------------------------------- 1 | GL_APPLE_vertex_array_object 2 | http://www.opengl.org/registry/specs/APPLE/vertex_array_object.txt 3 | GL_APPLE_vertex_array_object 4 | GL_VERTEX_ARRAY_BINDING_APPLE 0x85B5 5 | void glBindVertexArrayAPPLE (GLuint array) 6 | void glDeleteVertexArraysAPPLE (GLsizei n, const GLuint* arrays) 7 | void glGenVertexArraysAPPLE (GLsizei n, const GLuint* arrays) 8 | GLboolean glIsVertexArrayAPPLE (GLuint array) 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_ES3_2_compatibility: -------------------------------------------------------------------------------- 1 | GL_ARB_ES3_2_compatibility 2 | http://www.opengl.org/registry/specs/ARB/ES3_2_compatibility.txt 3 | GL_ARB_ES3_2_compatibility 4 | GL_PRIMITIVE_BOUNDING_BOX_ARB 0x92BE 5 | GL_MULTISAMPLE_LINE_WIDTH_RANGE_ARB 0x9381 6 | GL_MULTISAMPLE_LINE_WIDTH_GRANULARITY_ARB 0x9382 7 | void glPrimitiveBoundingBoxARB (GLfloat minX, GLfloat minY, GLfloat minZ, GLfloat minW, GLfloat maxX, GLfloat maxY, GLfloat maxZ, GLfloat maxW) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_cl_event: -------------------------------------------------------------------------------- 1 | GL_ARB_cl_event 2 | http://www.opengl.org/registry/specs/ARB/cl_event.txt 3 | GL_ARB_cl_event 4 | GL_SYNC_CL_EVENT_ARB 0x8240 5 | GL_SYNC_CL_EVENT_COMPLETE_ARB 0x8241 6 | GLsync glCreateSyncFromCLeventARB (cl_context context, cl_event event, GLbitfield flags) 7 | typedef struct _cl_context *cl_context 8 | typedef struct _cl_event *cl_event 9 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_clear_texture: -------------------------------------------------------------------------------- 1 | GL_ARB_clear_texture 2 | http://www.opengl.org/registry/specs/ARB/clear_texture.txt 3 | GL_ARB_clear_texture 4 | GL_CLEAR_TEXTURE 0x9365 5 | void glClearTexImage (GLuint texture, GLint level, GLenum format, GLenum type, const void *data) 6 | void glClearTexSubImage (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *data) 7 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_clip_control: -------------------------------------------------------------------------------- 1 | GL_ARB_clip_control 2 | http://www.opengl.org/registry/specs/ARB/clip_control.txt 3 | GL_ARB_clip_control 4 | GL_LOWER_LEFT 0x8CA1 5 | GL_UPPER_LEFT 0x8CA2 6 | GL_CLIP_ORIGIN 0x935C 7 | GL_CLIP_DEPTH_MODE 0x935D 8 | GL_NEGATIVE_ONE_TO_ONE 0x935E 9 | GL_ZERO_TO_ONE 0x935F 10 | void glClipControl (GLenum origin, GLenum depth) 11 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_color_buffer_float: -------------------------------------------------------------------------------- 1 | GL_ARB_color_buffer_float 2 | http://www.opengl.org/registry/specs/ARB/color_buffer_float.txt 3 | GL_ARB_color_buffer_float 4 | GL_RGBA_FLOAT_MODE_ARB 0x8820 5 | GL_CLAMP_VERTEX_COLOR_ARB 0x891A 6 | GL_CLAMP_FRAGMENT_COLOR_ARB 0x891B 7 | GL_CLAMP_READ_COLOR_ARB 0x891C 8 | GL_FIXED_ONLY_ARB 0x891D 9 | void glClampColorARB (GLenum target, GLenum clamp) 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_conditional_render_inverted: -------------------------------------------------------------------------------- 1 | GL_ARB_conditional_render_inverted 2 | http://www.opengl.org/registry/specs/ARB/conditional_render_inverted.txt 3 | GL_ARB_conditional_render_inverted 4 | GL_QUERY_WAIT_INVERTED 0x8E17 5 | GL_QUERY_NO_WAIT_INVERTED 0x8E18 6 | GL_QUERY_BY_REGION_WAIT_INVERTED 0x8E19 7 | GL_QUERY_BY_REGION_NO_WAIT_INVERTED 0x8E1A 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_copy_image: -------------------------------------------------------------------------------- 1 | GL_ARB_copy_image 2 | http://www.opengl.org/registry/specs/ARB/copy_image.txt 3 | GL_ARB_copy_image 4 | void glCopyImageSubData (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) 5 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_draw_indirect: -------------------------------------------------------------------------------- 1 | GL_ARB_draw_indirect 2 | http://www.opengl.org/registry/specs/ARB/draw_indirect.txt 3 | GL_ARB_draw_indirect 4 | GL_DRAW_INDIRECT_BUFFER 0x8F3F 5 | GL_DRAW_INDIRECT_BUFFER_BINDING 0x8F43 6 | void glDrawArraysIndirect (GLenum mode, const void *indirect) 7 | void glDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_gpu_shader5: -------------------------------------------------------------------------------- 1 | GL_ARB_gpu_shader5 2 | http://www.opengl.org/registry/specs/ARB/gpu_shader5.txt 3 | GL_ARB_gpu_shader5 4 | GL_GEOMETRY_SHADER_INVOCATIONS 0x887F 5 | GL_MAX_GEOMETRY_SHADER_INVOCATIONS 0x8E5A 6 | GL_MIN_FRAGMENT_INTERPOLATION_OFFSET 0x8E5B 7 | GL_MAX_FRAGMENT_INTERPOLATION_OFFSET 0x8E5C 8 | GL_FRAGMENT_INTERPOLATION_OFFSET_BITS 0x8E5D 9 | GL_MAX_VERTEX_STREAMS 0x8E71 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_multi_draw_indirect: -------------------------------------------------------------------------------- 1 | GL_ARB_multi_draw_indirect 2 | http://www.opengl.org/registry/specs/ARB/multi_draw_indirect.txt 3 | GL_ARB_multi_draw_indirect 4 | void glMultiDrawArraysIndirect (GLenum mode, const void *indirect, GLsizei primcount, GLsizei stride) 5 | void glMultiDrawElementsIndirect (GLenum mode, GLenum type, const void *indirect, GLsizei primcount, GLsizei stride) 6 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_point_parameters: -------------------------------------------------------------------------------- 1 | GL_ARB_point_parameters 2 | http://www.opengl.org/registry/specs/ARB/point_parameters.txt 3 | GL_ARB_point_parameters 4 | GL_POINT_SIZE_MIN_ARB 0x8126 5 | GL_POINT_SIZE_MAX_ARB 0x8127 6 | GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128 7 | GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129 8 | void glPointParameterfARB (GLenum pname, GLfloat param) 9 | void glPointParameterfvARB (GLenum pname, const GLfloat* params) 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_provoking_vertex: -------------------------------------------------------------------------------- 1 | GL_ARB_provoking_vertex 2 | http://www.opengl.org/registry/specs/ARB/provoking_vertex.txt 3 | GL_ARB_provoking_vertex 4 | GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C 5 | GL_FIRST_VERTEX_CONVENTION 0x8E4D 6 | GL_LAST_VERTEX_CONVENTION 0x8E4E 7 | GL_PROVOKING_VERTEX 0x8E4F 8 | void glProvokingVertex (GLenum mode) 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_compression_bptc: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_compression_bptc 2 | http://www.opengl.org/registry/specs/ARB/texture_compression_bptc.txt 3 | GL_ARB_texture_compression_bptc 4 | GL_COMPRESSED_RGBA_BPTC_UNORM_ARB 0x8E8C 5 | GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB 0x8E8D 6 | GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB 0x8E8E 7 | GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB 0x8E8F 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_texture_rectangle: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_rectangle 2 | http://www.opengl.org/registry/specs/ARB/texture_rectangle.txt 3 | GL_ARB_texture_rectangle 4 | GL_TEXTURE_RECTANGLE_ARB 0x84F5 5 | GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6 6 | GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7 7 | GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8 8 | GL_SAMPLER_2D_RECT_ARB 0x8B63 9 | GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_timer_query: -------------------------------------------------------------------------------- 1 | GL_ARB_timer_query 2 | http://www.opengl.org/registry/specs/ARB/timer_query.txt 3 | GL_ARB_timer_query 4 | GL_TIME_ELAPSED 0x88BF 5 | GL_TIMESTAMP 0x8E28 6 | void glGetQueryObjecti64v (GLuint id, GLenum pname, GLint64* params) 7 | void glGetQueryObjectui64v (GLuint id, GLenum pname, GLuint64* params) 8 | void glQueryCounter (GLuint id, GLenum target) 9 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_transform_feedback_instanced: -------------------------------------------------------------------------------- 1 | GL_ARB_transform_feedback_instanced 2 | http://www.opengl.org/registry/specs/ARB/transform_feedback_instanced.txt 3 | GL_ARB_transform_feedback_instanced 4 | void glDrawTransformFeedbackInstanced (GLenum mode, GLuint id, GLsizei primcount) 5 | void glDrawTransformFeedbackStreamInstanced (GLenum mode, GLuint id, GLuint stream, GLsizei primcount) 6 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ARB_vertex_array_object: -------------------------------------------------------------------------------- 1 | GL_ARB_vertex_array_object 2 | http://www.opengl.org/registry/specs/ARB/vertex_array_object.txt 3 | GL_ARB_vertex_array_object 4 | GL_VERTEX_ARRAY_BINDING 0x85B5 5 | void glBindVertexArray (GLuint array) 6 | void glDeleteVertexArrays (GLsizei n, const GLuint* arrays) 7 | void glGenVertexArrays (GLsizei n, GLuint* arrays) 8 | GLboolean glIsVertexArray (GLuint array) 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_ATIX_point_sprites: -------------------------------------------------------------------------------- 1 | GL_ATIX_point_sprites 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_point_sprites 4 | GL_TEXTURE_POINT_MODE_ATIX 0x60B0 5 | GL_TEXTURE_POINT_ONE_COORD_ATIX 0x60B1 6 | GL_TEXTURE_POINT_SPRITE_ATIX 0x60B2 7 | GL_POINT_SPRITE_CULL_MODE_ATIX 0x60B3 8 | GL_POINT_SPRITE_CULL_CENTER_ATIX 0x60B4 9 | GL_POINT_SPRITE_CULL_CLIP_ATIX 0x60B5 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_blend_color: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_color 2 | http://www.opengl.org/registry/specs/EXT/blend_color.txt 3 | GL_EXT_blend_color 4 | GL_CONSTANT_COLOR_EXT 0x8001 5 | GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002 6 | GL_CONSTANT_ALPHA_EXT 0x8003 7 | GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004 8 | GL_BLEND_COLOR_EXT 0x8005 9 | void glBlendColorEXT (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_blend_func_separate: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_func_separate 2 | http://www.opengl.org/registry/specs/EXT/blend_func_separate.txt 3 | GL_EXT_blend_func_separate 4 | GL_BLEND_DST_RGB_EXT 0x80C8 5 | GL_BLEND_SRC_RGB_EXT 0x80C9 6 | GL_BLEND_DST_ALPHA_EXT 0x80CA 7 | GL_BLEND_SRC_ALPHA_EXT 0x80CB 8 | void glBlendFuncSeparateEXT (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_color_subtable: -------------------------------------------------------------------------------- 1 | GL_EXT_color_subtable 2 | http://www.opengl.org/registry/specs/EXT/color_subtable.txt 3 | GL_EXT_color_subtable 4 | void glColorSubTableEXT (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void *data) 5 | void glCopyColorSubTableEXT (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width) 6 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_cull_vertex: -------------------------------------------------------------------------------- 1 | GL_EXT_cull_vertex 2 | http://www.opengl.org/registry/specs/EXT/cull_vertex.txt 3 | GL_EXT_cull_vertex 4 | GL_CULL_VERTEX_EXT 0x81AA 5 | GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB 6 | GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC 7 | void glCullParameterdvEXT (GLenum pname, GLdouble* params) 8 | void glCullParameterfvEXT (GLenum pname, GLfloat* params) 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_draw_instanced: -------------------------------------------------------------------------------- 1 | GL_EXT_draw_instanced 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_draw_instanced.txt 3 | GL_EXT_draw_instanced 4 | void glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount) 5 | void glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const void *indices, GLsizei primcount) 6 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_draw_range_elements: -------------------------------------------------------------------------------- 1 | GL_EXT_draw_range_elements 2 | http://oss.sgi.com/projects/ogl-sample/registry/EXT/draw_range_elements.txt 3 | GL_EXT_draw_range_elements 4 | GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 5 | GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 6 | void glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const void *indices) 7 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_gpu_program_parameters: -------------------------------------------------------------------------------- 1 | GL_EXT_gpu_program_parameters 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_gpu_program_parameters.txt 3 | GL_EXT_gpu_program_parameters 4 | void glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat* params) 5 | void glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat* params) 6 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_multi_draw_arrays: -------------------------------------------------------------------------------- 1 | GL_EXT_multi_draw_arrays 2 | http://www.opengl.org/registry/specs/EXT/multi_draw_arrays.txt 3 | GL_EXT_multi_draw_arrays 4 | void glMultiDrawArraysEXT (GLenum mode, const GLint* first, const GLsizei *count, GLsizei primcount) 5 | void glMultiDrawElementsEXT (GLenum mode, GLsizei* count, GLenum type, const void *const *indices, GLsizei primcount) 6 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_point_parameters: -------------------------------------------------------------------------------- 1 | GL_EXT_point_parameters 2 | http://www.opengl.org/registry/specs/EXT/point_parameters.txt 3 | GL_EXT_point_parameters 4 | GL_POINT_SIZE_MIN_EXT 0x8126 5 | GL_POINT_SIZE_MAX_EXT 0x8127 6 | GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128 7 | GL_DISTANCE_ATTENUATION_EXT 0x8129 8 | void glPointParameterfEXT (GLenum pname, GLfloat param) 9 | void glPointParameterfvEXT (GLenum pname, const GLfloat* params) 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_provoking_vertex: -------------------------------------------------------------------------------- 1 | GL_EXT_provoking_vertex 2 | http://www.opengl.org/registry/specs/EXT/provoking_vertex.txt 3 | GL_EXT_provoking_vertex 4 | GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT 0x8E4C 5 | GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D 6 | GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E 7 | GL_PROVOKING_VERTEX_EXT 0x8E4F 8 | void glProvokingVertexEXT (GLenum mode) 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_separate_shader_objects: -------------------------------------------------------------------------------- 1 | GL_EXT_separate_shader_objects 2 | http://www.opengl.org/registry/specs/EXT/separate_shader_objects.txt 3 | GL_EXT_separate_shader_objects 4 | GL_ACTIVE_PROGRAM_EXT 0x8B8D 5 | void glActiveProgramEXT (GLuint program) 6 | GLuint glCreateShaderProgramEXT (GLenum type, const GLchar* string) 7 | void glUseShaderProgramEXT (GLenum type, GLuint program) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_compression_latc: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_latc 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_compression_latc.txt 3 | GL_EXT_texture_compression_latc 4 | GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70 5 | GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71 6 | GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72 7 | GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73 8 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_compression_rgtc: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_rgtc 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_compression_rgtc.txt 3 | GL_EXT_texture_compression_rgtc 4 | GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB 5 | GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC 6 | GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD 7 | GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE 8 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_EXT_texture_compression_s3tc: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_s3tc 2 | http://www.opengl.org/registry/specs/EXT/texture_compression_s3tc.txt 3 | GL_EXT_texture_compression_s3tc 4 | GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 5 | GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 6 | GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 7 | GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_IBM_multimode_draw_arrays: -------------------------------------------------------------------------------- 1 | GL_IBM_multimode_draw_arrays 2 | http://www.opengl.org/registry/specs/IBM/multimode_draw_arrays.txt 3 | GL_IBM_multimode_draw_arrays 4 | void glMultiModeDrawArraysIBM (const GLenum* mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride) 5 | void glMultiModeDrawElementsIBM (const GLenum* mode, const GLsizei *count, GLenum type, const void *const *indices, GLsizei primcount, GLint modestride) 6 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_INGR_color_clamp: -------------------------------------------------------------------------------- 1 | GL_INGR_color_clamp 2 | http://www.opengl.org/registry/specs/INGR/color_clamp.txt 3 | GL_INGR_color_clamp 4 | GL_RED_MIN_CLAMP_INGR 0x8560 5 | GL_GREEN_MIN_CLAMP_INGR 0x8561 6 | GL_BLUE_MIN_CLAMP_INGR 0x8562 7 | GL_ALPHA_MIN_CLAMP_INGR 0x8563 8 | GL_RED_MAX_CLAMP_INGR 0x8564 9 | GL_GREEN_MAX_CLAMP_INGR 0x8565 10 | GL_BLUE_MAX_CLAMP_INGR 0x8566 11 | GL_ALPHA_MAX_CLAMP_INGR 0x8567 12 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_MESAX_texture_stack: -------------------------------------------------------------------------------- 1 | GL_MESAX_texture_stack 2 | http://www.opengl.org/registry/specs/MESAX/texture_stack.txt 3 | GL_MESAX_texture_stack 4 | GL_TEXTURE_1D_STACK_MESAX 0x8759 5 | GL_TEXTURE_2D_STACK_MESAX 0x875A 6 | GL_PROXY_TEXTURE_1D_STACK_MESAX 0x875B 7 | GL_PROXY_TEXTURE_2D_STACK_MESAX 0x875C 8 | GL_TEXTURE_1D_STACK_BINDING_MESAX 0x875D 9 | GL_TEXTURE_2D_STACK_BINDING_MESAX 0x875E 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NVX_gpu_memory_info: -------------------------------------------------------------------------------- 1 | GL_NVX_gpu_memory_info 2 | http://developer.download.nvidia.com/opengl/specs/GL_NVX_gpu_memory_info.txt 3 | GL_NVX_gpu_memory_info 4 | GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX 0x9047 5 | GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX 0x9048 6 | GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX 0x9049 7 | GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX 0x904A 8 | GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX 0x904B 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_conditional_render: -------------------------------------------------------------------------------- 1 | GL_NV_conditional_render 2 | http://www.opengl.org/registry/specs/NV/conditional_render.txt 3 | GL_NV_conditional_render 4 | GL_QUERY_WAIT_NV 0x8E13 5 | GL_QUERY_NO_WAIT_NV 0x8E14 6 | GL_QUERY_BY_REGION_WAIT_NV 0x8E15 7 | GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 8 | void glBeginConditionalRenderNV (GLuint id, GLenum mode) 9 | void glEndConditionalRenderNV (void) 10 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_conservative_raster: -------------------------------------------------------------------------------- 1 | GL_NV_conservative_raster 2 | http://www.opengl.org/registry/specs/NV/conservative_raster.txt 3 | GL_NV_conservative_raster 4 | GL_CONSERVATIVE_RASTERIZATION_NV 0x9346 5 | GL_SUBPIXEL_PRECISION_BIAS_X_BITS_NV 0x9347 6 | GL_SUBPIXEL_PRECISION_BIAS_Y_BITS_NV 0x9348 7 | GL_MAX_SUBPIXEL_PRECISION_BIAS_BITS_NV 0x9349 8 | void glSubpixelPrecisionBiasNV (GLuint xbits, GLuint ybits) 9 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_conservative_raster_dilate: -------------------------------------------------------------------------------- 1 | GL_NV_conservative_raster_dilate 2 | http://www.opengl.org/registry/specs/NV/conservative_raster_dilate.txt 3 | GL_NV_conservative_raster_dilate 4 | GL_CONSERVATIVE_RASTER_DILATE_NV 0x9379 5 | GL_CONSERVATIVE_RASTER_DILATE_RANGE_NV 0x937A 6 | GL_CONSERVATIVE_RASTER_DILATE_GRANULARITY_NV 0x937B 7 | void glConservativeRasterParameterfNV (GLenum pname, GLfloat value) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_copy_image: -------------------------------------------------------------------------------- 1 | GL_NV_copy_image 2 | http://www.opengl.org/registry/specs/NV/copy_image.txt 3 | GL_NV_copy_image 4 | void glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth) 5 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_fragment_program2: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program2 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_fragment_program2.txt 3 | GL_NV_fragment_program2 4 | GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 5 | GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 6 | GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 7 | GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 8 | GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_geometry_program4: -------------------------------------------------------------------------------- 1 | GL_NV_geometry_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_geometry_program4.txt 3 | GL_NV_gpu_program4 4 | GL_GEOMETRY_PROGRAM_NV 0x8C26 5 | GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27 6 | GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 7 | void glProgramVertexLimitNV (GLenum target, GLint limit) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_gpu_program5: -------------------------------------------------------------------------------- 1 | GL_NV_gpu_program5 2 | http://www.opengl.org/registry/specs/NV/gpu_program5.txt 3 | GL_NV_gpu_program5 4 | GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A 5 | GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B 6 | GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C 7 | GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D 8 | GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5E 9 | GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5F 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_internalformat_sample_query: -------------------------------------------------------------------------------- 1 | GL_NV_internalformat_sample_query 2 | http://www.opengl.org/registry/specs/NV/internalformat_sample_query.txt 3 | GL_NV_internalformat_sample_query 4 | GL_MULTISAMPLES_NV 0x9371 5 | GL_SUPERSAMPLE_SCALE_X_NV 0x9372 6 | GL_SUPERSAMPLE_SCALE_Y_NV 0x9373 7 | GL_CONFORMANT_NV 0x9374 8 | void glGetInternalformatSampleivNV (GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei bufSize, GLint* params) 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_point_sprite: -------------------------------------------------------------------------------- 1 | GL_NV_point_sprite 2 | http://www.opengl.org/registry/specs/NV/point_sprite.txt 3 | GL_NV_point_sprite 4 | GL_POINT_SPRITE_NV 0x8861 5 | GL_COORD_REPLACE_NV 0x8862 6 | GL_POINT_SPRITE_R_MODE_NV 0x8863 7 | void glPointParameteriNV (GLenum pname, GLint param) 8 | void glPointParameterivNV (GLenum pname, const GLint* params) 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_register_combiners2: -------------------------------------------------------------------------------- 1 | GL_NV_register_combiners2 2 | http://www.opengl.org/registry/specs/NV/register_combiners2.txt 3 | GL_NV_register_combiners2 4 | GL_PER_STAGE_CONSTANTS_NV 0x8535 5 | void glCombinerStageParameterfvNV (GLenum stage, GLenum pname, const GLfloat* params) 6 | void glGetCombinerStageParameterfvNV (GLenum stage, GLenum pname, GLfloat* params) 7 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_NV_tessellation_program5: -------------------------------------------------------------------------------- 1 | GL_NV_tessellation_program5 2 | http://www.opengl.org/registry/specs/NV/tessellation_program5.txt 3 | GL_NV_gpu_program5 4 | GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 5 | GL_TESS_CONTROL_PROGRAM_NV 0x891E 6 | GL_TESS_EVALUATION_PROGRAM_NV 0x891F 7 | GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74 8 | GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_REGAL_enable: -------------------------------------------------------------------------------- 1 | GL_REGAL_enable 2 | https://github.com/p3/regal/tree/master/doc/extensions 3 | GL_REGAL_enable 4 | GL_ERROR_REGAL 0x9322 5 | GL_DEBUG_REGAL 0x9323 6 | GL_LOG_REGAL 0x9324 7 | GL_EMULATION_REGAL 0x9325 8 | GL_DRIVER_REGAL 0x9326 9 | GL_MISSING_REGAL 0x9360 10 | GL_TRACE_REGAL 0x9361 11 | GL_CACHE_REGAL 0x9362 12 | GL_CODE_REGAL 0x9363 13 | GL_STATISTICS_REGAL 0x9364 14 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_SGIS_color_range: -------------------------------------------------------------------------------- 1 | GL_SGIS_color_range 2 | http://www.opengl.org/registry/specs/SGIS/color_range.txt 3 | GL_SGIS_color_range 4 | GL_EXTENDED_RANGE_SGIS 0x85A5 5 | GL_MIN_RED_SGIS 0x85A6 6 | GL_MAX_RED_SGIS 0x85A7 7 | GL_MIN_GREEN_SGIS 0x85A8 8 | GL_MAX_GREEN_SGIS 0x85A9 9 | GL_MIN_BLUE_SGIS 0x85AA 10 | GL_MAX_BLUE_SGIS 0x85AB 11 | GL_MIN_ALPHA_SGIS 0x85AC 12 | GL_MAX_ALPHA_SGIS 0x85AD 13 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_SGIX_async: -------------------------------------------------------------------------------- 1 | GL_SGIX_async 2 | http://www.opengl.org/registry/specs/SGIX/async.txt 3 | GL_SGIX_async 4 | GL_ASYNC_MARKER_SGIX 0x8329 5 | void glAsyncMarkerSGIX (GLuint marker) 6 | void glDeleteAsyncMarkersSGIX (GLuint marker, GLsizei range) 7 | GLint glFinishAsyncSGIX (GLuint* markerp) 8 | GLuint glGenAsyncMarkersSGIX (GLsizei range) 9 | GLboolean glIsAsyncMarkerSGIX (GLuint marker) 10 | GLint glPollAsyncSGIX (GLuint* markerp) 11 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_SGIX_async_pixel: -------------------------------------------------------------------------------- 1 | GL_SGIX_async_pixel 2 | http://www.opengl.org/registry/specs/SGIX/async_pixel.txt 3 | GL_SGIX_async_pixel 4 | GL_ASYNC_TEX_IMAGE_SGIX 0x835C 5 | GL_ASYNC_DRAW_PIXELS_SGIX 0x835D 6 | GL_ASYNC_READ_PIXELS_SGIX 0x835E 7 | GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F 8 | GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360 9 | GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_SGIX_sprite: -------------------------------------------------------------------------------- 1 | GL_SGIX_sprite 2 | http://www.opengl.org/registry/specs/SGIX/sprite.txt 3 | GL_SGIX_sprite 4 | void glSpriteParameterfSGIX (GLenum pname, GLfloat param) 5 | void glSpriteParameterfvSGIX (GLenum pname, GLfloat* params) 6 | void glSpriteParameteriSGIX (GLenum pname, GLint param) 7 | void glSpriteParameterivSGIX (GLenum pname, GLint* params) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/GL_SGIX_texture_scale_bias: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_scale_bias 2 | http://www.opengl.org/registry/specs/SGIX/texture_scale_bias.txt 3 | GL_SGIX_texture_scale_bias 4 | GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179 5 | GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A 6 | GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B 7 | GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/WGL_3DL_stereo_control: -------------------------------------------------------------------------------- 1 | WGL_3DL_stereo_control 2 | http://www.opengl.org/registry/specs/3DL/stereo_control.txt 3 | WGL_3DL_stereo_control 4 | WGL_STEREO_EMITTER_ENABLE_3DL 0x2055 5 | WGL_STEREO_EMITTER_DISABLE_3DL 0x2056 6 | WGL_STEREO_POLARITY_NORMAL_3DL 0x2057 7 | WGL_STEREO_POLARITY_INVERT_3DL 0x2058 8 | BOOL wglSetStereoEmitterState3DL (HDC hDC, UINT uState) 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/WGL_ARB_create_context_robustness: -------------------------------------------------------------------------------- 1 | WGL_ARB_create_context_robustness 2 | http://www.opengl.org/registry/specs/ARB/wgl_create_context_robustness.txt 3 | WGL_ARB_create_context_robustness 4 | WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB 0x00000004 5 | WGL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 6 | WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 7 | WGL_NO_RESET_NOTIFICATION_ARB 0x8261 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/WGL_ARB_make_current_read: -------------------------------------------------------------------------------- 1 | WGL_ARB_make_current_read 2 | http://www.opengl.org/registry/specs/ARB/wgl_make_current_read.txt 3 | WGL_ARB_make_current_read 4 | HDC wglGetCurrentReadDCARB (VOID) 5 | BOOL wglMakeContextCurrentARB (HDC hDrawDC, HDC hReadDC, HGLRC hglrc) 6 | ERROR_INVALID_PIXEL_TYPE_ARB 0x2043 7 | ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB 0x2054 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/WGL_EXT_display_color_table: -------------------------------------------------------------------------------- 1 | WGL_EXT_display_color_table 2 | http://www.opengl.org/registry/specs/EXT/wgl_display_color_table.txt 3 | WGL_EXT_display_color_table 4 | GLboolean wglBindDisplayColorTableEXT (GLushort id) 5 | GLboolean wglCreateDisplayColorTableEXT (GLushort id) 6 | void wglDestroyDisplayColorTableEXT (GLushort id) 7 | GLboolean wglLoadDisplayColorTableEXT (GLushort* table, GLuint length) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/WGL_I3D_swap_frame_usage: -------------------------------------------------------------------------------- 1 | WGL_I3D_swap_frame_usage 2 | http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_usage.txt 3 | WGL_I3D_swap_frame_usage 4 | BOOL wglBeginFrameTrackingI3D (void) 5 | BOOL wglEndFrameTrackingI3D (void) 6 | BOOL wglGetFrameUsageI3D (float* pUsage) 7 | BOOL wglQueryFrameTrackingI3D (DWORD* pFrameCount, DWORD *pMissedFrames, float *pLastMissedUsage) 8 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/WGL_NV_copy_image: -------------------------------------------------------------------------------- 1 | WGL_NV_copy_image 2 | http://www.opengl.org/registry/specs/NV/copy_image.txt 3 | WGL_NV_copy_image 4 | BOOL wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth) 5 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/extensions/gl/WGL_NV_render_depth_texture: -------------------------------------------------------------------------------- 1 | WGL_NV_render_depth_texture 2 | http://www.opengl.org/registry/specs/NV/render_depth_texture.txt 3 | WGL_NV_render_depth_texture 4 | WGL_NO_TEXTURE_ARB 0x2077 5 | WGL_BIND_TO_TEXTURE_DEPTH_NV 0x20A3 6 | WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV 0x20A4 7 | WGL_DEPTH_TEXTURE_FORMAT_NV 0x20A5 8 | WGL_TEXTURE_DEPTH_COMPONENT_NV 0x20A6 9 | WGL_DEPTH_COMPONENT_NV 0x20A7 10 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/src/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/src/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/auto/src/glew.rc -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/src/glew_str_head.c: -------------------------------------------------------------------------------- 1 | #ifdef GLEW_MX 2 | GLboolean GLEWAPIENTRY glewContextIsSupported (const GLEWContext* ctx, const char* name) 3 | #else 4 | GLboolean GLEWAPIENTRY glewIsSupported (const char* name) 5 | #endif 6 | { 7 | const GLubyte* pos = (const GLubyte*)name; 8 | GLuint len = _glewStrLen(pos); 9 | GLboolean ret = GL_TRUE; 10 | while (ret && len > 0) 11 | { 12 | if (_glewStrSame1(&pos, &len, (const GLubyte*)"GL_", 3)) 13 | { 14 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/src/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/auto/src/glewinfo.rc -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/src/glewinfo_glx.c: -------------------------------------------------------------------------------- 1 | } 2 | 3 | #else /* _UNIX */ 4 | 5 | static void glxewInfo () 6 | { 7 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/src/glewinfo_wgl.c: -------------------------------------------------------------------------------- 1 | } 2 | 3 | /* ------------------------------------------------------------------------ */ 4 | 5 | #ifdef _WIN32 6 | 7 | static void wglewInfo () 8 | { 9 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/auto/src/visualinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/auto/src/visualinfo.rc -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/build/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/build/glew.rc -------------------------------------------------------------------------------- /third-party/glew-1.13.0/build/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/build/glewinfo.rc -------------------------------------------------------------------------------- /third-party/glew-1.13.0/build/visualinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/build/visualinfo.rc -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/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 | -------------------------------------------------------------------------------- /third-party/glew-1.13.0/doc/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/doc/github.png -------------------------------------------------------------------------------- /third-party/glew-1.13.0/doc/glew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/doc/glew.png -------------------------------------------------------------------------------- /third-party/glew-1.13.0/doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/doc/new.png -------------------------------------------------------------------------------- /third-party/glew-1.13.0/doc/ogl_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickguletskii/GLXOSD/dbb44b7dbb7e02c5cb1e9eef21ed2a869cf3d7cd/third-party/glew-1.13.0/doc/ogl_sm.jpg -------------------------------------------------------------------------------- /third-party/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 | --------------------------------------------------------------------------------