├── .editorconfig ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── build.cmd ├── build.sh ├── docs ├── doxyfile ├── images │ ├── hui.png │ ├── hui_logo.png │ ├── hui_sample_code.gif │ ├── hui_sample_code.png │ └── patreon.png └── old docking code.txt ├── examples ├── common │ ├── opengl_graphics_provider.cpp │ ├── opengl_graphics_provider.h │ ├── opengl_texture_array.cpp │ ├── opengl_texture_array.h │ ├── opengl_vertex_buffer.cpp │ ├── opengl_vertex_buffer.h │ ├── sdl2_input_provider.cpp │ ├── sdl2_input_provider.h │ ├── sfml_input_provider.cpp │ └── sfml_input_provider.h ├── custom_widgets │ ├── main.cpp │ └── premake5.lua ├── premake5.lua ├── widget_showroom │ ├── main.cpp │ └── premake5.lua └── without_docking │ ├── main.cpp │ └── premake5.lua ├── generate.cmd ├── generate.sh ├── include ├── horus.h ├── horus_interfaces.h └── osiris.h ├── libs ├── freetype.lua ├── glew.lua ├── glew │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── auto │ │ ├── Makefile │ │ ├── bin │ │ │ ├── filter_gl_ext.sh │ │ │ ├── filter_gles_ext.sh │ │ │ ├── filter_spec.py │ │ │ ├── make.pl │ │ │ ├── make_def_fun.pl │ │ │ ├── make_def_var.pl │ │ │ ├── make_enable_index.pl │ │ │ ├── make_header.pl │ │ │ ├── make_html.pl │ │ │ ├── make_index.pl │ │ │ ├── make_info.pl │ │ │ ├── make_info_list.pl │ │ │ ├── make_init.pl │ │ │ ├── make_initd.pl │ │ │ ├── make_list.pl │ │ │ ├── make_list2.pl │ │ │ ├── make_str.pl │ │ │ ├── make_struct_fun.pl │ │ │ ├── make_struct_var.pl │ │ │ ├── parse_spec.pl │ │ │ ├── parse_xml.py │ │ │ └── update_ext.sh │ │ ├── blacklist │ │ ├── core │ │ │ └── gl │ │ │ │ ├── EGL_EXT_device_base │ │ │ │ ├── EGL_KHR_fence_sync │ │ │ │ ├── EGL_KHR_image_base │ │ │ │ ├── EGL_KHR_lock_surface3 │ │ │ │ ├── EGL_VERSION_1_0 │ │ │ │ ├── EGL_VERSION_1_1 │ │ │ │ ├── EGL_VERSION_1_2 │ │ │ │ ├── EGL_VERSION_1_3 │ │ │ │ ├── EGL_VERSION_1_4 │ │ │ │ ├── EGL_VERSION_1_5 │ │ │ │ ├── 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_external_buffer │ │ │ │ ├── GL_EXT_fog_coord │ │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ │ ├── GL_EXT_memory_object │ │ │ │ ├── GL_EXT_memory_object_fd │ │ │ │ ├── GL_EXT_memory_object_win32 │ │ │ │ ├── GL_EXT_packed_float │ │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ │ ├── GL_EXT_secondary_color │ │ │ │ ├── GL_EXT_semaphore │ │ │ │ ├── GL_EXT_semaphore_fd │ │ │ │ ├── GL_EXT_semaphore_win32 │ │ │ │ ├── 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_VERSION_4_6 │ │ │ │ ├── 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 │ │ │ │ ├── EGL_ANDROID_blob_cache │ │ │ │ ├── EGL_ANDROID_create_native_client_buffer │ │ │ │ ├── EGL_ANDROID_framebuffer_target │ │ │ │ ├── EGL_ANDROID_front_buffer_auto_refresh │ │ │ │ ├── EGL_ANDROID_get_frame_timestamps │ │ │ │ ├── EGL_ANDROID_get_native_client_buffer │ │ │ │ ├── EGL_ANDROID_image_native_buffer │ │ │ │ ├── EGL_ANDROID_native_fence_sync │ │ │ │ ├── EGL_ANDROID_presentation_time │ │ │ │ ├── EGL_ANDROID_recordable │ │ │ │ ├── EGL_ANGLE_d3d_share_handle_client_buffer │ │ │ │ ├── EGL_ANGLE_device_d3d │ │ │ │ ├── EGL_ANGLE_query_surface_pointer │ │ │ │ ├── EGL_ANGLE_surface_d3d_texture_2d_share_handle │ │ │ │ ├── EGL_ANGLE_window_fixed_size │ │ │ │ ├── EGL_ARM_implicit_external_sync │ │ │ │ ├── EGL_ARM_pixmap_multisample_discard │ │ │ │ ├── EGL_EXT_bind_to_front │ │ │ │ ├── EGL_EXT_buffer_age │ │ │ │ ├── EGL_EXT_client_extensions │ │ │ │ ├── EGL_EXT_client_sync │ │ │ │ ├── EGL_EXT_compositor │ │ │ │ ├── EGL_EXT_create_context_robustness │ │ │ │ ├── EGL_EXT_device_base │ │ │ │ ├── EGL_EXT_device_drm │ │ │ │ ├── EGL_EXT_device_enumeration │ │ │ │ ├── EGL_EXT_device_openwf │ │ │ │ ├── EGL_EXT_device_query │ │ │ │ ├── EGL_EXT_gl_colorspace_bt2020_linear │ │ │ │ ├── EGL_EXT_gl_colorspace_bt2020_pq │ │ │ │ ├── EGL_EXT_gl_colorspace_display_p3 │ │ │ │ ├── EGL_EXT_gl_colorspace_display_p3_linear │ │ │ │ ├── EGL_EXT_gl_colorspace_scrgb │ │ │ │ ├── EGL_EXT_gl_colorspace_scrgb_linear │ │ │ │ ├── EGL_EXT_image_dma_buf_import │ │ │ │ ├── EGL_EXT_image_dma_buf_import_modifiers │ │ │ │ ├── EGL_EXT_image_gl_colorspace │ │ │ │ ├── EGL_EXT_image_implicit_sync_control │ │ │ │ ├── EGL_EXT_multiview_window │ │ │ │ ├── EGL_EXT_output_base │ │ │ │ ├── EGL_EXT_output_drm │ │ │ │ ├── EGL_EXT_output_openwf │ │ │ │ ├── EGL_EXT_pixel_format_float │ │ │ │ ├── EGL_EXT_platform_base │ │ │ │ ├── EGL_EXT_platform_device │ │ │ │ ├── EGL_EXT_platform_wayland │ │ │ │ ├── EGL_EXT_platform_x11 │ │ │ │ ├── EGL_EXT_protected_content │ │ │ │ ├── EGL_EXT_protected_surface │ │ │ │ ├── EGL_EXT_stream_consumer_egloutput │ │ │ │ ├── EGL_EXT_surface_CTA861_3_metadata │ │ │ │ ├── EGL_EXT_surface_SMPTE2086_metadata │ │ │ │ ├── EGL_EXT_swap_buffers_with_damage │ │ │ │ ├── EGL_EXT_sync_reuse │ │ │ │ ├── EGL_EXT_yuv_surface │ │ │ │ ├── EGL_HI_clientpixmap │ │ │ │ ├── EGL_HI_colorformats │ │ │ │ ├── EGL_IMG_context_priority │ │ │ │ ├── EGL_IMG_image_plane_attribs │ │ │ │ ├── EGL_KHR_cl_event │ │ │ │ ├── EGL_KHR_cl_event2 │ │ │ │ ├── EGL_KHR_client_get_all_proc_addresses │ │ │ │ ├── EGL_KHR_config_attribs │ │ │ │ ├── EGL_KHR_context_flush_control │ │ │ │ ├── EGL_KHR_create_context │ │ │ │ ├── EGL_KHR_create_context_no_error │ │ │ │ ├── EGL_KHR_debug │ │ │ │ ├── EGL_KHR_display_reference │ │ │ │ ├── EGL_KHR_fence_sync │ │ │ │ ├── EGL_KHR_get_all_proc_addresses │ │ │ │ ├── EGL_KHR_gl_colorspace │ │ │ │ ├── EGL_KHR_gl_renderbuffer_image │ │ │ │ ├── EGL_KHR_gl_texture_2D_image │ │ │ │ ├── EGL_KHR_gl_texture_3D_image │ │ │ │ ├── EGL_KHR_gl_texture_cubemap_image │ │ │ │ ├── EGL_KHR_image │ │ │ │ ├── EGL_KHR_image_base │ │ │ │ ├── EGL_KHR_image_pixmap │ │ │ │ ├── EGL_KHR_lock_surface │ │ │ │ ├── EGL_KHR_lock_surface2 │ │ │ │ ├── EGL_KHR_lock_surface3 │ │ │ │ ├── EGL_KHR_mutable_render_buffer │ │ │ │ ├── EGL_KHR_no_config_context │ │ │ │ ├── EGL_KHR_partial_update │ │ │ │ ├── EGL_KHR_platform_android │ │ │ │ ├── EGL_KHR_platform_gbm │ │ │ │ ├── EGL_KHR_platform_wayland │ │ │ │ ├── EGL_KHR_platform_x11 │ │ │ │ ├── EGL_KHR_reusable_sync │ │ │ │ ├── EGL_KHR_stream │ │ │ │ ├── EGL_KHR_stream_attrib │ │ │ │ ├── EGL_KHR_stream_consumer_gltexture │ │ │ │ ├── EGL_KHR_stream_cross_process_fd │ │ │ │ ├── EGL_KHR_stream_fifo │ │ │ │ ├── EGL_KHR_stream_producer_aldatalocator │ │ │ │ ├── EGL_KHR_stream_producer_eglsurface │ │ │ │ ├── EGL_KHR_surfaceless_context │ │ │ │ ├── EGL_KHR_swap_buffers_with_damage │ │ │ │ ├── EGL_KHR_vg_parent_image │ │ │ │ ├── EGL_KHR_wait_sync │ │ │ │ ├── EGL_MESA_drm_image │ │ │ │ ├── EGL_MESA_image_dma_buf_export │ │ │ │ ├── EGL_MESA_platform_gbm │ │ │ │ ├── EGL_MESA_platform_surfaceless │ │ │ │ ├── EGL_NOK_swap_region │ │ │ │ ├── EGL_NOK_swap_region2 │ │ │ │ ├── EGL_NOK_texture_from_pixmap │ │ │ │ ├── EGL_NV_3dvision_surface │ │ │ │ ├── EGL_NV_context_priority_realtime │ │ │ │ ├── EGL_NV_coverage_sample │ │ │ │ ├── EGL_NV_coverage_sample_resolve │ │ │ │ ├── EGL_NV_cuda_event │ │ │ │ ├── EGL_NV_depth_nonlinear │ │ │ │ ├── EGL_NV_device_cuda │ │ │ │ ├── EGL_NV_native_query │ │ │ │ ├── EGL_NV_post_convert_rounding │ │ │ │ ├── EGL_NV_post_sub_buffer │ │ │ │ ├── EGL_NV_robustness_video_memory_purge │ │ │ │ ├── EGL_NV_stream_consumer_gltexture_yuv │ │ │ │ ├── EGL_NV_stream_cross_display │ │ │ │ ├── EGL_NV_stream_cross_object │ │ │ │ ├── EGL_NV_stream_cross_partition │ │ │ │ ├── EGL_NV_stream_cross_process │ │ │ │ ├── EGL_NV_stream_cross_system │ │ │ │ ├── EGL_NV_stream_fifo_next │ │ │ │ ├── EGL_NV_stream_fifo_synchronous │ │ │ │ ├── EGL_NV_stream_flush │ │ │ │ ├── EGL_NV_stream_frame_limits │ │ │ │ ├── EGL_NV_stream_metadata │ │ │ │ ├── EGL_NV_stream_remote │ │ │ │ ├── EGL_NV_stream_reset │ │ │ │ ├── EGL_NV_stream_socket │ │ │ │ ├── EGL_NV_stream_socket_inet │ │ │ │ ├── EGL_NV_stream_socket_unix │ │ │ │ ├── EGL_NV_stream_sync │ │ │ │ ├── EGL_NV_sync │ │ │ │ ├── EGL_NV_system_time │ │ │ │ ├── EGL_TIZEN_image_native_buffer │ │ │ │ ├── EGL_TIZEN_image_native_surface │ │ │ │ ├── GLX_3DFX_multisample │ │ │ │ ├── GLX_AMD_gpu_association │ │ │ │ ├── GLX_ARB_context_flush_control │ │ │ │ ├── GLX_ARB_create_context │ │ │ │ ├── GLX_ARB_create_context_no_error │ │ │ │ ├── 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_libglvnd │ │ │ │ ├── GLX_EXT_no_config_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_robustness_video_memory_purge │ │ │ │ ├── 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_compressed_3DC_texture │ │ │ │ ├── GL_AMD_compressed_ATC_texture │ │ │ │ ├── GL_AMD_conservative_depth │ │ │ │ ├── GL_AMD_debug_output │ │ │ │ ├── GL_AMD_depth_clamp_separate │ │ │ │ ├── GL_AMD_draw_buffers_blend │ │ │ │ ├── GL_AMD_framebuffer_multisample_advanced │ │ │ │ ├── GL_AMD_framebuffer_sample_positions │ │ │ │ ├── GL_AMD_gcn_shader │ │ │ │ ├── GL_AMD_gpu_shader_half_float │ │ │ │ ├── GL_AMD_gpu_shader_half_float_fetch │ │ │ │ ├── GL_AMD_gpu_shader_int16 │ │ │ │ ├── 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_program_binary_Z400 │ │ │ │ ├── GL_AMD_query_buffer_object │ │ │ │ ├── GL_AMD_sample_positions │ │ │ │ ├── GL_AMD_seamless_cubemap_per_texture │ │ │ │ ├── GL_AMD_shader_atomic_counter_ops │ │ │ │ ├── GL_AMD_shader_ballot │ │ │ │ ├── GL_AMD_shader_explicit_vertex_parameter │ │ │ │ ├── GL_AMD_shader_image_load_store_lod │ │ │ │ ├── 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_gather_bias_lod │ │ │ │ ├── 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_ANDROID_extension_pack_es31a │ │ │ │ ├── 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_clip_distance │ │ │ │ ├── GL_APPLE_color_buffer_packed_float │ │ │ │ ├── GL_APPLE_copy_texture_levels │ │ │ │ ├── GL_APPLE_element_array │ │ │ │ ├── GL_APPLE_fence │ │ │ │ ├── GL_APPLE_float_pixels │ │ │ │ ├── GL_APPLE_flush_buffer_range │ │ │ │ ├── GL_APPLE_framebuffer_multisample │ │ │ │ ├── GL_APPLE_object_purgeable │ │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ │ ├── GL_APPLE_rgb_422 │ │ │ │ ├── GL_APPLE_row_bytes │ │ │ │ ├── GL_APPLE_specular_vector │ │ │ │ ├── GL_APPLE_sync │ │ │ │ ├── GL_APPLE_texture_2D_limited_npot │ │ │ │ ├── GL_APPLE_texture_format_BGRA8888 │ │ │ │ ├── GL_APPLE_texture_max_level │ │ │ │ ├── GL_APPLE_texture_packed_float │ │ │ │ ├── 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_gl_spirv │ │ │ │ ├── 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_polygon_offset_clamp │ │ │ │ ├── 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_spirv_extensions │ │ │ │ ├── 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_anisotropic │ │ │ │ ├── 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_ARM_mali_program_binary │ │ │ │ ├── GL_ARM_mali_shader_binary │ │ │ │ ├── GL_ARM_rgba8 │ │ │ │ ├── GL_ARM_shader_framebuffer_fetch │ │ │ │ ├── GL_ARM_shader_framebuffer_fetch_depth_stencil │ │ │ │ ├── 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_DMP_program_binary │ │ │ │ ├── GL_DMP_shader_binary │ │ │ │ ├── GL_EGL_KHR_context_flush_control │ │ │ │ ├── GL_EGL_NV_depth_nonlinear │ │ │ │ ├── GL_EGL_NV_robustness_video_memory_purge │ │ │ │ ├── GL_EXT_422_pixels │ │ │ │ ├── GL_EXT_Cg_shader │ │ │ │ ├── GL_EXT_EGL_image_array │ │ │ │ ├── GL_EXT_EGL_image_external_wrap_modes │ │ │ │ ├── GL_EXT_EGL_image_storage │ │ │ │ ├── GL_EXT_YUV_target │ │ │ │ ├── GL_EXT_abgr │ │ │ │ ├── GL_EXT_base_instance │ │ │ │ ├── GL_EXT_bgra │ │ │ │ ├── GL_EXT_bindable_uniform │ │ │ │ ├── GL_EXT_blend_color │ │ │ │ ├── GL_EXT_blend_equation_separate │ │ │ │ ├── GL_EXT_blend_func_extended │ │ │ │ ├── GL_EXT_blend_func_separate │ │ │ │ ├── GL_EXT_blend_logic_op │ │ │ │ ├── GL_EXT_blend_minmax │ │ │ │ ├── GL_EXT_blend_subtract │ │ │ │ ├── GL_EXT_buffer_storage │ │ │ │ ├── GL_EXT_clear_texture │ │ │ │ ├── GL_EXT_clip_control │ │ │ │ ├── GL_EXT_clip_cull_distance │ │ │ │ ├── GL_EXT_clip_volume_hint │ │ │ │ ├── GL_EXT_cmyka │ │ │ │ ├── GL_EXT_color_buffer_float │ │ │ │ ├── GL_EXT_color_buffer_half_float │ │ │ │ ├── GL_EXT_color_subtable │ │ │ │ ├── GL_EXT_compiled_vertex_array │ │ │ │ ├── GL_EXT_compressed_ETC1_RGB8_sub_texture │ │ │ │ ├── GL_EXT_conservative_depth │ │ │ │ ├── GL_EXT_convolution │ │ │ │ ├── GL_EXT_coordinate_frame │ │ │ │ ├── GL_EXT_copy_image │ │ │ │ ├── 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_discard_framebuffer │ │ │ │ ├── GL_EXT_disjoint_timer_query │ │ │ │ ├── GL_EXT_draw_buffers │ │ │ │ ├── GL_EXT_draw_buffers2 │ │ │ │ ├── GL_EXT_draw_buffers_indexed │ │ │ │ ├── GL_EXT_draw_elements_base_vertex │ │ │ │ ├── GL_EXT_draw_instanced │ │ │ │ ├── GL_EXT_draw_range_elements │ │ │ │ ├── GL_EXT_draw_transform_feedback │ │ │ │ ├── GL_EXT_external_buffer │ │ │ │ ├── GL_EXT_float_blend │ │ │ │ ├── GL_EXT_fog_coord │ │ │ │ ├── GL_EXT_frag_depth │ │ │ │ ├── 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_point_size │ │ │ │ ├── GL_EXT_geometry_shader │ │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ │ ├── GL_EXT_gpu_shader5 │ │ │ │ ├── GL_EXT_histogram │ │ │ │ ├── GL_EXT_index_array_formats │ │ │ │ ├── GL_EXT_index_func │ │ │ │ ├── GL_EXT_index_material │ │ │ │ ├── GL_EXT_index_texture │ │ │ │ ├── GL_EXT_instanced_arrays │ │ │ │ ├── GL_EXT_light_texture │ │ │ │ ├── GL_EXT_map_buffer_range │ │ │ │ ├── GL_EXT_memory_object │ │ │ │ ├── GL_EXT_memory_object_fd │ │ │ │ ├── GL_EXT_memory_object_win32 │ │ │ │ ├── GL_EXT_misc_attribute │ │ │ │ ├── GL_EXT_multi_draw_arrays │ │ │ │ ├── GL_EXT_multi_draw_indirect │ │ │ │ ├── GL_EXT_multiple_textures │ │ │ │ ├── GL_EXT_multisample │ │ │ │ ├── GL_EXT_multisample_compatibility │ │ │ │ ├── GL_EXT_multisampled_render_to_texture │ │ │ │ ├── GL_EXT_multisampled_render_to_texture2 │ │ │ │ ├── GL_EXT_multiview_draw_buffers │ │ │ │ ├── GL_EXT_occlusion_query_boolean │ │ │ │ ├── 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_protected_textures │ │ │ │ ├── GL_EXT_provoking_vertex │ │ │ │ ├── GL_EXT_pvrtc_sRGB │ │ │ │ ├── GL_EXT_raster_multisample │ │ │ │ ├── GL_EXT_read_format_bgra │ │ │ │ ├── GL_EXT_render_snorm │ │ │ │ ├── GL_EXT_rescale_normal │ │ │ │ ├── GL_EXT_robustness │ │ │ │ ├── GL_EXT_sRGB │ │ │ │ ├── GL_EXT_sRGB_write_control │ │ │ │ ├── GL_EXT_scene_marker │ │ │ │ ├── GL_EXT_secondary_color │ │ │ │ ├── GL_EXT_semaphore │ │ │ │ ├── GL_EXT_semaphore_fd │ │ │ │ ├── GL_EXT_semaphore_win32 │ │ │ │ ├── GL_EXT_separate_shader_objects │ │ │ │ ├── GL_EXT_separate_specular_color │ │ │ │ ├── GL_EXT_shader_framebuffer_fetch │ │ │ │ ├── GL_EXT_shader_framebuffer_fetch_non_coherent │ │ │ │ ├── GL_EXT_shader_group_vote │ │ │ │ ├── GL_EXT_shader_image_load_formatted │ │ │ │ ├── GL_EXT_shader_image_load_store │ │ │ │ ├── GL_EXT_shader_implicit_conversions │ │ │ │ ├── GL_EXT_shader_integer_mix │ │ │ │ ├── GL_EXT_shader_io_blocks │ │ │ │ ├── GL_EXT_shader_non_constant_global_initializers │ │ │ │ ├── GL_EXT_shader_pixel_local_storage │ │ │ │ ├── GL_EXT_shader_pixel_local_storage2 │ │ │ │ ├── GL_EXT_shader_texture_lod │ │ │ │ ├── GL_EXT_shadow_funcs │ │ │ │ ├── GL_EXT_shadow_samplers │ │ │ │ ├── GL_EXT_shared_texture_palette │ │ │ │ ├── GL_EXT_sparse_texture │ │ │ │ ├── GL_EXT_sparse_texture2 │ │ │ │ ├── GL_EXT_static_vertex_array │ │ │ │ ├── GL_EXT_stencil_clear_tag │ │ │ │ ├── GL_EXT_stencil_two_side │ │ │ │ ├── GL_EXT_stencil_wrap │ │ │ │ ├── GL_EXT_subtexture │ │ │ │ ├── GL_EXT_tessellation_point_size │ │ │ │ ├── GL_EXT_tessellation_shader │ │ │ │ ├── GL_EXT_texture │ │ │ │ ├── GL_EXT_texture3D │ │ │ │ ├── GL_EXT_texture_array │ │ │ │ ├── GL_EXT_texture_border_clamp │ │ │ │ ├── GL_EXT_texture_buffer │ │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ │ ├── GL_EXT_texture_compression_astc_decode_mode │ │ │ │ ├── GL_EXT_texture_compression_astc_decode_mode_rgb9e5 │ │ │ │ ├── GL_EXT_texture_compression_bptc │ │ │ │ ├── GL_EXT_texture_compression_dxt1 │ │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ │ ├── GL_EXT_texture_compression_s3tc │ │ │ │ ├── GL_EXT_texture_compression_s3tc_srgb │ │ │ │ ├── GL_EXT_texture_cube_map │ │ │ │ ├── GL_EXT_texture_cube_map_array │ │ │ │ ├── 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_format_BGRA8888 │ │ │ │ ├── GL_EXT_texture_format_sRGB_override │ │ │ │ ├── GL_EXT_texture_integer │ │ │ │ ├── GL_EXT_texture_lod_bias │ │ │ │ ├── GL_EXT_texture_mirror_clamp │ │ │ │ ├── GL_EXT_texture_mirror_clamp_to_edge │ │ │ │ ├── GL_EXT_texture_norm16 │ │ │ │ ├── GL_EXT_texture_object │ │ │ │ ├── GL_EXT_texture_perturb_normal │ │ │ │ ├── GL_EXT_texture_rectangle │ │ │ │ ├── GL_EXT_texture_rg │ │ │ │ ├── GL_EXT_texture_sRGB │ │ │ │ ├── GL_EXT_texture_sRGB_R8 │ │ │ │ ├── GL_EXT_texture_sRGB_RG8 │ │ │ │ ├── GL_EXT_texture_sRGB_decode │ │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ │ ├── GL_EXT_texture_snorm │ │ │ │ ├── GL_EXT_texture_storage │ │ │ │ ├── GL_EXT_texture_swizzle │ │ │ │ ├── GL_EXT_texture_type_2_10_10_10_REV │ │ │ │ ├── GL_EXT_texture_view │ │ │ │ ├── GL_EXT_timer_query │ │ │ │ ├── GL_EXT_transform_feedback │ │ │ │ ├── GL_EXT_unpack_subimage │ │ │ │ ├── GL_EXT_vertex_array │ │ │ │ ├── GL_EXT_vertex_array_bgra │ │ │ │ ├── GL_EXT_vertex_array_setXXX │ │ │ │ ├── GL_EXT_vertex_attrib_64bit │ │ │ │ ├── GL_EXT_vertex_shader │ │ │ │ ├── GL_EXT_vertex_weighting │ │ │ │ ├── GL_EXT_win32_keyed_mutex │ │ │ │ ├── GL_EXT_window_rectangles │ │ │ │ ├── GL_EXT_x11_sync_object │ │ │ │ ├── GL_FJ_shader_binary_GCCSO │ │ │ │ ├── GL_GLU_EXT_nurbs_tessellator │ │ │ │ ├── GL_GLU_EXT_object_space_tess │ │ │ │ ├── GL_GLU_SGIX_icc_compress │ │ │ │ ├── GL_GLU_SGI_filter4_parameters │ │ │ │ ├── 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_IMG_bindless_texture │ │ │ │ ├── GL_IMG_framebuffer_downsample │ │ │ │ ├── GL_IMG_multisampled_render_to_texture │ │ │ │ ├── GL_IMG_program_binary │ │ │ │ ├── GL_IMG_read_format │ │ │ │ ├── GL_IMG_shader_binary │ │ │ │ ├── GL_IMG_texture_compression_pvrtc │ │ │ │ ├── GL_IMG_texture_compression_pvrtc2 │ │ │ │ ├── GL_IMG_texture_env_enhanced_fixed_function │ │ │ │ ├── GL_IMG_texture_filter_cubic │ │ │ │ ├── GL_INGR_color_clamp │ │ │ │ ├── GL_INGR_interlace_read │ │ │ │ ├── GL_INTEL_blackhole_render │ │ │ │ ├── GL_INTEL_conservative_rasterization │ │ │ │ ├── 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_parallel_shader_compile │ │ │ │ ├── GL_KHR_robust_buffer_access_behavior │ │ │ │ ├── GL_KHR_robustness │ │ │ │ ├── GL_KHR_texture_compression_astc_hdr │ │ │ │ ├── GL_KHR_texture_compression_astc_ldr │ │ │ │ ├── GL_KHR_texture_compression_astc_sliced_3d │ │ │ │ ├── GL_KTX_buffer_region │ │ │ │ ├── GL_MESAX_texture_stack │ │ │ │ ├── GL_MESA_framebuffer_flip_y │ │ │ │ ├── GL_MESA_pack_invert │ │ │ │ ├── GL_MESA_program_binary_formats │ │ │ │ ├── GL_MESA_resize_buffers │ │ │ │ ├── GL_MESA_shader_integer_functions │ │ │ │ ├── GL_MESA_tile_raster_order │ │ │ │ ├── GL_MESA_window_pos │ │ │ │ ├── GL_MESA_ycbcr_texture │ │ │ │ ├── GL_NVX_blend_equation_advanced_multi_draw_buffers │ │ │ │ ├── GL_NVX_conditional_render │ │ │ │ ├── GL_NVX_gpu_memory_info │ │ │ │ ├── GL_NVX_linked_gpu_multicast │ │ │ │ ├── GL_NV_3dvision_settings │ │ │ │ ├── GL_NV_EGL_stream_consumer_external │ │ │ │ ├── GL_NV_alpha_to_coverage_dither_control │ │ │ │ ├── GL_NV_bgr │ │ │ │ ├── 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_minmax_factor │ │ │ │ ├── GL_NV_blend_square │ │ │ │ ├── GL_NV_clip_space_w_scaling │ │ │ │ ├── GL_NV_command_list │ │ │ │ ├── GL_NV_compute_program5 │ │ │ │ ├── GL_NV_compute_shader_derivatives │ │ │ │ ├── GL_NV_conditional_render │ │ │ │ ├── GL_NV_conservative_raster │ │ │ │ ├── GL_NV_conservative_raster_dilate │ │ │ │ ├── GL_NV_conservative_raster_pre_snap │ │ │ │ ├── GL_NV_conservative_raster_pre_snap_triangles │ │ │ │ ├── GL_NV_conservative_raster_underestimation │ │ │ │ ├── GL_NV_copy_buffer │ │ │ │ ├── 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_nonlinear │ │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ │ ├── GL_NV_draw_buffers │ │ │ │ ├── GL_NV_draw_instanced │ │ │ │ ├── GL_NV_draw_texture │ │ │ │ ├── GL_NV_draw_vulkan_image │ │ │ │ ├── GL_NV_evaluators │ │ │ │ ├── GL_NV_explicit_attrib_location │ │ │ │ ├── GL_NV_explicit_multisample │ │ │ │ ├── GL_NV_fbo_color_attachments │ │ │ │ ├── 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_barycentric │ │ │ │ ├── GL_NV_fragment_shader_interlock │ │ │ │ ├── GL_NV_framebuffer_blit │ │ │ │ ├── GL_NV_framebuffer_mixed_samples │ │ │ │ ├── GL_NV_framebuffer_multisample │ │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ │ ├── GL_NV_generate_mipmap_sRGB │ │ │ │ ├── GL_NV_geometry_program4 │ │ │ │ ├── GL_NV_geometry_shader4 │ │ │ │ ├── GL_NV_geometry_shader_passthrough │ │ │ │ ├── GL_NV_gpu_multicast │ │ │ │ ├── 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_image_formats │ │ │ │ ├── GL_NV_instanced_arrays │ │ │ │ ├── GL_NV_internalformat_sample_query │ │ │ │ ├── GL_NV_light_max_exponent │ │ │ │ ├── GL_NV_memory_attachment │ │ │ │ ├── GL_NV_mesh_shader │ │ │ │ ├── GL_NV_multisample_coverage │ │ │ │ ├── GL_NV_multisample_filter_hint │ │ │ │ ├── GL_NV_non_square_matrices │ │ │ │ ├── GL_NV_occlusion_query │ │ │ │ ├── GL_NV_pack_subimage │ │ │ │ ├── GL_NV_packed_depth_stencil │ │ │ │ ├── GL_NV_packed_float │ │ │ │ ├── GL_NV_packed_float_linear │ │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ │ ├── GL_NV_parameter_buffer_object2 │ │ │ │ ├── GL_NV_path_rendering │ │ │ │ ├── GL_NV_path_rendering_shared_edge │ │ │ │ ├── GL_NV_pixel_buffer_object │ │ │ │ ├── GL_NV_pixel_data_range │ │ │ │ ├── GL_NV_platform_binary │ │ │ │ ├── GL_NV_point_sprite │ │ │ │ ├── GL_NV_polygon_mode │ │ │ │ ├── GL_NV_present_video │ │ │ │ ├── GL_NV_primitive_restart │ │ │ │ ├── GL_NV_query_resource_tag │ │ │ │ ├── GL_NV_read_buffer │ │ │ │ ├── GL_NV_read_buffer_front │ │ │ │ ├── GL_NV_read_depth │ │ │ │ ├── GL_NV_read_depth_stencil │ │ │ │ ├── GL_NV_read_stencil │ │ │ │ ├── GL_NV_register_combiners │ │ │ │ ├── GL_NV_register_combiners2 │ │ │ │ ├── GL_NV_representative_fragment_test │ │ │ │ ├── GL_NV_robustness_video_memory_purge │ │ │ │ ├── GL_NV_sRGB_formats │ │ │ │ ├── GL_NV_sample_locations │ │ │ │ ├── GL_NV_sample_mask_override_coverage │ │ │ │ ├── GL_NV_scissor_exclusive │ │ │ │ ├── GL_NV_shader_atomic_counters │ │ │ │ ├── GL_NV_shader_atomic_float │ │ │ │ ├── GL_NV_shader_atomic_float64 │ │ │ │ ├── GL_NV_shader_atomic_fp16_vector │ │ │ │ ├── GL_NV_shader_atomic_int64 │ │ │ │ ├── GL_NV_shader_buffer_load │ │ │ │ ├── GL_NV_shader_noperspective_interpolation │ │ │ │ ├── GL_NV_shader_storage_buffer_object │ │ │ │ ├── GL_NV_shader_texture_footprint │ │ │ │ ├── GL_NV_shader_thread_group │ │ │ │ ├── GL_NV_shader_thread_shuffle │ │ │ │ ├── GL_NV_shading_rate_image │ │ │ │ ├── GL_NV_shadow_samplers_array │ │ │ │ ├── GL_NV_shadow_samplers_cube │ │ │ │ ├── GL_NV_stereo_view_rendering │ │ │ │ ├── GL_NV_tessellation_program5 │ │ │ │ ├── GL_NV_texgen_emboss │ │ │ │ ├── GL_NV_texgen_reflection │ │ │ │ ├── GL_NV_texture_array │ │ │ │ ├── GL_NV_texture_barrier │ │ │ │ ├── GL_NV_texture_border_clamp │ │ │ │ ├── GL_NV_texture_compression_latc │ │ │ │ ├── GL_NV_texture_compression_s3tc │ │ │ │ ├── GL_NV_texture_compression_s3tc_update │ │ │ │ ├── GL_NV_texture_compression_vtc │ │ │ │ ├── GL_NV_texture_env_combine4 │ │ │ │ ├── GL_NV_texture_expand_normal │ │ │ │ ├── GL_NV_texture_multisample │ │ │ │ ├── GL_NV_texture_npot_2D_mipmap │ │ │ │ ├── GL_NV_texture_rectangle │ │ │ │ ├── GL_NV_texture_rectangle_compressed │ │ │ │ ├── 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_array │ │ │ │ ├── GL_NV_viewport_array2 │ │ │ │ ├── GL_NV_viewport_swizzle │ │ │ │ ├── GL_OES_EGL_image │ │ │ │ ├── GL_OES_EGL_image_external │ │ │ │ ├── GL_OES_EGL_image_external_essl3 │ │ │ │ ├── GL_OES_blend_equation_separate │ │ │ │ ├── GL_OES_blend_func_separate │ │ │ │ ├── GL_OES_blend_subtract │ │ │ │ ├── GL_OES_byte_coordinates │ │ │ │ ├── GL_OES_compressed_ETC1_RGB8_texture │ │ │ │ ├── GL_OES_compressed_paletted_texture │ │ │ │ ├── GL_OES_copy_image │ │ │ │ ├── GL_OES_depth24 │ │ │ │ ├── GL_OES_depth32 │ │ │ │ ├── GL_OES_depth_texture │ │ │ │ ├── GL_OES_depth_texture_cube_map │ │ │ │ ├── GL_OES_draw_buffers_indexed │ │ │ │ ├── GL_OES_draw_texture │ │ │ │ ├── GL_OES_element_index_uint │ │ │ │ ├── GL_OES_extended_matrix_palette │ │ │ │ ├── GL_OES_fbo_render_mipmap │ │ │ │ ├── GL_OES_fragment_precision_high │ │ │ │ ├── GL_OES_framebuffer_object │ │ │ │ ├── GL_OES_geometry_point_size │ │ │ │ ├── GL_OES_geometry_shader │ │ │ │ ├── GL_OES_get_program_binary │ │ │ │ ├── GL_OES_gpu_shader5 │ │ │ │ ├── GL_OES_mapbuffer │ │ │ │ ├── GL_OES_matrix_get │ │ │ │ ├── GL_OES_matrix_palette │ │ │ │ ├── GL_OES_packed_depth_stencil │ │ │ │ ├── GL_OES_point_size_array │ │ │ │ ├── GL_OES_point_sprite │ │ │ │ ├── GL_OES_read_format │ │ │ │ ├── GL_OES_required_internalformat │ │ │ │ ├── GL_OES_rgb8_rgba8 │ │ │ │ ├── GL_OES_sample_shading │ │ │ │ ├── GL_OES_sample_variables │ │ │ │ ├── GL_OES_shader_image_atomic │ │ │ │ ├── GL_OES_shader_io_blocks │ │ │ │ ├── GL_OES_shader_multisample_interpolation │ │ │ │ ├── GL_OES_single_precision │ │ │ │ ├── GL_OES_standard_derivatives │ │ │ │ ├── GL_OES_stencil1 │ │ │ │ ├── GL_OES_stencil4 │ │ │ │ ├── GL_OES_stencil8 │ │ │ │ ├── GL_OES_surfaceless_context │ │ │ │ ├── GL_OES_tessellation_point_size │ │ │ │ ├── GL_OES_tessellation_shader │ │ │ │ ├── GL_OES_texture_3D │ │ │ │ ├── GL_OES_texture_border_clamp │ │ │ │ ├── GL_OES_texture_buffer │ │ │ │ ├── GL_OES_texture_compression_astc │ │ │ │ ├── GL_OES_texture_cube_map │ │ │ │ ├── GL_OES_texture_cube_map_array │ │ │ │ ├── GL_OES_texture_env_crossbar │ │ │ │ ├── GL_OES_texture_mirrored_repeat │ │ │ │ ├── GL_OES_texture_npot │ │ │ │ ├── GL_OES_texture_stencil8 │ │ │ │ ├── GL_OES_texture_storage_multisample_2d_array │ │ │ │ ├── GL_OES_texture_view │ │ │ │ ├── GL_OES_vertex_array_object │ │ │ │ ├── GL_OES_vertex_half_float │ │ │ │ ├── GL_OES_vertex_type_10_10_10_2 │ │ │ │ ├── GL_OML_interlace │ │ │ │ ├── GL_OML_resample │ │ │ │ ├── GL_OML_subsample │ │ │ │ ├── GL_OVR_multiview │ │ │ │ ├── GL_OVR_multiview2 │ │ │ │ ├── GL_OVR_multiview_multisampled_render_to_texture │ │ │ │ ├── GL_PGI_misc_hints │ │ │ │ ├── GL_PGI_vertex_hints │ │ │ │ ├── GL_QCOM_alpha_test │ │ │ │ ├── GL_QCOM_binning_control │ │ │ │ ├── GL_QCOM_driver_control │ │ │ │ ├── GL_QCOM_extended_get │ │ │ │ ├── GL_QCOM_extended_get2 │ │ │ │ ├── GL_QCOM_framebuffer_foveated │ │ │ │ ├── GL_QCOM_perfmon_global_mode │ │ │ │ ├── GL_QCOM_shader_framebuffer_fetch_noncoherent │ │ │ │ ├── GL_QCOM_shader_framebuffer_fetch_rate │ │ │ │ ├── GL_QCOM_texture_foveated │ │ │ │ ├── GL_QCOM_texture_foveated_subsampled_layout │ │ │ │ ├── GL_QCOM_tiled_rendering │ │ │ │ ├── GL_QCOM_writeonly_rendering │ │ │ │ ├── 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_clip_band_hint │ │ │ │ ├── GL_SGIS_color_range │ │ │ │ ├── GL_SGIS_detail_texture │ │ │ │ ├── GL_SGIS_fog_function │ │ │ │ ├── GL_SGIS_generate_mipmap │ │ │ │ ├── GL_SGIS_line_texgen │ │ │ │ ├── GL_SGIS_multisample │ │ │ │ ├── GL_SGIS_multitexture │ │ │ │ ├── GL_SGIS_pixel_texture │ │ │ │ ├── GL_SGIS_point_line_texgen │ │ │ │ ├── GL_SGIS_shared_multisample │ │ │ │ ├── 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_bali_g_instruments │ │ │ │ ├── GL_SGIX_bali_r_instruments │ │ │ │ ├── GL_SGIX_bali_timer_instruments │ │ │ │ ├── GL_SGIX_blend_alpha_minmax │ │ │ │ ├── GL_SGIX_blend_cadd │ │ │ │ ├── GL_SGIX_blend_cmultiply │ │ │ │ ├── GL_SGIX_calligraphic_fragment │ │ │ │ ├── GL_SGIX_clipmap │ │ │ │ ├── GL_SGIX_color_matrix_accuracy │ │ │ │ ├── GL_SGIX_color_table_index_mode │ │ │ │ ├── GL_SGIX_complex_polar │ │ │ │ ├── GL_SGIX_convolution_accuracy │ │ │ │ ├── GL_SGIX_cube_map │ │ │ │ ├── GL_SGIX_cylinder_texgen │ │ │ │ ├── GL_SGIX_datapipe │ │ │ │ ├── GL_SGIX_decimation │ │ │ │ ├── GL_SGIX_depth_pass_instrument │ │ │ │ ├── GL_SGIX_depth_texture │ │ │ │ ├── GL_SGIX_dvc │ │ │ │ ├── GL_SGIX_flush_raster │ │ │ │ ├── GL_SGIX_fog_blend │ │ │ │ ├── GL_SGIX_fog_factor_to_alpha │ │ │ │ ├── GL_SGIX_fog_layers │ │ │ │ ├── GL_SGIX_fog_offset │ │ │ │ ├── GL_SGIX_fog_patchy │ │ │ │ ├── GL_SGIX_fog_scale │ │ │ │ ├── GL_SGIX_fog_texture │ │ │ │ ├── GL_SGIX_fragment_lighting_space │ │ │ │ ├── GL_SGIX_fragment_specular_lighting │ │ │ │ ├── GL_SGIX_fragments_instrument │ │ │ │ ├── GL_SGIX_framezoom │ │ │ │ ├── GL_SGIX_icc_texture │ │ │ │ ├── GL_SGIX_igloo_interface │ │ │ │ ├── GL_SGIX_image_compression │ │ │ │ ├── GL_SGIX_impact_pixel_texture │ │ │ │ ├── GL_SGIX_instrument_error │ │ │ │ ├── GL_SGIX_interlace │ │ │ │ ├── GL_SGIX_ir_instrument1 │ │ │ │ ├── GL_SGIX_line_quality_hint │ │ │ │ ├── GL_SGIX_list_priority │ │ │ │ ├── GL_SGIX_mpeg1 │ │ │ │ ├── GL_SGIX_mpeg2 │ │ │ │ ├── GL_SGIX_nonlinear_lighting_pervertex │ │ │ │ ├── GL_SGIX_nurbs_eval │ │ │ │ ├── GL_SGIX_occlusion_instrument │ │ │ │ ├── GL_SGIX_packed_6bytes │ │ │ │ ├── GL_SGIX_pixel_texture │ │ │ │ ├── GL_SGIX_pixel_texture_bits │ │ │ │ ├── GL_SGIX_pixel_texture_lod │ │ │ │ ├── GL_SGIX_pixel_tiles │ │ │ │ ├── GL_SGIX_polynomial_ffd │ │ │ │ ├── GL_SGIX_quad_mesh │ │ │ │ ├── GL_SGIX_reference_plane │ │ │ │ ├── GL_SGIX_resample │ │ │ │ ├── GL_SGIX_scalebias_hint │ │ │ │ ├── GL_SGIX_shadow │ │ │ │ ├── GL_SGIX_shadow_ambient │ │ │ │ ├── GL_SGIX_slim │ │ │ │ ├── GL_SGIX_spotlight_cutoff │ │ │ │ ├── GL_SGIX_sprite │ │ │ │ ├── GL_SGIX_subdiv_patch │ │ │ │ ├── GL_SGIX_subsample │ │ │ │ ├── GL_SGIX_tag_sample_buffer │ │ │ │ ├── GL_SGIX_texture_add_env │ │ │ │ ├── GL_SGIX_texture_coordinate_clamp │ │ │ │ ├── GL_SGIX_texture_lod_bias │ │ │ │ ├── GL_SGIX_texture_mipmap_anisotropic │ │ │ │ ├── GL_SGIX_texture_multi_buffer │ │ │ │ ├── GL_SGIX_texture_phase │ │ │ │ ├── GL_SGIX_texture_range │ │ │ │ ├── GL_SGIX_texture_scale_bias │ │ │ │ ├── GL_SGIX_texture_supersample │ │ │ │ ├── GL_SGIX_vector_ops │ │ │ │ ├── GL_SGIX_vertex_array_object │ │ │ │ ├── GL_SGIX_vertex_preclip │ │ │ │ ├── GL_SGIX_vertex_preclip_hint │ │ │ │ ├── GL_SGIX_ycrcb │ │ │ │ ├── GL_SGIX_ycrcb_subsample │ │ │ │ ├── GL_SGIX_ycrcba │ │ │ │ ├── GL_SGI_color_matrix │ │ │ │ ├── GL_SGI_color_table │ │ │ │ ├── GL_SGI_complex │ │ │ │ ├── GL_SGI_complex_type │ │ │ │ ├── GL_SGI_fft │ │ │ │ ├── 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_VIV_shader_binary │ │ │ │ ├── GL_WIN_phong_shading │ │ │ │ ├── GL_WIN_scene_markerXXX │ │ │ │ ├── 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_no_error │ │ │ │ ├── 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_colorspace │ │ │ │ ├── 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 │ │ └── src │ │ │ ├── eglew_head.h │ │ │ ├── eglew_mid.h │ │ │ ├── eglew_tail.h │ │ │ ├── footer.html │ │ │ ├── glew.rc │ │ │ ├── glew_head.c │ │ │ ├── glew_head.h │ │ │ ├── glew_init_egl.c │ │ │ ├── glew_init_gl.c │ │ │ ├── glew_init_glx.c │ │ │ ├── glew_init_tail.c │ │ │ ├── glew_init_wgl.c │ │ │ ├── glew_license.h │ │ │ ├── glew_str_egl.c │ │ │ ├── glew_str_glx.c │ │ │ ├── glew_str_head.c │ │ │ ├── glew_str_tail.c │ │ │ ├── glew_str_wgl.c │ │ │ ├── glew_tail.h │ │ │ ├── glewinfo.rc │ │ │ ├── glewinfo_egl.c │ │ │ ├── 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 │ │ │ ├── cmake_uninstall.cmake.in │ │ │ ├── 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 │ │ ├── vc14 │ │ │ ├── common.props │ │ │ ├── glew.sln │ │ │ ├── glew_shared.vcxproj │ │ │ ├── glew_static.vcxproj │ │ │ ├── glewinfo.vcxproj │ │ │ └── visualinfo.vcxproj │ │ ├── vc15 │ │ │ ├── common.props │ │ │ ├── glew.sln │ │ │ ├── glew_shared.vcxproj │ │ │ ├── glew_static.vcxproj │ │ │ ├── glewinfo.vcxproj │ │ │ └── visualinfo.vcxproj │ │ ├── vc6 │ │ │ ├── Makefile │ │ │ ├── glew.dsw │ │ │ ├── glew_shared.dsp │ │ │ ├── glew_static.dsp │ │ │ ├── glewinfo.dsp │ │ │ └── visualinfo.dsp │ │ └── visualinfo.rc │ ├── config │ │ ├── Makefile.cygming │ │ ├── Makefile.cygwin │ │ ├── Makefile.cygwin-x11 │ │ ├── Makefile.darwin │ │ ├── Makefile.darwin-gcc6 │ │ ├── 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-clang-egl │ │ ├── Makefile.linux-egl │ │ ├── Makefile.linux-mingw32 │ │ ├── Makefile.linux-mingw64 │ │ ├── Makefile.linux-osmesa │ │ ├── Makefile.mingw │ │ ├── Makefile.mingw-win32 │ │ ├── Makefile.msys │ │ ├── Makefile.msys-win32 │ │ ├── Makefile.msys-win64 │ │ ├── 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 │ │ ├── travis.png │ │ └── wglew.html │ ├── glew.pc.in │ ├── glewinfo.txt │ ├── glewinfo_egl.txt │ ├── glewinfo_osmesa.txt │ ├── include │ │ └── GL │ │ │ ├── eglew.h │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ └── src │ │ ├── glew.c │ │ ├── glewinfo.c │ │ └── visualinfo.c ├── jsoncpp.lua ├── nativefiledialog.lua ├── premake5.lua ├── sdl.lua └── stb.lua ├── premake5 ├── premake5.exe ├── premake5.lua ├── premake5_macos ├── releases ├── 7z.exe ├── filelist_linux.txt ├── filelist_osx.txt ├── filelist_windows.txt ├── pack_linux.sh ├── pack_osx.sh └── pack_windows.cmd ├── remake ├── _manifest.lua ├── _preload.lua ├── extensions.lua └── remake.lua ├── setup.cmd ├── setup.sh ├── src ├── box_widget.cpp ├── button_widget.cpp ├── check_widget.cpp ├── color_picker_popup.cpp ├── comboslider_widget.cpp ├── custom_widget.cpp ├── docking_system.cpp ├── docking_system.h ├── dropdown_widget.cpp ├── font_cache.cpp ├── font_cache.h ├── horus.cpp ├── image_widget.cpp ├── label_widget.cpp ├── layout_cell.cpp ├── layout_cell.h ├── line_widget.cpp ├── listbox_widget.cpp ├── megawidgets.cpp ├── menu_widget.cpp ├── native_dialogs.cpp ├── osiris.cpp ├── panel_widget.cpp ├── popup_widget.cpp ├── premake5.lua ├── progress_widget.cpp ├── radio_widget.cpp ├── renderer.cpp ├── renderer.h ├── rotaryslider_widget.cpp ├── scrollview_widget.cpp ├── slider_widget.cpp ├── tab_widget.cpp ├── text_input_state.cpp ├── text_input_state.h ├── textinput_widget.cpp ├── toolbar.cpp ├── tooltip_widget.cpp ├── types.cpp ├── types.h ├── ui_atlas.cpp ├── ui_atlas.h ├── ui_context.cpp ├── ui_context.h ├── ui_font.cpp ├── ui_font.h ├── ui_theme.cpp ├── ui_theme.h ├── unicode_text_cache.cpp ├── unicode_text_cache.h ├── util.cpp ├── util.h ├── view_pane.cpp ├── view_pane_container.cpp └── viewport_widget.cpp └── themes ├── axis_box.png ├── box.png ├── button_focused.png ├── button_normal.png ├── button_pressed.png ├── check_mark_normal.png ├── check_normal.png ├── checkers.png ├── clear_icon.png ├── comboslider_left_arrow.png ├── comboslider_range_bar.png ├── comboslider_right_arrow.png ├── default.theme ├── delete_icon.png ├── dragdrop_cursor.png ├── drawline.png ├── drawline_small.png ├── dropdown.png ├── dropdown_arrow.png ├── empty.png ├── fonts ├── ARIALUNI.TTF ├── MobileFont.ttf ├── RADIOLAND.TTF ├── RADIOLANDSLIM.ttf ├── Roboto-Black.ttf ├── Roboto-BlackItalic.ttf ├── Roboto-Bold.ttf ├── Roboto-BoldItalic.ttf ├── Roboto-Italic.ttf ├── Roboto-Light.ttf ├── Roboto-LightItalic.ttf ├── Roboto-Medium.ttf ├── Roboto-MediumItalic.ttf ├── Roboto-Regular.ttf ├── Roboto-Thin.ttf ├── Roboto-ThinItalic.ttf ├── RobotoCondensed-Bold.ttf ├── RobotoCondensed-BoldItalic.ttf ├── RobotoCondensed-Italic.ttf ├── RobotoCondensed-Light.ttf ├── RobotoCondensed-LightItalic.ttf ├── RobotoCondensed-Regular.ttf ├── arial.ttf ├── arialbd.ttf ├── arialbi.ttf ├── ariali.ttf ├── digital_counter_7.ttf ├── digital_dismay.otf ├── segoeui.ttf ├── segoeuib.ttf ├── segoeuii.ttf ├── segoeuil.ttf ├── segoeuisl.ttf └── segoeuiz.ttf ├── grabber.png ├── header.png ├── horus.png ├── hui_logo.png ├── icons ├── ic_attach_file_white_24dp.png ├── ic_attach_money_white_24dp.png ├── ic_border_all_white_24dp.png ├── ic_border_bottom_white_24dp.png ├── ic_border_clear_white_24dp.png ├── ic_border_color_white_24dp.png ├── ic_border_horizontal_white_24dp.png ├── ic_border_inner_white_24dp.png ├── ic_border_left_white_24dp.png └── ic_border_outer_white_24dp.png ├── lena.png ├── lena2.png ├── line.png ├── menu_bar.png ├── menu_bar_item_normal.png ├── menu_body.png ├── menu_item_body.png ├── menu_item_checkmark.png ├── menu_item_nocheckmark.png ├── menu_item_separator.png ├── move_icon.png ├── node-body.png ├── none.png ├── panel.png ├── panel_collapsed_arrow.png ├── panel_expanded_arrow.png ├── pause-icon.png ├── play-icon.png ├── popup.png ├── popup_behind.png ├── progress_back.png ├── progress_fill.png ├── psd ├── 9celltest.psd ├── axis_box.psd ├── axis_names.psd ├── box.psd ├── button.psd ├── button_pressed.psd ├── check.psd ├── check_mark.psd ├── clear_icon.psd ├── comboslider_left_arrow.psd ├── comboslider_range_bar.psd ├── comboslider_right_arrow.psd ├── delete_icon.psd ├── docking_rect_dial_horizontal_split.psd ├── docking_rect_dial_vertical_split.psd ├── dragdrop_cursor.psd ├── drawline.psd ├── drawline_small.psd ├── dropdown.psd ├── dropdown_arrow.psd ├── empty.psd ├── header.psd ├── left_arrow.psd ├── line.psd ├── link_icon.psd ├── menu_bar.psd ├── menu_body.psd ├── menu_item_body.psd ├── menu_item_checkmark.psd ├── menu_item_separator.psd ├── move_icon.psd ├── node-body.psd ├── none.psd ├── panel.psd ├── panel_collapsed_arrow.psd ├── popup.psd ├── popup_behind.psd ├── progress.psd ├── radio.psd ├── right_arrow.psd ├── rotaryslider_body.psd ├── rotaryslider_mark.psd ├── rotaryslider_value_dot.psd ├── scrollview.psd ├── scrollview_scrollbar.psd ├── scrollview_scrollthumb.psd ├── selectable.psd ├── slider.psd ├── slider_filled.psd ├── slider_knob.psd ├── submenu_item_arrow.psd ├── tab_active.psd ├── tab_inactive.psd ├── tabgroup.psd ├── tabicons.psd ├── target_icon.psd ├── text_input.psd ├── toolbar_body.psd ├── toolbar_separator.psd ├── tooltip_body.psd ├── viewpane_dock_dial_rect.psd └── viewpane_dock_rect.psd ├── radio_mark_normal.png ├── radio_normal.png ├── rotaryslider_body.png ├── rotaryslider_mark.png ├── rotaryslider_value_dot.png ├── scrollview.png ├── scrollview_scrollbar.png ├── scrollview_scrollthumb.png ├── selectable.png ├── selectable_hovered.png ├── sign-error.png ├── sign-info.png ├── sign-question.png ├── sign-warning.png ├── slider.png ├── slider_filled.png ├── slider_knob.png ├── stop-icon.png ├── submenu_item_arrow.png ├── tab_active.png ├── tab_inactive.png ├── tabgroup.png ├── tabicon.png ├── tabicon2.png ├── target_icon.png ├── text_input_focused.png ├── text_input_normal.png ├── toolbar_body.png ├── toolbar_separator.png ├── tooltip.png ├── viewpane_dock_dial_rect.png ├── viewpane_dock_rect.png ├── xaxis.png ├── yaxis.png └── zaxis.png /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | [*.{h,cpp,inl,hpp,cxx}] 3 | indent_style = tab 4 | tab_width = 4 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build_*/** 2 | bin/** 3 | 3rdparty/** 4 | docs/html/** -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd build_gmake 4 | make config=release 5 | cd .. 6 | -------------------------------------------------------------------------------- /docs/images/hui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7thFACTOR/horus_ui/fdf6202924f5a967c8cb62c31171798d24f2e19b/docs/images/hui.png -------------------------------------------------------------------------------- /docs/images/hui_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7thFACTOR/horus_ui/fdf6202924f5a967c8cb62c31171798d24f2e19b/docs/images/hui_logo.png -------------------------------------------------------------------------------- /docs/images/hui_sample_code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7thFACTOR/horus_ui/fdf6202924f5a967c8cb62c31171798d24f2e19b/docs/images/hui_sample_code.gif -------------------------------------------------------------------------------- /docs/images/hui_sample_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7thFACTOR/horus_ui/fdf6202924f5a967c8cb62c31171798d24f2e19b/docs/images/hui_sample_code.png -------------------------------------------------------------------------------- /docs/images/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7thFACTOR/horus_ui/fdf6202924f5a967c8cb62c31171798d24f2e19b/docs/images/patreon.png -------------------------------------------------------------------------------- /examples/premake5.lua: -------------------------------------------------------------------------------- 1 | include "widget_showroom" 2 | include "without_docking" 3 | include "custom_widgets" -------------------------------------------------------------------------------- /generate.cmd: -------------------------------------------------------------------------------- 1 | set VSVER=vs2019 2 | premake5 %VSVER% -------------------------------------------------------------------------------- /generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | unamestr=`uname` 4 | 5 | if [ "$unamestr" = 'Linux' ]; then 6 | ./premake5 gmake 7 | elif [ "$unamestr" = 'Darwin' ]; then 8 | ./premake5_macos gmake macos 9 | fi 10 | -------------------------------------------------------------------------------- /include/horus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7thFACTOR/horus_ui/fdf6202924f5a967c8cb62c31171798d24f2e19b/include/horus.h -------------------------------------------------------------------------------- /libs/glew/auto/core/gl/EGL_KHR_image_base: -------------------------------------------------------------------------------- 1 | EGL_KHR_image_base 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_image_base 4 | 5 | EGL_IMAGE_PRESERVED_KHR 0x30D2 6 | EGL_NO_IMAGE_KHR EGL_CAST(EGLImageKHR,0) 7 | -------------------------------------------------------------------------------- /libs/glew/auto/core/gl/GLX_ATI_pixel_format_float: -------------------------------------------------------------------------------- 1 | GLX_ATI_pixel_format_float 2 | 3 | GLX_ATI_pixel_format_float 4 | 5 | GLX_RGBA_FLOAT_ATI_BIT 0x00000100 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GLX_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GLX_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20B2 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GLX_FLOAT_COMPONENTS_NV 0x20B0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/core/gl/GLX_SGIS_shared_multisample: -------------------------------------------------------------------------------- 1 | GLX_SGIS_shared_multisample 2 | 3 | GLX_SGIS_shared_multisample 4 | 5 | GLX_MULTISAMPLE_SUB_RECT_WIDTH_SGIS 0x8026 6 | GLX_MULTISAMPLE_SUB_RECT_HEIGHT_SGIS 0x8027 7 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | void glXJoinSwapGroupSGIX (Display *dpy, GLXDrawable drawable, GLXDrawable member) 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | Display* glXGetCurrentDisplay (void) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/core/gl/GL_APPLE_pixel_buffer: -------------------------------------------------------------------------------- 1 | GL_APPLE_pixel_buffer 2 | 3 | GL_APPLE_pixel_buffer 4 | 5 | GL_MIN_PBUFFER_VIEWPORT_DIMS_APPLE 0x8A10 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GL_OUTPUT_POINT_SIZE_ATIX 0x610E 6 | -------------------------------------------------------------------------------- /libs/glew/auto/core/gl/GL_ATI_shader_texture_lod: -------------------------------------------------------------------------------- 1 | GL_ATI_shader_texture_lod 2 | 3 | GL_ATI_shader_texture_lod 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/core/gl/GL_ATI_texture_compression_3dc: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_compression_3dc 2 | 3 | GL_ATI_texture_compression_3dc 4 | 5 | GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI 0x8837 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GL_CG_VERTEX_SHADER_EXT 0x890E 6 | GL_CG_FRAGMENT_SHADER_EXT 0x890F 7 | -------------------------------------------------------------------------------- /libs/glew/auto/core/gl/GL_EXT_semaphore_fd: -------------------------------------------------------------------------------- 1 | GL_EXT_semaphore_fd 2 | http://www.opengl.org/registry/specs/EXT/external_objects_fd.txt 3 | GL_EXT_semaphore_fd 4 | 5 | void glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd) 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GL_CLAMP_TO_EDGE_EXT 0x812F 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/core/gl/GL_VERSION_4_1: -------------------------------------------------------------------------------- 1 | GL_VERSION_4_1 2 | https://www.opengl.org/registry/doc/glspec41.compatibility.20100725.pdf 3 | 4 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GL_VERTEX_ATTRIB_ARRAY_LONG 0x874E 6 | GL_NUM_SHADING_LANGUAGE_VERSIONS 0x82E9 7 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | void glAddSwapHintRectWIN (GLint x, GLint y, GLsizei width, GLsizei height) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/core/gl/WGL_ATI_render_texture_rectangle: -------------------------------------------------------------------------------- 1 | WGL_ATI_render_texture_rectangle 2 | 3 | WGL_ATI_render_texture_rectangle 4 | 5 | WGL_TEXTURE_RECTANGLE_ATI 0x21A5 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | WGL_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20A9 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT 0x20A8 6 | -------------------------------------------------------------------------------- /libs/glew/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 | -------------------------------------------------------------------------------- /libs/glew/auto/doc/credits.html: -------------------------------------------------------------------------------- 1 |
3 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/.dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7thFACTOR/horus_ui/fdf6202924f5a967c8cb62c31171798d24f2e19b/libs/glew/auto/extensions/gl/.dummy -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_ANDROID_framebuffer_target: -------------------------------------------------------------------------------- 1 | EGL_ANDROID_framebuffer_target 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_ANDROID_framebuffer_target 4 | 5 | EGL_FRAMEBUFFER_TARGET_ANDROID 0x3147 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_ANDROID_image_native_buffer: -------------------------------------------------------------------------------- 1 | EGL_ANDROID_image_native_buffer 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_ANDROID_image_native_buffer 4 | 5 | EGL_NATIVE_BUFFER_ANDROID 0x3140 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_ANDROID_recordable: -------------------------------------------------------------------------------- 1 | EGL_ANDROID_recordable 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_ANDROID_recordable 4 | 5 | EGL_RECORDABLE_ANDROID 0x3142 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_ANGLE_device_d3d: -------------------------------------------------------------------------------- 1 | EGL_ANGLE_device_d3d 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_ANGLE_device_d3d 4 | 5 | EGL_D3D9_DEVICE_ANGLE 0x33A0 6 | EGL_D3D11_DEVICE_ANGLE 0x33A1 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_ANGLE_window_fixed_size: -------------------------------------------------------------------------------- 1 | EGL_ANGLE_window_fixed_size 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_ANGLE_window_fixed_size 4 | 5 | EGL_FIXED_SIZE_ANGLE 0x3201 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_ARM_implicit_external_sync: -------------------------------------------------------------------------------- 1 | EGL_ARM_implicit_external_sync 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_ARM_implicit_external_sync 4 | 5 | EGL_SYNC_PRIOR_COMMANDS_IMPLICIT_EXTERNAL_ARM 0x328A 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_ARM_pixmap_multisample_discard: -------------------------------------------------------------------------------- 1 | EGL_ARM_pixmap_multisample_discard 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_ARM_pixmap_multisample_discard 4 | 5 | EGL_DISCARD_SAMPLES_ARM 0x3286 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_bind_to_front: -------------------------------------------------------------------------------- 1 | EGL_EXT_bind_to_front 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_bind_to_front 4 | 5 | EGL_FRONT_BUFFER_EXT 0x3464 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_buffer_age: -------------------------------------------------------------------------------- 1 | EGL_EXT_buffer_age 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_buffer_age 4 | 5 | EGL_BUFFER_AGE_EXT 0x313D 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_client_extensions: -------------------------------------------------------------------------------- 1 | EGL_EXT_client_extensions 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_client_extensions 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_device_drm: -------------------------------------------------------------------------------- 1 | EGL_EXT_device_drm 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_device_drm 4 | 5 | EGL_DRM_DEVICE_FILE_EXT 0x3233 6 | EGL_DRM_MASTER_FD_EXT 0x333C 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_device_openwf: -------------------------------------------------------------------------------- 1 | EGL_EXT_device_openwf 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_device_openwf 4 | 5 | EGL_OPENWF_DEVICE_ID_EXT 0x3237 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_gl_colorspace_bt2020_linear: -------------------------------------------------------------------------------- 1 | EGL_EXT_gl_colorspace_bt2020_linear 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_gl_colorspace_bt2020_linear 4 | 5 | EGL_GL_COLORSPACE_BT2020_LINEAR_EXT 0x333F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_gl_colorspace_bt2020_pq: -------------------------------------------------------------------------------- 1 | EGL_EXT_gl_colorspace_bt2020_pq 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_gl_colorspace_bt2020_pq 4 | 5 | EGL_GL_COLORSPACE_BT2020_PQ_EXT 0x3340 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_gl_colorspace_display_p3: -------------------------------------------------------------------------------- 1 | EGL_EXT_gl_colorspace_display_p3 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_gl_colorspace_display_p3 4 | 5 | EGL_GL_COLORSPACE_DISPLAY_P3_EXT 0x3363 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_gl_colorspace_scrgb: -------------------------------------------------------------------------------- 1 | EGL_EXT_gl_colorspace_scrgb 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_gl_colorspace_scrgb 4 | 5 | EGL_GL_COLORSPACE_SCRGB_EXT 0x3351 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_gl_colorspace_scrgb_linear: -------------------------------------------------------------------------------- 1 | EGL_EXT_gl_colorspace_scrgb_linear 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_gl_colorspace_scrgb_linear 4 | 5 | EGL_GL_COLORSPACE_SCRGB_LINEAR_EXT 0x3350 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_image_gl_colorspace: -------------------------------------------------------------------------------- 1 | EGL_EXT_image_gl_colorspace 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_image_gl_colorspace 4 | 5 | EGL_GL_COLORSPACE 0x309D 6 | EGL_GL_COLORSPACE_DEFAULT_EXT 0x314D 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_multiview_window: -------------------------------------------------------------------------------- 1 | EGL_EXT_multiview_window 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_multiview_window 4 | 5 | EGL_MULTIVIEW_VIEW_COUNT_EXT 0x3134 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_output_drm: -------------------------------------------------------------------------------- 1 | EGL_EXT_output_drm 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_output_drm 4 | 5 | EGL_DRM_CRTC_EXT 0x3234 6 | EGL_DRM_PLANE_EXT 0x3235 7 | EGL_DRM_CONNECTOR_EXT 0x3236 8 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_output_openwf: -------------------------------------------------------------------------------- 1 | EGL_EXT_output_openwf 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_output_openwf 4 | 5 | EGL_OPENWF_PIPELINE_ID_EXT 0x3238 6 | EGL_OPENWF_PORT_ID_EXT 0x3239 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_platform_device: -------------------------------------------------------------------------------- 1 | EGL_EXT_platform_device 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_platform_device 4 | 5 | EGL_PLATFORM_DEVICE_EXT 0x313F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_platform_wayland: -------------------------------------------------------------------------------- 1 | EGL_EXT_platform_wayland 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_platform_wayland 4 | 5 | EGL_PLATFORM_WAYLAND_EXT 0x31D8 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_platform_x11: -------------------------------------------------------------------------------- 1 | EGL_EXT_platform_x11 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_platform_x11 4 | 5 | EGL_PLATFORM_X11_EXT 0x31D5 6 | EGL_PLATFORM_X11_SCREEN_EXT 0x31D6 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_protected_content: -------------------------------------------------------------------------------- 1 | EGL_EXT_protected_content 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_protected_content 4 | 5 | EGL_PROTECTED_CONTENT_EXT 0x32C0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_protected_surface: -------------------------------------------------------------------------------- 1 | EGL_EXT_protected_surface 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_protected_surface 4 | 5 | EGL_PROTECTED_CONTENT_EXT 0x32C0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_EXT_sync_reuse: -------------------------------------------------------------------------------- 1 | EGL_EXT_sync_reuse 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_EXT_sync_reuse 4 | 5 | EGLBoolean eglUnsignalSyncEXT (EGLDisplay dpy, EGLSync sync, const EGLAttrib * attrib_list) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_client_get_all_proc_addresses: -------------------------------------------------------------------------------- 1 | EGL_KHR_client_get_all_proc_addresses 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_client_get_all_proc_addresses 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_create_context_no_error: -------------------------------------------------------------------------------- 1 | EGL_KHR_create_context_no_error 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_create_context_no_error 4 | 5 | EGL_CONTEXT_OPENGL_NO_ERROR_KHR 0x31B3 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_get_all_proc_addresses: -------------------------------------------------------------------------------- 1 | EGL_KHR_get_all_proc_addresses 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_get_all_proc_addresses 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_gl_renderbuffer_image: -------------------------------------------------------------------------------- 1 | EGL_KHR_gl_renderbuffer_image 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_gl_renderbuffer_image 4 | 5 | EGL_GL_RENDERBUFFER_KHR 0x30B9 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_gl_texture_2D_image: -------------------------------------------------------------------------------- 1 | EGL_KHR_gl_texture_2D_image 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_gl_texture_2D_image 4 | 5 | EGL_GL_TEXTURE_2D_KHR 0x30B1 6 | EGL_GL_TEXTURE_LEVEL_KHR 0x30BC 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_gl_texture_3D_image: -------------------------------------------------------------------------------- 1 | EGL_KHR_gl_texture_3D_image 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_gl_texture_3D_image 4 | 5 | EGL_GL_TEXTURE_3D_KHR 0x30B2 6 | EGL_GL_TEXTURE_ZOFFSET_KHR 0x30BD 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_image_base: -------------------------------------------------------------------------------- 1 | EGL_KHR_image_base 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_image_base 4 | 5 | EGL_IMAGE_PRESERVED_KHR 0x30D2 6 | EGL_NO_IMAGE_KHR EGL_CAST(EGLImageKHR,0) 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_image_pixmap: -------------------------------------------------------------------------------- 1 | EGL_KHR_image_pixmap 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_image_pixmap 4 | 5 | EGL_NATIVE_PIXMAP_KHR 0x30B0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_lock_surface2: -------------------------------------------------------------------------------- 1 | EGL_KHR_lock_surface2 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_lock_surface2 4 | 5 | EGL_BITMAP_PIXEL_SIZE_KHR 0x3110 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_mutable_render_buffer: -------------------------------------------------------------------------------- 1 | EGL_KHR_mutable_render_buffer 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_mutable_render_buffer 4 | 5 | EGL_MUTABLE_RENDER_BUFFER_BIT_KHR 0x1000 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_no_config_context: -------------------------------------------------------------------------------- 1 | EGL_KHR_no_config_context 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_no_config_context 4 | 5 | EGL_NO_CONFIG_KHR EGL_CAST(EGLConfig,0) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_platform_android: -------------------------------------------------------------------------------- 1 | EGL_KHR_platform_android 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_platform_android 4 | 5 | EGL_PLATFORM_ANDROID_KHR 0x3141 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_platform_gbm: -------------------------------------------------------------------------------- 1 | EGL_KHR_platform_gbm 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_platform_gbm 4 | 5 | EGL_PLATFORM_GBM_KHR 0x31D7 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_platform_wayland: -------------------------------------------------------------------------------- 1 | EGL_KHR_platform_wayland 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_platform_wayland 4 | 5 | EGL_PLATFORM_WAYLAND_KHR 0x31D8 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_platform_x11: -------------------------------------------------------------------------------- 1 | EGL_KHR_platform_x11 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_platform_x11 4 | 5 | EGL_PLATFORM_X11_KHR 0x31D5 6 | EGL_PLATFORM_X11_SCREEN_KHR 0x31D6 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_stream_producer_aldatalocator: -------------------------------------------------------------------------------- 1 | EGL_KHR_stream_producer_aldatalocator 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_stream_producer_aldatalocator 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_surfaceless_context: -------------------------------------------------------------------------------- 1 | EGL_KHR_surfaceless_context 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_surfaceless_context 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_vg_parent_image: -------------------------------------------------------------------------------- 1 | EGL_KHR_vg_parent_image 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_vg_parent_image 4 | 5 | EGL_VG_PARENT_IMAGE_KHR 0x30BA 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_KHR_wait_sync: -------------------------------------------------------------------------------- 1 | EGL_KHR_wait_sync 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_KHR_wait_sync 4 | 5 | EGLint eglWaitSyncKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint flags) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_MESA_platform_gbm: -------------------------------------------------------------------------------- 1 | EGL_MESA_platform_gbm 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_MESA_platform_gbm 4 | 5 | EGL_PLATFORM_GBM_MESA 0x31D7 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_MESA_platform_surfaceless: -------------------------------------------------------------------------------- 1 | EGL_MESA_platform_surfaceless 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_MESA_platform_surfaceless 4 | 5 | EGL_PLATFORM_SURFACELESS_MESA 0x31DD 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NOK_texture_from_pixmap: -------------------------------------------------------------------------------- 1 | EGL_NOK_texture_from_pixmap 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NOK_texture_from_pixmap 4 | 5 | EGL_Y_INVERTED_NOK 0x307F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_3dvision_surface: -------------------------------------------------------------------------------- 1 | EGL_NV_3dvision_surface 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_3dvision_surface 4 | 5 | EGL_AUTO_STEREO_NV 0x3136 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_context_priority_realtime: -------------------------------------------------------------------------------- 1 | EGL_NV_context_priority_realtime 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_context_priority_realtime 4 | 5 | EGL_CONTEXT_PRIORITY_REALTIME_NV 0x3357 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_coverage_sample: -------------------------------------------------------------------------------- 1 | EGL_NV_coverage_sample 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_coverage_sample 4 | 5 | EGL_COVERAGE_BUFFERS_NV 0x30E0 6 | EGL_COVERAGE_SAMPLES_NV 0x30E1 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_device_cuda: -------------------------------------------------------------------------------- 1 | EGL_NV_device_cuda 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_device_cuda 4 | 5 | EGL_CUDA_DEVICE_NV 0x323A 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_post_convert_rounding: -------------------------------------------------------------------------------- 1 | EGL_NV_post_convert_rounding 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_post_convert_rounding 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_stream_cross_display: -------------------------------------------------------------------------------- 1 | EGL_NV_stream_cross_display 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_stream_cross_display 4 | 5 | EGL_STREAM_CROSS_DISPLAY_NV 0x334E 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_stream_cross_object: -------------------------------------------------------------------------------- 1 | EGL_NV_stream_cross_object 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_stream_cross_object 4 | 5 | EGL_STREAM_CROSS_OBJECT_NV 0x334D 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_stream_cross_partition: -------------------------------------------------------------------------------- 1 | EGL_NV_stream_cross_partition 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_stream_cross_partition 4 | 5 | EGL_STREAM_CROSS_PARTITION_NV 0x323F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_stream_cross_process: -------------------------------------------------------------------------------- 1 | EGL_NV_stream_cross_process 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_stream_cross_process 4 | 5 | EGL_STREAM_CROSS_PROCESS_NV 0x3245 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_stream_cross_system: -------------------------------------------------------------------------------- 1 | EGL_NV_stream_cross_system 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_stream_cross_system 4 | 5 | EGL_STREAM_CROSS_SYSTEM_NV 0x334F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_stream_fifo_next: -------------------------------------------------------------------------------- 1 | EGL_NV_stream_fifo_next 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_stream_fifo_next 4 | 5 | EGL_PENDING_FRAME_NV 0x3329 6 | EGL_STREAM_TIME_PENDING_NV 0x332A 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_stream_fifo_synchronous: -------------------------------------------------------------------------------- 1 | EGL_NV_stream_fifo_synchronous 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_stream_fifo_synchronous 4 | 5 | EGL_STREAM_FIFO_SYNCHRONOUS_NV 0x3336 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_stream_flush: -------------------------------------------------------------------------------- 1 | EGL_NV_stream_flush 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_stream_flush 4 | 5 | EGLBoolean eglStreamFlushNV (EGLDisplay dpy, EGLStreamKHR stream) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_stream_socket_inet: -------------------------------------------------------------------------------- 1 | EGL_NV_stream_socket_inet 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_stream_socket_inet 4 | 5 | EGL_SOCKET_TYPE_INET_NV 0x324F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_stream_socket_unix: -------------------------------------------------------------------------------- 1 | EGL_NV_stream_socket_unix 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_stream_socket_unix 4 | 5 | EGL_SOCKET_TYPE_UNIX_NV 0x324E 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_NV_system_time: -------------------------------------------------------------------------------- 1 | EGL_NV_system_time 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_NV_system_time 4 | 5 | EGLuint64NV eglGetSystemTimeFrequencyNV ( void ) 6 | EGLuint64NV eglGetSystemTimeNV ( void ) 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_TIZEN_image_native_buffer: -------------------------------------------------------------------------------- 1 | EGL_TIZEN_image_native_buffer 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_TIZEN_image_native_buffer 4 | 5 | EGL_NATIVE_BUFFER_TIZEN 0x32A0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/EGL_TIZEN_image_native_surface: -------------------------------------------------------------------------------- 1 | EGL_TIZEN_image_native_surface 2 | https://www.khronos.org/registry/egl/specs/eglspec.1.5.pdf 3 | EGL_TIZEN_image_native_surface 4 | 5 | EGL_NATIVE_SURFACE_TIZEN 0x32A1 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_3DFX_multisample: -------------------------------------------------------------------------------- 1 | GLX_3DFX_multisample 2 | https://www.khronos.org/registry/OpenGL/extensions/3DFX/3DFX_multisample.txt 3 | GLX_3DFX_multisample 4 | 5 | GLX_SAMPLE_BUFFERS_3DFX 0x8050 6 | GLX_SAMPLES_3DFX 0x8051 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_ARB_context_flush_control: -------------------------------------------------------------------------------- 1 | GLX_ARB_context_flush_control 2 | https://www.khronos.org/registry/OpenGL/extensions/KHR/KHR_context_flush_control.txt 3 | GLX_ARB_context_flush_control 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_ARB_create_context_no_error: -------------------------------------------------------------------------------- 1 | GLX_ARB_create_context_no_error 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_create_context_no_error.txt 3 | GLX_ARB_create_context_no_error 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_ARB_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GLX_ARB_framebuffer_sRGB 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_framebuffer_sRGB.txt 3 | GLX_ARB_framebuffer_sRGB 4 | 5 | GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20B2 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_ARB_multisample: -------------------------------------------------------------------------------- 1 | GLX_ARB_multisample 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_multisample.txt 3 | GLX_ARB_multisample 4 | 5 | GLX_SAMPLE_BUFFERS_ARB 100000 6 | GLX_SAMPLES_ARB 100001 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_ATI_pixel_format_float: -------------------------------------------------------------------------------- 1 | GLX_ATI_pixel_format_float 2 | 3 | GLX_ATI_pixel_format_float 4 | 5 | GLX_RGBA_FLOAT_ATI_BIT 0x00000100 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_EXT_buffer_age: -------------------------------------------------------------------------------- 1 | GLX_EXT_buffer_age 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/GLX_EXT_buffer_age.txt 3 | GLX_EXT_buffer_age 4 | 5 | GLX_BACK_BUFFER_AGE_EXT 0x20F4 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GLX_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20B2 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_EXT_libglvnd: -------------------------------------------------------------------------------- 1 | GLX_EXT_libglvnd 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/GLX_EXT_libglvnd.txt 3 | GLX_EXT_libglvnd 4 | 5 | GLX_VENDOR_NAMES_EXT 0x20F6 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_EXT_no_config_context: -------------------------------------------------------------------------------- 1 | GLX_EXT_no_config_context 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/GLX_EXT_no_config_context.txt 3 | GLX_EXT_no_config_context 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_EXT_scene_marker: -------------------------------------------------------------------------------- 1 | GLX_EXT_scene_marker 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_scene_marker.txt 3 | GLX_EXT_scene_marker 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_EXT_swap_control_tear: -------------------------------------------------------------------------------- 1 | GLX_EXT_swap_control_tear 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/GLX_EXT_swap_control_tear.txt 3 | GLX_EXT_swap_control_tear 4 | 5 | GLX_LATE_SWAPS_TEAR_EXT 0x20F3 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_MESA_agp_offset: -------------------------------------------------------------------------------- 1 | GLX_MESA_agp_offset 2 | https://www.khronos.org/registry/OpenGL/extensions/MESA/GLX_MESA_agp_offset.txt 3 | GLX_MESA_agp_offset 4 | 5 | unsigned int glXGetAGPOffsetMESA (const void* pointer) 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GLX_FLOAT_COMPONENTS_NV 0x20B0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_SGIS_blended_overlay: -------------------------------------------------------------------------------- 1 | GLX_SGIS_blended_overlay 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIS/GLX_SGIS_blended_overlay.txt 3 | GLX_SGIS_blended_overlay 4 | 5 | GLX_BLENDED_RGBA_SGIS 0x8025 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_SGIS_color_range: -------------------------------------------------------------------------------- 1 | GLX_SGIS_color_range 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIS/GLX_SGIS_color_range.txt 3 | GLX_SGIS_color_range 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_SGIS_multisample: -------------------------------------------------------------------------------- 1 | GLX_SGIS_multisample 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIS/SGIS_multisample.txt 3 | GLX_SGIS_multisample 4 | 5 | GLX_SAMPLE_BUFFERS_SGIS 100000 6 | GLX_SAMPLES_SGIS 100001 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_SGIS_shared_multisample: -------------------------------------------------------------------------------- 1 | GLX_SGIS_shared_multisample 2 | 3 | GLX_SGIS_shared_multisample 4 | 5 | GLX_MULTISAMPLE_SUB_RECT_WIDTH_SGIS 0x8026 6 | GLX_MULTISAMPLE_SUB_RECT_HEIGHT_SGIS 0x8027 7 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | void glXJoinSwapGroupSGIX (Display *dpy, GLXDrawable drawable, GLXDrawable member) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_SGIX_visual_select_group: -------------------------------------------------------------------------------- 1 | GLX_SGIX_visual_select_group 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/GLX_SGIX_visual_select_group.txt 3 | GLX_SGIX_visual_select_group 4 | 5 | GLX_VISUAL_SELECT_GROUP_SGIX 0x8028 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_SGI_cushion: -------------------------------------------------------------------------------- 1 | GLX_SGI_cushion 2 | https://www.khronos.org/registry/OpenGL/extensions/SGI/GLX_SGI_cushion.txt 3 | GLX_SGI_cushion 4 | 5 | void glXCushionSGI (Display* dpy, Window window, float cushion) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GLX_SGI_swap_control: -------------------------------------------------------------------------------- 1 | GLX_SGI_swap_control 2 | https://www.khronos.org/registry/OpenGL/extensions/SGI/GLX_SGI_swap_control.txt 3 | GLX_SGI_swap_control 4 | 5 | int glXSwapIntervalSGI (int interval) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_3DFX_tbuffer: -------------------------------------------------------------------------------- 1 | GL_3DFX_tbuffer 2 | https://www.khronos.org/registry/OpenGL/extensions/3DFX/3DFX_tbuffer.txt 3 | GL_3DFX_tbuffer 4 | 5 | void glTbufferMask3DFX (GLuint mask) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_conservative_depth: -------------------------------------------------------------------------------- 1 | GL_AMD_conservative_depth 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_conservative_depth.txt 3 | GL_AMD_conservative_depth 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_gcn_shader: -------------------------------------------------------------------------------- 1 | GL_AMD_gcn_shader 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_gcn_shader.txt 3 | GL_AMD_gcn_shader 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_gpu_shader_int16: -------------------------------------------------------------------------------- 1 | GL_AMD_gpu_shader_int16 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_gpu_shader_int16.txt 3 | GL_AMD_gpu_shader_int16 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_gpu_shader_int64: -------------------------------------------------------------------------------- 1 | GL_AMD_gpu_shader_int64 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_gpu_shader_int64.txt 3 | GL_AMD_gpu_shader_int64 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_pinned_memory: -------------------------------------------------------------------------------- 1 | GL_AMD_pinned_memory 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_pinned_memory.txt 3 | GL_AMD_pinned_memory 4 | 5 | GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD 0x9160 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_program_binary_Z400: -------------------------------------------------------------------------------- 1 | GL_AMD_program_binary_Z400 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_program_binary_Z400.txt 3 | GL_AMD_program_binary_Z400 4 | 5 | GL_Z400_BINARY_AMD 0x8740 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_shader_atomic_counter_ops: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_atomic_counter_ops 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_shader_atomic_counter_ops.txt 3 | GL_AMD_shader_atomic_counter_ops 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_shader_ballot: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_ballot 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_shader_ballot.txt 3 | GL_AMD_shader_ballot 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_shader_explicit_vertex_parameter: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_explicit_vertex_parameter 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_shader_explicit_vertex_parameter.txt 3 | GL_AMD_shader_explicit_vertex_parameter 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_shader_image_load_store_lod: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_image_load_store_lod 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_shader_image_load_store_lod.txt 3 | GL_AMD_shader_image_load_store_lod 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_shader_stencil_export: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_stencil_export 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_shader_stencil_export.txt 3 | GL_AMD_shader_stencil_export 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_shader_stencil_value_export: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_stencil_value_export 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_shader_stencil_value_export.txt 3 | GL_AMD_shader_stencil_value_export 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_shader_trinary_minmax: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_trinary_minmax 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_shader_trinary_minmax.txt 3 | GL_AMD_shader_trinary_minmax 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_texture_gather_bias_lod: -------------------------------------------------------------------------------- 1 | GL_AMD_texture_gather_bias_lod 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_texture_gather_bias_lod.txt 3 | GL_AMD_texture_gather_bias_lod 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_texture_texture4: -------------------------------------------------------------------------------- 1 | GL_AMD_texture_texture4 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_texture_texture4.txt 3 | GL_AMD_texture_texture4 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_transform_feedback4: -------------------------------------------------------------------------------- 1 | GL_AMD_transform_feedback4 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_transform_feedback4.txt 3 | GL_AMD_transform_feedback4 4 | 5 | GL_STREAM_RASTERIZATION_AMD 0x91A0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_vertex_shader_layer: -------------------------------------------------------------------------------- 1 | GL_AMD_vertex_shader_layer 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_vertex_shader_layer.txt 3 | GL_AMD_vertex_shader_layer 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_AMD_vertex_shader_viewport_index: -------------------------------------------------------------------------------- 1 | GL_AMD_vertex_shader_viewport_index 2 | https://www.khronos.org/registry/OpenGL/extensions/AMD/AMD_vertex_shader_viewport_index.txt 3 | GL_AMD_vertex_shader_viewport_index 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ANDROID_extension_pack_es31a: -------------------------------------------------------------------------------- 1 | GL_ANDROID_extension_pack_es31a 2 | https://www.khronos.org/registry/OpenGL/extensions/ANDROID/ANDROID_extension_pack_es31a.txt 3 | GL_ANDROID_extension_pack_es31a 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ANGLE_depth_texture: -------------------------------------------------------------------------------- 1 | GL_ANGLE_depth_texture 2 | https://www.khronos.org/registry/OpenGL/extensions/ANGLE/depth_texture.txt 3 | GL_ANGLE_depth_texture 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ANGLE_program_binary: -------------------------------------------------------------------------------- 1 | GL_ANGLE_program_binary 2 | https://www.khronos.org/registry/OpenGL/extensions/ANGLE/program_binary.txt 3 | GL_ANGLE_program_binary 4 | 5 | GL_PROGRAM_BINARY_ANGLE 0x93A6 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_APPLE_aux_depth_stencil: -------------------------------------------------------------------------------- 1 | GL_APPLE_aux_depth_stencil 2 | https://www.khronos.org/registry/OpenGL/extensions/APPLE/APPLE_aux_depth_stencil.txt 3 | GL_APPLE_aux_depth_stencil 4 | 5 | GL_AUX_DEPTH_STENCIL_APPLE 0x8A14 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_APPLE_client_storage: -------------------------------------------------------------------------------- 1 | GL_APPLE_client_storage 2 | https://www.khronos.org/registry/OpenGL/extensions/APPLE/APPLE_client_storage.txt 3 | GL_APPLE_client_storage 4 | 5 | GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_APPLE_color_buffer_packed_float: -------------------------------------------------------------------------------- 1 | GL_APPLE_color_buffer_packed_float 2 | https://www.khronos.org/registry/OpenGL/extensions/APPLE/APPLE_color_buffer_packed_float.txt 3 | GL_APPLE_color_buffer_packed_float 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_APPLE_pixel_buffer: -------------------------------------------------------------------------------- 1 | GL_APPLE_pixel_buffer 2 | 3 | GL_APPLE_pixel_buffer 4 | 5 | GL_MIN_PBUFFER_VIEWPORT_DIMS_APPLE 0x8A10 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_APPLE_row_bytes: -------------------------------------------------------------------------------- 1 | GL_APPLE_row_bytes 2 | https://www.khronos.org/registry/OpenGL/extensions/APPLE/APPLE_row_bytes.txt 3 | GL_APPLE_row_bytes 4 | 5 | GL_PACK_ROW_BYTES_APPLE 0x8A15 6 | GL_UNPACK_ROW_BYTES_APPLE 0x8A16 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_APPLE_specular_vector: -------------------------------------------------------------------------------- 1 | GL_APPLE_specular_vector 2 | https://www.khronos.org/registry/OpenGL/extensions/APPLE/APPLE_specular_vector.txt 3 | GL_APPLE_specular_vector 4 | 5 | GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_APPLE_texture_2D_limited_npot: -------------------------------------------------------------------------------- 1 | GL_APPLE_texture_2D_limited_npot 2 | https://www.khronos.org/registry/OpenGL/extensions/APPLE/APPLE_texture_2D_limited_npot.txt 3 | GL_APPLE_texture_2D_limited_npot 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_APPLE_texture_max_level: -------------------------------------------------------------------------------- 1 | GL_APPLE_texture_max_level 2 | https://www.khronos.org/registry/OpenGL/extensions/APPLE/APPLE_texture_max_level.txt 3 | GL_APPLE_texture_max_level 4 | 5 | GL_TEXTURE_MAX_LEVEL_APPLE 0x813D 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_APPLE_transform_hint: -------------------------------------------------------------------------------- 1 | GL_APPLE_transform_hint 2 | https://www.khronos.org/registry/OpenGL/extensions/APPLE/APPLE_transform_hint.txt 3 | GL_APPLE_transform_hint 4 | 5 | GL_TRANSFORM_HINT_APPLE 0x85B1 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_APPLE_ycbcr_422: -------------------------------------------------------------------------------- 1 | GL_APPLE_ycbcr_422 2 | https://www.khronos.org/registry/OpenGL/extensions/APPLE/APPLE_ycbcr_422.txt 3 | GL_APPLE_ycbcr_422 4 | 5 | GL_YCBCR_422_APPLE 0x85B9 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_arrays_of_arrays: -------------------------------------------------------------------------------- 1 | GL_ARB_arrays_of_arrays 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_arrays_of_arrays.txt 3 | GL_ARB_arrays_of_arrays 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_compatibility: -------------------------------------------------------------------------------- 1 | GL_ARB_compatibility 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_compatibility.txt 3 | GL_ARB_compatibility 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_conservative_depth: -------------------------------------------------------------------------------- 1 | GL_ARB_conservative_depth 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_conservative_depth.txt 3 | GL_ARB_conservative_depth 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_depth_clamp: -------------------------------------------------------------------------------- 1 | GL_ARB_depth_clamp 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_depth_clamp.txt 3 | GL_ARB_depth_clamp 4 | 5 | GL_DEPTH_CLAMP 0x864F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_derivative_control: -------------------------------------------------------------------------------- 1 | GL_ARB_derivative_control 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_derivative_control.txt 3 | GL_ARB_derivative_control 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_explicit_attrib_location: -------------------------------------------------------------------------------- 1 | GL_ARB_explicit_attrib_location 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_explicit_attrib_location.txt 3 | GL_ARB_explicit_attrib_location 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_fragment_coord_conventions: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_coord_conventions 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_fragment_coord_conventions.txt 3 | GL_ARB_fragment_coord_conventions 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_fragment_layer_viewport: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_layer_viewport 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_fragment_layer_viewport.txt 3 | GL_ARB_fragment_layer_viewport 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_fragment_program_shadow: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_program_shadow 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_fragment_program_shadow.txt 3 | GL_ARB_fragment_program_shadow 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_fragment_shader_interlock: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_shader_interlock 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_fragment_shader_interlock.txt 3 | GL_ARB_fragment_shader_interlock 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GL_ARB_framebuffer_sRGB 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_framebuffer_sRGB.txt 3 | GL_ARB_framebuffer_sRGB 4 | 5 | GL_FRAMEBUFFER_SRGB 0x8DB9 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_half_float_pixel: -------------------------------------------------------------------------------- 1 | GL_ARB_half_float_pixel 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_half_float_pixel.txt 3 | GL_ARB_half_float_pixel 4 | 5 | GL_HALF_FLOAT_ARB 0x140B 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_half_float_vertex: -------------------------------------------------------------------------------- 1 | GL_ARB_half_float_vertex 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_half_float_vertex.txt 3 | GL_ARB_half_float_vertex 4 | 5 | GL_HALF_FLOAT 0x140B 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_map_buffer_alignment: -------------------------------------------------------------------------------- 1 | GL_ARB_map_buffer_alignment 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_map_buffer_alignment.txt 3 | GL_ARB_map_buffer_alignment 4 | 5 | GL_MIN_MAP_BUFFER_ALIGNMENT 0x90BC 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_occlusion_query2: -------------------------------------------------------------------------------- 1 | GL_ARB_occlusion_query2 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_occlusion_query2.txt 3 | GL_ARB_occlusion_query2 4 | 5 | GL_ANY_SAMPLES_PASSED 0x8C2F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_point_sprite: -------------------------------------------------------------------------------- 1 | GL_ARB_point_sprite 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_point_sprite.txt 3 | GL_ARB_point_sprite 4 | 5 | GL_POINT_SPRITE_ARB 0x8861 6 | GL_COORD_REPLACE_ARB 0x8862 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_post_depth_coverage: -------------------------------------------------------------------------------- 1 | GL_ARB_post_depth_coverage 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_post_depth_coverage.txt 3 | GL_ARB_post_depth_coverage 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_robust_buffer_access_behavior: -------------------------------------------------------------------------------- 1 | GL_ARB_robust_buffer_access_behavior 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_robust_buffer_access_behavior.txt 3 | GL_ARB_robust_buffer_access_behavior 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_robustness_application_isolation: -------------------------------------------------------------------------------- 1 | GL_ARB_robustness_application_isolation 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_robustness_application_isolation.txt 3 | GL_ARB_robustness_application_isolation 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_robustness_share_group_isolation: -------------------------------------------------------------------------------- 1 | GL_ARB_robustness_share_group_isolation 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_robustness_application_isolation.txt 3 | GL_ARB_robustness_share_group_isolation 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_seamless_cube_map: -------------------------------------------------------------------------------- 1 | GL_ARB_seamless_cube_map 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_seamless_cube_map.txt 3 | GL_ARB_seamless_cube_map 4 | 5 | GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_atomic_counter_ops: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_atomic_counter_ops 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_atomic_counter_ops.txt 3 | GL_ARB_shader_atomic_counter_ops 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_ballot: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_ballot 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_ballot.txt 3 | GL_ARB_shader_ballot 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_bit_encoding: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_bit_encoding 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_bit_encoding.txt 3 | GL_ARB_shader_bit_encoding 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_clock: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_clock 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_clock.txt 3 | GL_ARB_shader_clock 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_draw_parameters: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_draw_parameters 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_draw_parameters.txt 3 | GL_ARB_shader_draw_parameters 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_group_vote: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_group_vote 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_group_vote.txt 3 | GL_ARB_shader_group_vote 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_image_size: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_image_size 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_image_size.txt 3 | GL_ARB_shader_image_size 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_precision: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_precision 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_precision.txt 3 | GL_ARB_shader_precision 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_stencil_export: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_stencil_export 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_stencil_export.txt 3 | GL_ARB_shader_stencil_export 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_texture_image_samples: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_texture_image_samples 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_texture_image_samples.txt 3 | GL_ARB_shader_texture_image_samples 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_texture_lod: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_texture_lod 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_texture_lod.txt 3 | GL_ARB_shader_texture_lod 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shader_viewport_layer_array: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_viewport_layer_array 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shader_viewport_layer_array.txt 3 | GL_ARB_shader_viewport_layer_array 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shading_language_100: -------------------------------------------------------------------------------- 1 | GL_ARB_shading_language_100 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shading_language_100.txt 3 | GL_ARB_shading_language_100 4 | 5 | GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shading_language_420pack: -------------------------------------------------------------------------------- 1 | GL_ARB_shading_language_420pack 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shading_language_420pack.txt 3 | GL_ARB_shading_language_420pack 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shading_language_packing: -------------------------------------------------------------------------------- 1 | GL_ARB_shading_language_packing 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shading_language_packing.txt 3 | GL_ARB_shading_language_packing 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_shadow_ambient: -------------------------------------------------------------------------------- 1 | GL_ARB_shadow_ambient 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_shadow_ambient.txt 3 | GL_ARB_shadow_ambient 4 | 5 | GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_sparse_texture2: -------------------------------------------------------------------------------- 1 | GL_ARB_sparse_texture2 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_sparse_texture2.txt 3 | GL_ARB_sparse_texture2 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_sparse_texture_clamp: -------------------------------------------------------------------------------- 1 | GL_ARB_sparse_texture_clamp 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_sparse_texture_clamp.txt 3 | GL_ARB_sparse_texture_clamp 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_stencil_texturing: -------------------------------------------------------------------------------- 1 | GL_ARB_stencil_texturing 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_stencil_texturing.txt 3 | GL_ARB_stencil_texturing 4 | 5 | GL_DEPTH_STENCIL_TEXTURE_MODE 0x90EA 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_barrier: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_barrier 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_barrier.txt 3 | GL_ARB_texture_barrier 4 | 5 | void glTextureBarrier (void) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_border_clamp: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_border_clamp 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_border_clamp.txt 3 | GL_ARB_texture_border_clamp 4 | 5 | GL_CLAMP_TO_BORDER_ARB 0x812D 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_buffer_object_rgb32: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_buffer_object_rgb32 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_buffer_object_rgb32.txt 3 | GL_ARB_texture_buffer_object_rgb32 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_env_add: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_env_add 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_env_add.txt 3 | GL_ARB_texture_env_add 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_env_crossbar: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_env_crossbar 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_env_crossbar.txt 3 | GL_ARB_texture_env_crossbar 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_env_dot3: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_env_dot3 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_env_dot3.txt 3 | GL_ARB_texture_env_dot3 4 | 5 | GL_DOT3_RGB_ARB 0x86AE 6 | GL_DOT3_RGBA_ARB 0x86AF 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_mirrored_repeat: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_mirrored_repeat 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_mirrored_repeat.txt 3 | GL_ARB_texture_mirrored_repeat 4 | 5 | GL_MIRRORED_REPEAT_ARB 0x8370 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_non_power_of_two: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_non_power_of_two 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_non_power_of_two.txt 3 | GL_ARB_texture_non_power_of_two 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_query_levels: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_query_levels 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_query_levels.txt 3 | GL_ARB_texture_query_levels 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_query_lod: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_query_lod 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_query_lod.txt 3 | GL_ARB_texture_query_lod 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_rgb10_a2ui: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_rgb10_a2ui 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_rgb10_a2ui.txt 3 | GL_ARB_texture_rgb10_a2ui 4 | 5 | GL_RGB10_A2UI 0x906F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_texture_stencil8: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_stencil8 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_stencil8.txt 3 | GL_ARB_texture_stencil8 4 | 5 | GL_STENCIL_INDEX 0x1901 6 | GL_STENCIL_INDEX8 0x8D48 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARB_vertex_array_bgra: -------------------------------------------------------------------------------- 1 | GL_ARB_vertex_array_bgra 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_vertex_array_bgra.txt 3 | GL_ARB_vertex_array_bgra 4 | 5 | GL_BGRA 0x80E1 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARM_mali_program_binary: -------------------------------------------------------------------------------- 1 | GL_ARM_mali_program_binary 2 | https://www.khronos.org/registry/OpenGL/extensions/ARM/ARM_mali_program_binary.txt 3 | GL_ARM_mali_program_binary 4 | 5 | GL_MALI_PROGRAM_BINARY_ARM 0x8F61 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARM_mali_shader_binary: -------------------------------------------------------------------------------- 1 | GL_ARM_mali_shader_binary 2 | https://www.khronos.org/registry/OpenGL/extensions/ARM/ARM_mali_shader_binary.txt 3 | GL_ARM_mali_shader_binary 4 | 5 | GL_MALI_SHADER_BINARY_ARM 0x8F60 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ARM_rgba8: -------------------------------------------------------------------------------- 1 | GL_ARM_rgba8 2 | https://www.khronos.org/registry/OpenGL/extensions/ARM/ARM_rgba8.txt 3 | GL_ARM_rgba8 4 | 5 | GL_RGBA8_OES 0x8058 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GL_OUTPUT_POINT_SIZE_ATIX 0x610E 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ATI_shader_texture_lod: -------------------------------------------------------------------------------- 1 | GL_ATI_shader_texture_lod 2 | 3 | GL_ATI_shader_texture_lod 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ATI_text_fragment_shader: -------------------------------------------------------------------------------- 1 | GL_ATI_text_fragment_shader 2 | https://www.khronos.org/registry/OpenGL/extensions/ATI/ATI_text_fragment_shader.txt 3 | GL_ATI_text_fragment_shader 4 | 5 | GL_TEXT_FRAGMENT_SHADER_ATI 0x8200 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_ATI_texture_compression_3dc: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_compression_3dc 2 | 3 | GL_ATI_texture_compression_3dc 4 | 5 | GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI 0x8837 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_DMP_shader_binary: -------------------------------------------------------------------------------- 1 | GL_DMP_shader_binary 2 | https://www.khronos.org/registry/OpenGL/extensions/DMP/DMP_shader_binary.txt 3 | GL_DMP_shader_binary 4 | 5 | GL_SHADER_BINARY_DMP 0x9250 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EGL_KHR_context_flush_control: -------------------------------------------------------------------------------- 1 | GL_EGL_KHR_context_flush_control 2 | https://www.khronos.org/registry/OpenGL/extensions/KHR/KHR_context_flush_control.txt 3 | GL_EGL_KHR_context_flush_control 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GL_CG_VERTEX_SHADER_EXT 0x890E 6 | GL_CG_FRAGMENT_SHADER_EXT 0x890F 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_EGL_image_array: -------------------------------------------------------------------------------- 1 | GL_EXT_EGL_image_array 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_EGL_image_array.txt 3 | GL_EXT_EGL_image_array 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_EGL_image_external_wrap_modes: -------------------------------------------------------------------------------- 1 | GL_EXT_EGL_image_external_wrap_modes 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_EGL_image_external_wrap_modes.txt 3 | GL_EXT_EGL_image_external_wrap_modes 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_YUV_target: -------------------------------------------------------------------------------- 1 | GL_EXT_YUV_target 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_YUV_target.txt 3 | GL_EXT_YUV_target 4 | 5 | GL_SAMPLER_EXTERNAL_2D_Y2Y_EXT 0x8BE7 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_abgr: -------------------------------------------------------------------------------- 1 | GL_EXT_abgr 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_abgr.txt 3 | GL_EXT_abgr 4 | 5 | GL_ABGR_EXT 0x8000 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_bgra: -------------------------------------------------------------------------------- 1 | GL_EXT_bgra 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_bgra.txt 3 | GL_EXT_bgra 4 | 5 | GL_BGR_EXT 0x80E0 6 | GL_BGRA_EXT 0x80E1 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_blend_logic_op: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_logic_op 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_blend_logic_op.txt 3 | GL_EXT_blend_logic_op 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_clip_volume_hint: -------------------------------------------------------------------------------- 1 | GL_EXT_clip_volume_hint 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_clip_volume_hint.txt 3 | GL_EXT_clip_volume_hint 4 | 5 | GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_color_buffer_float: -------------------------------------------------------------------------------- 1 | GL_EXT_color_buffer_float 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_color_buffer_float.txt 3 | GL_EXT_color_buffer_float 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_conservative_depth: -------------------------------------------------------------------------------- 1 | GL_EXT_conservative_depth 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_conservative_depth.txt 3 | GL_EXT_conservative_depth 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_float_blend: -------------------------------------------------------------------------------- 1 | GL_EXT_float_blend 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_float_blend.txt 3 | GL_EXT_float_blend 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_frag_depth: -------------------------------------------------------------------------------- 1 | GL_EXT_frag_depth 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_frag_depth.txt 3 | GL_EXT_frag_depth 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_gpu_shader5: -------------------------------------------------------------------------------- 1 | GL_EXT_gpu_shader5 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_gpu_shader5.txt 3 | GL_EXT_gpu_shader5 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_index_array_formats: -------------------------------------------------------------------------------- 1 | GL_EXT_index_array_formats 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_index_array_formats.txt 3 | GL_EXT_index_array_formats 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_index_func: -------------------------------------------------------------------------------- 1 | GL_EXT_index_func 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_index_func.txt 3 | GL_EXT_index_func 4 | 5 | void glIndexFuncEXT (GLenum func, GLfloat ref) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_index_material: -------------------------------------------------------------------------------- 1 | GL_EXT_index_material 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_index_material.txt 3 | GL_EXT_index_material 4 | 5 | void glIndexMaterialEXT (GLenum face, GLenum mode) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_index_texture: -------------------------------------------------------------------------------- 1 | GL_EXT_index_texture 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_index_texture.txt 3 | GL_EXT_index_texture 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_misc_attribute: -------------------------------------------------------------------------------- 1 | GL_EXT_misc_attribute 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_misc_attribute.txt 3 | GL_EXT_misc_attribute 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_multiple_textures: -------------------------------------------------------------------------------- 1 | GL_EXT_multiple_textures 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_multiple_textures.txt 3 | GL_EXT_multiple_textures 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_multisampled_render_to_texture2: -------------------------------------------------------------------------------- 1 | GL_EXT_multisampled_render_to_texture2 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_multisampled_render_to_texture2.txt 3 | GL_EXT_multisampled_render_to_texture2 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_pixel_transform_color_table: -------------------------------------------------------------------------------- 1 | GL_EXT_pixel_transform_color_table 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_pixel_transform_color_table.txt 3 | GL_EXT_pixel_transform_color_table 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_post_depth_coverage: -------------------------------------------------------------------------------- 1 | GL_EXT_post_depth_coverage 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_post_depth_coverage.txt 3 | GL_EXT_post_depth_coverage 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_rescale_normal: -------------------------------------------------------------------------------- 1 | GL_EXT_rescale_normal 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_rescale_normal.txt 3 | GL_EXT_rescale_normal 4 | 5 | GL_RESCALE_NORMAL_EXT 0x803A 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_sRGB_write_control: -------------------------------------------------------------------------------- 1 | GL_EXT_sRGB_write_control 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_sRGB_write_control.txt 3 | GL_EXT_sRGB_write_control 4 | 5 | GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_scene_marker: -------------------------------------------------------------------------------- 1 | GL_EXT_scene_marker 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_scene_marker.txt 3 | GL_EXT_scene_marker 4 | 5 | void glBeginSceneEXT (void) 6 | void glEndSceneEXT (void) 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_semaphore_fd: -------------------------------------------------------------------------------- 1 | GL_EXT_semaphore_fd 2 | http://www.opengl.org/registry/specs/EXT/external_objects_fd.txt 3 | GL_EXT_semaphore_fd 4 | 5 | void glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_shader_group_vote: -------------------------------------------------------------------------------- 1 | GL_EXT_shader_group_vote 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_shader_group_vote.txt 3 | GL_EXT_shader_group_vote 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_shader_image_load_formatted: -------------------------------------------------------------------------------- 1 | GL_EXT_shader_image_load_formatted 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_shader_image_load_formatted.txt 3 | GL_EXT_shader_image_load_formatted 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_shader_implicit_conversions: -------------------------------------------------------------------------------- 1 | GL_EXT_shader_implicit_conversions 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_shader_implicit_conversions.txt 3 | GL_EXT_shader_implicit_conversions 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_shader_integer_mix: -------------------------------------------------------------------------------- 1 | GL_EXT_shader_integer_mix 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_shader_integer_mix.txt 3 | GL_EXT_shader_integer_mix 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_shader_io_blocks: -------------------------------------------------------------------------------- 1 | GL_EXT_shader_io_blocks 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_shader_io_blocks.txt 3 | GL_EXT_shader_io_blocks 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_shader_texture_lod: -------------------------------------------------------------------------------- 1 | GL_EXT_shader_texture_lod 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_shader_texture_lod.txt 3 | GL_EXT_shader_texture_lod 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_shadow_funcs: -------------------------------------------------------------------------------- 1 | GL_EXT_shadow_funcs 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_shadow_funcs.txt 3 | GL_EXT_shadow_funcs 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_sparse_texture2: -------------------------------------------------------------------------------- 1 | GL_EXT_sparse_texture2 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_sparse_texture2.txt 3 | GL_EXT_sparse_texture2 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_static_vertex_array: -------------------------------------------------------------------------------- 1 | GL_EXT_static_vertex_array 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_static_vertex_array.txt 3 | GL_EXT_static_vertex_array 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_stencil_wrap: -------------------------------------------------------------------------------- 1 | GL_EXT_stencil_wrap 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_stencil_wrap.txt 3 | GL_EXT_stencil_wrap 4 | 5 | GL_INCR_WRAP_EXT 0x8507 6 | GL_DECR_WRAP_EXT 0x8508 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_texture_compression_dxt1: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_dxt1 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_texture_compression_dxt1.txt 3 | GL_EXT_texture_compression_dxt1 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GL_CLAMP_TO_EDGE_EXT 0x812F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_texture_env: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_env 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_texture_env.txt 3 | GL_EXT_texture_env 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_texture_env_add: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_env_add 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_texture_env_add.txt 3 | GL_EXT_texture_env_add 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_texture_env_dot3: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_env_dot3 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_texture_env_dot3.txt 3 | GL_EXT_texture_env_dot3 4 | 5 | GL_DOT3_RGB_EXT 0x8740 6 | GL_DOT3_RGBA_EXT 0x8741 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_texture_format_BGRA8888: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_format_BGRA8888 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_texture_format_BGRA8888.txt 3 | GL_EXT_texture_format_BGRA8888 4 | 5 | GL_BGRA_EXT 0x80E1 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_texture_sRGB_R8: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_sRGB_R8 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_texture_sRGB_R8.txt 3 | GL_EXT_texture_sRGB_R8 4 | 5 | GL_SR8_EXT 0x8FBD 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_texture_sRGB_RG8: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_sRGB_RG8 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_texture_sRGB_RG8.txt 3 | GL_EXT_texture_sRGB_RG8 4 | 5 | GL_SRG8_EXT 0x8FBE 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_EXT_vertex_array_bgra: -------------------------------------------------------------------------------- 1 | GL_EXT_vertex_array_bgra 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_vertex_array_bgra.txt 3 | GL_EXT_vertex_array_bgra 4 | 5 | GL_BGRA 0x80E1 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_FJ_shader_binary_GCCSO: -------------------------------------------------------------------------------- 1 | GL_FJ_shader_binary_GCCSO 2 | https://www.khronos.org/registry/OpenGL/extensions/FJ/FJ_shader_binary_GCCSO.txt 3 | GL_FJ_shader_binary_GCCSO 4 | 5 | GL_GCCSO_SHADER_BINARY_FJ 0x9260 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_GLU_SGIX_icc_compress: -------------------------------------------------------------------------------- 1 | GL_GLU_SGIX_icc_compress 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/GLU_SGIX_icc_compress.txt 3 | GL_GLU_SGIX_icc_compress 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_HP_convolution_border_modes: -------------------------------------------------------------------------------- 1 | GL_HP_convolution_border_modes 2 | https://www.khronos.org/registry/OpenGL/extensions/HP/HP_convolution_border_modes.txt 3 | GL_HP_convolution_border_modes 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_HP_occlusion_test: -------------------------------------------------------------------------------- 1 | GL_HP_occlusion_test 2 | https://www.khronos.org/registry/OpenGL/extensions/HP/HP_occlusion_test.txt 3 | GL_HP_occlusion_test 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_HP_texture_lighting: -------------------------------------------------------------------------------- 1 | GL_HP_texture_lighting 2 | https://www.khronos.org/registry/OpenGL/extensions/HP/HP_texture_lighting.txt 3 | GL_HP_texture_lighting 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_IBM_cull_vertex: -------------------------------------------------------------------------------- 1 | GL_IBM_cull_vertex 2 | https://www.khronos.org/registry/OpenGL/extensions/IBM/IBM_cull_vertex.txt 3 | GL_IBM_cull_vertex 4 | 5 | GL_CULL_VERTEX_IBM 103050 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_IBM_rasterpos_clip: -------------------------------------------------------------------------------- 1 | GL_IBM_rasterpos_clip 2 | https://www.khronos.org/registry/OpenGL/extensions/IBM/IBM_rasterpos_clip.txt 3 | GL_IBM_rasterpos_clip 4 | 5 | GL_RASTER_POSITION_UNCLIPPED_IBM 103010 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_IBM_static_data: -------------------------------------------------------------------------------- 1 | GL_IBM_static_data 2 | https://www.khronos.org/registry/OpenGL/extensions/IBM/IBM_static_data.txt 3 | GL_IBM_static_data 4 | 5 | GL_ALL_STATIC_DATA_IBM 103060 6 | GL_STATIC_VERTEX_ARRAY_IBM 103061 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_IMG_program_binary: -------------------------------------------------------------------------------- 1 | GL_IMG_program_binary 2 | https://www.khronos.org/registry/OpenGL/extensions/IMG/IMG_program_binary.txt 3 | GL_IMG_program_binary 4 | 5 | GL_SGX_PROGRAM_BINARY_IMG 0x9130 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_IMG_read_format: -------------------------------------------------------------------------------- 1 | GL_IMG_read_format 2 | https://www.khronos.org/registry/OpenGL/extensions/IMG/IMG_read_format.txt 3 | GL_IMG_read_format 4 | 5 | GL_BGRA_IMG 0x80E1 6 | GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG 0x8365 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_IMG_shader_binary: -------------------------------------------------------------------------------- 1 | GL_IMG_shader_binary 2 | https://www.khronos.org/registry/OpenGL/extensions/IMG/IMG_shader_binary.txt 3 | GL_IMG_shader_binary 4 | 5 | GL_SGX_BINARY_IMG 0x8C0A 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_INGR_interlace_read: -------------------------------------------------------------------------------- 1 | GL_INGR_interlace_read 2 | https://www.khronos.org/registry/OpenGL/extensions/INGR/INGR_interlace_read.txt 3 | GL_INGR_interlace_read 4 | 5 | GL_INTERLACE_READ_INGR 0x8568 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_INTEL_blackhole_render: -------------------------------------------------------------------------------- 1 | GL_INTEL_blackhole_render 2 | https://www.khronos.org/registry/OpenGL/extensions/INTEL/INTEL_blackhole_render.txt 3 | GL_INTEL_blackhole_render 4 | 5 | GL_BLACKHOLE_RENDER_INTEL 0x83FC 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_INTEL_fragment_shader_ordering: -------------------------------------------------------------------------------- 1 | GL_INTEL_fragment_shader_ordering 2 | https://www.khronos.org/registry/OpenGL/extensions/INTEL/INTEL_fragment_shader_ordering.txt 3 | GL_INTEL_fragment_shader_ordering 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_INTEL_framebuffer_CMAA: -------------------------------------------------------------------------------- 1 | GL_INTEL_framebuffer_CMAA 2 | https://www.khronos.org/registry/OpenGL/extensions/INTEL/INTEL_framebuffer_CMAA.txt 3 | GL_INTEL_framebuffer_CMAA 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_KHR_blend_equation_advanced_coherent: -------------------------------------------------------------------------------- 1 | GL_KHR_blend_equation_advanced_coherent 2 | https://www.khronos.org/registry/OpenGL/extensions/KHR/KHR_blend_equation_advanced.txt 3 | GL_KHR_blend_equation_advanced_coherent 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_KHR_context_flush_control: -------------------------------------------------------------------------------- 1 | GL_KHR_context_flush_control 2 | https://www.khronos.org/registry/OpenGL/extensions/KHR/KHR_context_flush_control.txt 3 | GL_KHR_context_flush_control 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_KHR_no_error: -------------------------------------------------------------------------------- 1 | GL_KHR_no_error 2 | https://www.khronos.org/registry/OpenGL/extensions/KHR/KHR_no_error.txt 3 | GL_KHR_no_error 4 | 5 | GL_CONTEXT_FLAG_NO_ERROR_BIT_KHR 0x00000008 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_KHR_robust_buffer_access_behavior: -------------------------------------------------------------------------------- 1 | GL_KHR_robust_buffer_access_behavior 2 | https://www.khronos.org/registry/OpenGL/extensions/KHR/KHR_robust_buffer_access_behavior.txt 3 | GL_KHR_robust_buffer_access_behavior 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_MESA_framebuffer_flip_y: -------------------------------------------------------------------------------- 1 | GL_MESA_framebuffer_flip_y 2 | https://www.khronos.org/registry/OpenGL/extensions/MESA/MESA_framebuffer_flip_y.txt 3 | GL_MESA_framebuffer_flip_y 4 | 5 | GL_FRAMEBUFFER_FLIP_Y_MESA 0x8BBB 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_MESA_pack_invert: -------------------------------------------------------------------------------- 1 | GL_MESA_pack_invert 2 | https://www.khronos.org/registry/OpenGL/extensions/MESA/MESA_pack_invert.txt 3 | GL_MESA_pack_invert 4 | 5 | GL_PACK_INVERT_MESA 0x8758 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_MESA_resize_buffers: -------------------------------------------------------------------------------- 1 | GL_MESA_resize_buffers 2 | https://www.khronos.org/registry/OpenGL/extensions/MESA/MESA_resize_buffers.txt 3 | GL_MESA_resize_buffers 4 | 5 | void glResizeBuffersMESA (void) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_MESA_shader_integer_functions: -------------------------------------------------------------------------------- 1 | GL_MESA_shader_integer_functions 2 | https://www.khronos.org/registry/OpenGL/extensions/MESA/MESA_shader_integer_functions.txt 3 | GL_MESA_shader_integer_functions 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_MESA_tile_raster_order: -------------------------------------------------------------------------------- 1 | GL_MESA_tile_raster_order 2 | https://www.khronos.org/registry/OpenGL/extensions/MESA/MESA_tile_raster_order.txt 3 | GL_MESA_tile_raster_order 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_bgr: -------------------------------------------------------------------------------- 1 | GL_NV_bgr 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_bgr.txt 3 | GL_NV_bgr 4 | 5 | GL_BGR_NV 0x80E0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_blend_equation_advanced_coherent: -------------------------------------------------------------------------------- 1 | GL_NV_blend_equation_advanced_coherent 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_blend_equation_advanced.txt 3 | GL_NV_blend_equation_advanced_coherent 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_blend_square: -------------------------------------------------------------------------------- 1 | GL_NV_blend_square 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_blend_square.txt 3 | GL_NV_blend_square 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_compute_shader_derivatives: -------------------------------------------------------------------------------- 1 | GL_NV_compute_shader_derivatives 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_compute_shader_derivatives.txt 3 | GL_NV_compute_shader_derivatives 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_depth_clamp: -------------------------------------------------------------------------------- 1 | GL_NV_depth_clamp 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_depth_clamp.txt 3 | GL_NV_depth_clamp 4 | 5 | GL_DEPTH_CLAMP_NV 0x864F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_explicit_attrib_location: -------------------------------------------------------------------------------- 1 | GL_NV_explicit_attrib_location 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_explicit_attrib_location.txt 3 | GL_NV_explicit_attrib_location 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_fill_rectangle: -------------------------------------------------------------------------------- 1 | GL_NV_fill_rectangle 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_fill_rectangle.txt 3 | GL_NV_fill_rectangle 4 | 5 | GL_FILL_RECTANGLE_NV 0x933C 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_fragment_shader_barycentric: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_shader_barycentric 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_fragment_shader_barycentric.txt 3 | GL_NV_fragment_shader_barycentric 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_fragment_shader_interlock: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_shader_interlock 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_fragment_shader_interlock.txt 3 | GL_NV_fragment_shader_interlock 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_generate_mipmap_sRGB: -------------------------------------------------------------------------------- 1 | GL_NV_generate_mipmap_sRGB 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_generate_mipmap_sRGB.txt 3 | GL_NV_generate_mipmap_sRGB 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_geometry_shader_passthrough: -------------------------------------------------------------------------------- 1 | GL_NV_geometry_shader_passthrough 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_geometry_shader_passthrough.txt 3 | GL_NV_geometry_shader_passthrough 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_gpu_program5_mem_extended: -------------------------------------------------------------------------------- 1 | GL_NV_gpu_program5_mem_extended 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_gpu_program5_mem_extended.txt 3 | GL_NV_gpu_program5_mem_extended 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_gpu_program_fp64: -------------------------------------------------------------------------------- 1 | GL_NV_gpu_program_fp64 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_gpu_program5.txt 3 | GL_NV_gpu_program_fp64 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_image_formats: -------------------------------------------------------------------------------- 1 | GL_NV_image_formats 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_image_formats.txt 3 | GL_NV_image_formats 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_multisample_coverage: -------------------------------------------------------------------------------- 1 | GL_NV_multisample_coverage 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_multisample_coverage.txt 3 | GL_NV_multisample_coverage 4 | 5 | GL_COLOR_SAMPLES_NV 0x8E20 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_packed_float: -------------------------------------------------------------------------------- 1 | GL_NV_packed_float 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_packed_float.txt 3 | GL_NV_packed_float 4 | 5 | GL_R11F_G11F_B10F_NV 0x8C3A 6 | GL_UNSIGNED_INT_10F_11F_11F_REV_NV 0x8C3B 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_parameter_buffer_object2: -------------------------------------------------------------------------------- 1 | GL_NV_parameter_buffer_object2 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_parameter_buffer_object2.txt 3 | GL_NV_parameter_buffer_object2 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_platform_binary: -------------------------------------------------------------------------------- 1 | GL_NV_platform_binary 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_platform_binary.txt 3 | GL_NV_platform_binary 4 | 5 | GL_NVIDIA_PLATFORM_BINARY_NV 0x890B 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_query_resource_tag: -------------------------------------------------------------------------------- 1 | GL_NV_query_resource_tag 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_query_resource_tag.txt 3 | GL_NV_query_resource_tag 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_read_buffer: -------------------------------------------------------------------------------- 1 | GL_NV_read_buffer 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_read_buffer.txt 3 | GL_NV_read_buffer 4 | 5 | GL_READ_BUFFER_NV 0x0C02 6 | void glReadBufferNV (GLenum mode) 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_read_buffer_front: -------------------------------------------------------------------------------- 1 | GL_NV_read_buffer_front 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_read_buffer.txt 3 | GL_NV_read_buffer_front 4 | 5 | GL_READ_BUFFER_NV 0x0C02 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_read_depth: -------------------------------------------------------------------------------- 1 | GL_NV_read_depth 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_read_depth_stencil.txt 3 | GL_NV_read_depth 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_read_depth_stencil: -------------------------------------------------------------------------------- 1 | GL_NV_read_depth_stencil 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_read_depth_stencil.txt 3 | GL_NV_read_depth_stencil 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_read_stencil: -------------------------------------------------------------------------------- 1 | GL_NV_read_stencil 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_read_depth_stencil.txt 3 | GL_NV_read_stencil 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_sample_mask_override_coverage: -------------------------------------------------------------------------------- 1 | GL_NV_sample_mask_override_coverage 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_sample_mask_override_coverage.txt 3 | GL_NV_sample_mask_override_coverage 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_shader_atomic_counters: -------------------------------------------------------------------------------- 1 | GL_NV_shader_atomic_counters 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_shader_atomic_counters.txt 3 | GL_NV_shader_atomic_counters 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_shader_atomic_float: -------------------------------------------------------------------------------- 1 | GL_NV_shader_atomic_float 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_shader_atomic_float.txt 3 | GL_NV_shader_atomic_float 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_shader_atomic_float64: -------------------------------------------------------------------------------- 1 | GL_NV_shader_atomic_float64 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_shader_atomic_float64.txt 3 | GL_NV_shader_atomic_float64 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_shader_atomic_fp16_vector: -------------------------------------------------------------------------------- 1 | GL_NV_shader_atomic_fp16_vector 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_shader_atomic_fp16_vector.txt 3 | GL_NV_shader_atomic_fp16_vector 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_shader_atomic_int64: -------------------------------------------------------------------------------- 1 | GL_NV_shader_atomic_int64 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_shader_atomic_int64.txt 3 | GL_NV_shader_atomic_int64 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_shader_storage_buffer_object: -------------------------------------------------------------------------------- 1 | GL_NV_shader_storage_buffer_object 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_shader_storage_buffer_object.txt 3 | GL_NV_shader_storage_buffer_object 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_shader_texture_footprint: -------------------------------------------------------------------------------- 1 | GL_NV_shader_texture_footprint 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_shader_texture_footprint.txt 3 | GL_NV_shader_texture_footprint 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_shader_thread_shuffle: -------------------------------------------------------------------------------- 1 | GL_NV_shader_thread_shuffle 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_shader_thread_shuffle.txt 3 | GL_NV_shader_thread_shuffle 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_shadow_samplers_array: -------------------------------------------------------------------------------- 1 | GL_NV_shadow_samplers_array 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_shadow_samplers_array.txt 3 | GL_NV_shadow_samplers_array 4 | 5 | GL_SAMPLER_2D_ARRAY_SHADOW_NV 0x8DC4 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_shadow_samplers_cube: -------------------------------------------------------------------------------- 1 | GL_NV_shadow_samplers_cube 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_shadow_samplers_cube.txt 3 | GL_NV_shadow_samplers_cube 4 | 5 | GL_SAMPLER_CUBE_SHADOW_NV 0x8DC5 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_stereo_view_rendering: -------------------------------------------------------------------------------- 1 | GL_NV_stereo_view_rendering 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_stereo_view_rendering.txt 3 | GL_NV_stereo_view_rendering 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_texgen_reflection: -------------------------------------------------------------------------------- 1 | GL_NV_texgen_reflection 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_texgen_reflection.txt 3 | GL_NV_texgen_reflection 4 | 5 | GL_NORMAL_MAP_NV 0x8511 6 | GL_REFLECTION_MAP_NV 0x8512 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_texture_barrier: -------------------------------------------------------------------------------- 1 | GL_NV_texture_barrier 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_texture_barrier.txt 3 | GL_NV_texture_barrier 4 | 5 | void glTextureBarrierNV (void) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_texture_compression_s3tc_update: -------------------------------------------------------------------------------- 1 | GL_NV_texture_compression_s3tc_update 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_texture_compression_s3tc_update.txt 3 | GL_NV_texture_compression_s3tc_update 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_texture_compression_vtc: -------------------------------------------------------------------------------- 1 | GL_NV_texture_compression_vtc 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_texture_compression_vtc.txt 3 | GL_NV_texture_compression_vtc 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_texture_expand_normal: -------------------------------------------------------------------------------- 1 | GL_NV_texture_expand_normal 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_texture_expand_normal.txt 3 | GL_NV_texture_expand_normal 4 | 5 | GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_texture_npot_2D_mipmap: -------------------------------------------------------------------------------- 1 | GL_NV_texture_npot_2D_mipmap 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_texture_npot_2D_mipmap.txt 3 | GL_NV_texture_npot_2D_mipmap 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_texture_rectangle_compressed: -------------------------------------------------------------------------------- 1 | GL_NV_texture_rectangle_compressed 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_texture_rectangle_compressed.txt 3 | GL_NV_texture_rectangle_compressed 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_vertex_array_range2: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_array_range2 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_vertex_array_range2.txt 3 | GL_NV_vertex_array_range2 4 | 5 | GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_vertex_program1_1: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program1_1 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_vertex_program1_1.txt 3 | GL_NV_vertex_program1_1 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_vertex_program2: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program2 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_vertex_program2.txt 3 | GL_NV_vertex_program2 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_NV_viewport_array2: -------------------------------------------------------------------------------- 1 | GL_NV_viewport_array2 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/NV_viewport_array2.txt 3 | GL_NV_viewport_array2 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_EGL_image_external_essl3: -------------------------------------------------------------------------------- 1 | GL_OES_EGL_image_external_essl3 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_EGL_image_external_essl3.txt 3 | GL_OES_EGL_image_external_essl3 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_byte_coordinates: -------------------------------------------------------------------------------- 1 | GL_OES_byte_coordinates 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_byte_coordinates.txt 3 | GL_OES_byte_coordinates 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_depth24: -------------------------------------------------------------------------------- 1 | GL_OES_depth24 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_depth24.txt 3 | GL_OES_depth24 4 | 5 | GL_DEPTH_COMPONENT24_OES 0x81A6 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_depth32: -------------------------------------------------------------------------------- 1 | GL_OES_depth32 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_depth32.txt 3 | GL_OES_depth32 4 | 5 | GL_DEPTH_COMPONENT32_OES 0x81A7 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_draw_texture: -------------------------------------------------------------------------------- 1 | GL_OES_draw_texture 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_draw_texture.txt 3 | GL_OES_draw_texture 4 | 5 | GL_TEXTURE_CROP_RECT_OES 0x8B9D 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_element_index_uint: -------------------------------------------------------------------------------- 1 | GL_OES_element_index_uint 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_element_index_uint.txt 3 | GL_OES_element_index_uint 4 | 5 | GL_UNSIGNED_INT 0x1405 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_extended_matrix_palette: -------------------------------------------------------------------------------- 1 | GL_OES_extended_matrix_palette 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_extended_matrix_palette.txt 3 | GL_OES_extended_matrix_palette 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_fbo_render_mipmap: -------------------------------------------------------------------------------- 1 | GL_OES_fbo_render_mipmap 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_fbo_render_mipmap.txt 3 | GL_OES_fbo_render_mipmap 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_fragment_precision_high: -------------------------------------------------------------------------------- 1 | GL_OES_fragment_precision_high 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_fragment_precision_high.txt 3 | GL_OES_fragment_precision_high 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_gpu_shader5: -------------------------------------------------------------------------------- 1 | GL_OES_gpu_shader5 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_gpu_shader5.txt 3 | GL_OES_gpu_shader5 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_point_sprite: -------------------------------------------------------------------------------- 1 | GL_OES_point_sprite 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_point_sprite.txt 3 | GL_OES_point_sprite 4 | 5 | GL_POINT_SPRITE_OES 0x8861 6 | GL_COORD_REPLACE_OES 0x8862 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_rgb8_rgba8: -------------------------------------------------------------------------------- 1 | GL_OES_rgb8_rgba8 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_rgb8_rgba8.txt 3 | GL_OES_rgb8_rgba8 4 | 5 | GL_RGB8_OES 0x8051 6 | GL_RGBA8_OES 0x8058 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_sample_variables: -------------------------------------------------------------------------------- 1 | GL_OES_sample_variables 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_sample_variables.txt 3 | GL_OES_sample_variables 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_shader_image_atomic: -------------------------------------------------------------------------------- 1 | GL_OES_shader_image_atomic 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_shader_image_atomic.txt 3 | GL_OES_shader_image_atomic 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_shader_io_blocks: -------------------------------------------------------------------------------- 1 | GL_OES_shader_io_blocks 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_shader_io_blocks.txt 3 | GL_OES_shader_io_blocks 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_stencil1: -------------------------------------------------------------------------------- 1 | GL_OES_stencil1 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_stencil1.txt 3 | GL_OES_stencil1 4 | 5 | GL_STENCIL_INDEX1_OES 0x8D46 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_stencil4: -------------------------------------------------------------------------------- 1 | GL_OES_stencil4 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_stencil4.txt 3 | GL_OES_stencil4 4 | 5 | GL_STENCIL_INDEX4_OES 0x8D47 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_stencil8: -------------------------------------------------------------------------------- 1 | GL_OES_stencil8 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_stencil8.txt 3 | GL_OES_stencil8 4 | 5 | GL_STENCIL_INDEX8_OES 0x8D48 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_surfaceless_context: -------------------------------------------------------------------------------- 1 | GL_OES_surfaceless_context 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_surfaceless_context.txt 3 | GL_OES_surfaceless_context 4 | 5 | GL_FRAMEBUFFER_UNDEFINED_OES 0x8219 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_texture_env_crossbar: -------------------------------------------------------------------------------- 1 | GL_OES_texture_env_crossbar 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_texture_env_crossbar.txt 3 | GL_OES_texture_env_crossbar 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_texture_mirrored_repeat: -------------------------------------------------------------------------------- 1 | GL_OES_texture_mirrored_repeat 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_texture_mirrored_repeat.txt 3 | GL_OES_texture_mirrored_repeat 4 | 5 | GL_MIRRORED_REPEAT 0x8370 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_texture_npot: -------------------------------------------------------------------------------- 1 | GL_OES_texture_npot 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_texture_npot.txt 3 | GL_OES_texture_npot 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_texture_stencil8: -------------------------------------------------------------------------------- 1 | GL_OES_texture_stencil8 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_texture_stencil8.txt 3 | GL_OES_texture_stencil8 4 | 5 | GL_STENCIL_INDEX 0x1901 6 | GL_STENCIL_INDEX8 0x8D48 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OES_vertex_half_float: -------------------------------------------------------------------------------- 1 | GL_OES_vertex_half_float 2 | https://www.khronos.org/registry/OpenGL/extensions/OES/OES_vertex_half_float.txt 3 | GL_OES_vertex_half_float 4 | 5 | GL_HALF_FLOAT_OES 0x8D61 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OML_interlace: -------------------------------------------------------------------------------- 1 | GL_OML_interlace 2 | https://www.khronos.org/registry/OpenGL/extensions/OML/OML_interlace.txt 3 | GL_OML_interlace 4 | 5 | GL_INTERLACE_OML 0x8980 6 | GL_INTERLACE_READ_OML 0x8981 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OML_subsample: -------------------------------------------------------------------------------- 1 | GL_OML_subsample 2 | https://www.khronos.org/registry/OpenGL/extensions/OML/OML_subsample.txt 3 | GL_OML_subsample 4 | 5 | GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982 6 | GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_OVR_multiview2: -------------------------------------------------------------------------------- 1 | GL_OVR_multiview2 2 | https://www.khronos.org/registry/OpenGL/extensions/OVR/OVR_multiview2.txt 3 | GL_OVR_multiview2 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_QCOM_shader_framebuffer_fetch_rate: -------------------------------------------------------------------------------- 1 | GL_QCOM_shader_framebuffer_fetch_rate 2 | https://www.khronos.org/registry/OpenGL/extensions/QCOM/QCOM_shader_framebuffer_fetch_rate.txt 3 | GL_QCOM_shader_framebuffer_fetch_rate 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_QCOM_writeonly_rendering: -------------------------------------------------------------------------------- 1 | GL_QCOM_writeonly_rendering 2 | https://www.khronos.org/registry/OpenGL/extensions/QCOM/QCOM_writeonly_rendering.txt 3 | GL_QCOM_writeonly_rendering 4 | 5 | GL_WRITEONLY_RENDERING_QCOM 0x8823 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_REGAL_error_string: -------------------------------------------------------------------------------- 1 | GL_REGAL_error_string 2 | https://www.khronos.org/registry/OpenGL/extensions/REGAL/error_string.txt 3 | GL_REGAL_error_string 4 | 5 | const GLchar* glErrorStringREGAL (GLenum error) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_REGAL_proc_address: -------------------------------------------------------------------------------- 1 | GL_REGAL_proc_address 2 | https://www.khronos.org/registry/OpenGL/extensions/REGAL/proc_address.txt 3 | GL_REGAL_proc_address 4 | 5 | void * glGetProcAddressREGAL (const GLchar *name) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIS_clip_band_hint: -------------------------------------------------------------------------------- 1 | GL_SGIS_clip_band_hint 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIS/SGIS_clip_band_hint.txt 3 | GL_SGIS_clip_band_hint 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIS_line_texgen: -------------------------------------------------------------------------------- 1 | GL_SGIS_line_texgen 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIS/SGIS_line_texgen.txt 3 | GL_SGIS_line_texgen 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIS_pixel_texture: -------------------------------------------------------------------------------- 1 | GL_SGIS_pixel_texture 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIS/SGIS_pixel_texture.txt 3 | GL_SGIS_pixel_texture 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIS_texture_border_clamp: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_border_clamp 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIS/SGIS_texture_border_clamp.txt 3 | GL_SGIS_texture_border_clamp 4 | 5 | GL_CLAMP_TO_BORDER_SGIS 0x812D 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIS_texture_edge_clamp: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_edge_clamp 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIS/SGIS_texture_edge_clamp.txt 3 | GL_SGIS_texture_edge_clamp 4 | 5 | GL_CLAMP_TO_EDGE_SGIS 0x812F 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIS_texture_select: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_select 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIS/SGIS_texture_select.txt 3 | GL_SGIS_texture_select 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_bali_timer_instruments: -------------------------------------------------------------------------------- 1 | GL_SGIX_bali_timer_instruments 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_bali_timer_instruments.txt 3 | GL_SGIX_bali_timer_instruments 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_blend_cadd: -------------------------------------------------------------------------------- 1 | GL_SGIX_blend_cadd 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_blend_cadd.txt 3 | GL_SGIX_blend_cadd 4 | 5 | GL_FUNC_COMPLEX_ADD_EXT 0x601C 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_blend_cmultiply: -------------------------------------------------------------------------------- 1 | GL_SGIX_blend_cmultiply 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_blend_cmultiply.txt 3 | GL_SGIX_blend_cmultiply 4 | 5 | GL_FUNC_COMPLEX_MULTIPLY_EXT 0x601B 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_calligraphic_fragment: -------------------------------------------------------------------------------- 1 | GL_SGIX_calligraphic_fragment 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_calligraphic_fragment.txt 3 | GL_SGIX_calligraphic_fragment 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_clipmap: -------------------------------------------------------------------------------- 1 | GL_SGIX_clipmap 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_clipmap.txt 3 | GL_SGIX_clipmap 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_color_matrix_accuracy: -------------------------------------------------------------------------------- 1 | GL_SGIX_color_matrix_accuracy 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_color_matrix_accuracy.txt 3 | GL_SGIX_color_matrix_accuracy 4 | 5 | GL_COLOR_MATRIX_HINT 0x8317 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_color_table_index_mode: -------------------------------------------------------------------------------- 1 | GL_SGIX_color_table_index_mode 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_color_table_index_mode.txt 3 | GL_SGIX_color_table_index_mode 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_complex_polar: -------------------------------------------------------------------------------- 1 | GL_SGIX_complex_polar 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_complex_polar.txt 3 | GL_SGIX_complex_polar 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_convolution_accuracy: -------------------------------------------------------------------------------- 1 | GL_SGIX_convolution_accuracy 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_convolution_accuracy.txt 3 | GL_SGIX_convolution_accuracy 4 | 5 | GL_CONVOLUTION_HINT_SGIX 0x8316 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_cylinder_texgen: -------------------------------------------------------------------------------- 1 | GL_SGIX_cylinder_texgen 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_cylinder_texgen.txt 3 | GL_SGIX_cylinder_texgen 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_decimation: -------------------------------------------------------------------------------- 1 | GL_SGIX_decimation 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_decimation.txt 3 | GL_SGIX_decimation 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_dvc: -------------------------------------------------------------------------------- 1 | GL_SGIX_dvc 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_dvc.txt 3 | GL_SGIX_dvc 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_flush_raster: -------------------------------------------------------------------------------- 1 | GL_SGIX_flush_raster 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_flush_raster.txt 3 | GL_SGIX_flush_raster 4 | 5 | void glFlushRasterSGIX (void) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_fog_blend: -------------------------------------------------------------------------------- 1 | GL_SGIX_fog_blend 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_fog_blend.txt 3 | GL_SGIX_fog_blend 4 | 5 | GL_FOG_BLEND_ALPHA_SGIX 0x81FE 6 | GL_FOG_BLEND_COLOR_SGIX 0x81FF 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_fog_factor_to_alpha: -------------------------------------------------------------------------------- 1 | GL_SGIX_fog_factor_to_alpha 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_fog_factor_to_alpha.txt 3 | GL_SGIX_fog_factor_to_alpha 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_fog_offset: -------------------------------------------------------------------------------- 1 | GL_SGIX_fog_offset 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_fog_offset.txt 3 | GL_SGIX_fog_offset 4 | 5 | GL_FOG_OFFSET_SGIX 0x8198 6 | GL_FOG_OFFSET_VALUE_SGIX 0x8199 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_fog_patchy: -------------------------------------------------------------------------------- 1 | GL_SGIX_fog_patchy 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_fog_patchy.txt 3 | GL_SGIX_fog_patchy 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_fog_scale: -------------------------------------------------------------------------------- 1 | GL_SGIX_fog_scale 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_fog_scale.txt 3 | GL_SGIX_fog_scale 4 | 5 | GL_FOG_SCALE_SGIX 0x81FC 6 | GL_FOG_SCALE_VALUE_SGIX 0x81FD 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_fog_texture: -------------------------------------------------------------------------------- 1 | GL_SGIX_fog_texture 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_fog_texture.txt 3 | GL_SGIX_fog_texture 4 | 5 | void glTextureFogSGIX (GLenum pname) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_framezoom: -------------------------------------------------------------------------------- 1 | GL_SGIX_framezoom 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_framezoom.txt 3 | GL_SGIX_framezoom 4 | 5 | void glFrameZoomSGIX (GLint factor) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_image_compression: -------------------------------------------------------------------------------- 1 | GL_SGIX_image_compression 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_image_compression.txt 3 | GL_SGIX_image_compression 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_impact_pixel_texture: -------------------------------------------------------------------------------- 1 | GL_SGIX_impact_pixel_texture 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_impact_pixel_texture.txt 3 | GL_SGIX_impact_pixel_texture 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_instrument_error: -------------------------------------------------------------------------------- 1 | GL_SGIX_instrument_error 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_instrument_error.txt 3 | GL_SGIX_instrument_error 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_interlace: -------------------------------------------------------------------------------- 1 | GL_SGIX_interlace 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_interlace.txt 3 | GL_SGIX_interlace 4 | 5 | GL_INTERLACE_SGIX 0x8094 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_ir_instrument1: -------------------------------------------------------------------------------- 1 | GL_SGIX_ir_instrument1 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_ir_instrument1.txt 3 | GL_SGIX_ir_instrument1 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_line_quality_hint: -------------------------------------------------------------------------------- 1 | GL_SGIX_line_quality_hint 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_line_quality_hint.txt 3 | GL_SGIX_line_quality_hint 4 | 5 | GL_LINE_QUALITY_HINT_SGIX 0x835B 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_list_priority: -------------------------------------------------------------------------------- 1 | GL_SGIX_list_priority 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_list_priority.txt 3 | GL_SGIX_list_priority 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_mpeg2: -------------------------------------------------------------------------------- 1 | GL_SGIX_mpeg2 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_mpeg2.txt 3 | GL_SGIX_mpeg2 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_packed_6bytes: -------------------------------------------------------------------------------- 1 | GL_SGIX_packed_6bytes 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_packed_6bytes.txt 3 | GL_SGIX_packed_6bytes 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_pixel_texture: -------------------------------------------------------------------------------- 1 | GL_SGIX_pixel_texture 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_pixel_texture.txt 3 | GL_SGIX_pixel_texture 4 | 5 | void glPixelTexGenSGIX (GLenum mode) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_pixel_texture_bits: -------------------------------------------------------------------------------- 1 | GL_SGIX_pixel_texture_bits 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_pixel_texture_bits.txt 3 | GL_SGIX_pixel_texture_bits 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_pixel_texture_lod: -------------------------------------------------------------------------------- 1 | GL_SGIX_pixel_texture_lod 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_pixel_texture_lod.txt 3 | GL_SGIX_pixel_texture_lod 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_pixel_tiles: -------------------------------------------------------------------------------- 1 | GL_SGIX_pixel_tiles 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_pixel_tiles.txt 3 | GL_SGIX_pixel_tiles 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_reference_plane: -------------------------------------------------------------------------------- 1 | GL_SGIX_reference_plane 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_reference_plane.txt 3 | GL_SGIX_reference_plane 4 | 5 | void glReferencePlaneSGIX (const GLdouble* equation) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_scalebias_hint: -------------------------------------------------------------------------------- 1 | GL_SGIX_scalebias_hint 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_scalebias_hint.txt 3 | GL_SGIX_scalebias_hint 4 | 5 | GL_SCALEBIAS_HINT_SGIX 0x8322 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_shadow_ambient: -------------------------------------------------------------------------------- 1 | GL_SGIX_shadow_ambient 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_shadow_ambient.txt 3 | GL_SGIX_shadow_ambient 4 | 5 | GL_SHADOW_AMBIENT_SGIX 0x80BF 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_spotlight_cutoff: -------------------------------------------------------------------------------- 1 | GL_SGIX_spotlight_cutoff 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_spotlight_cutoff.txt 3 | GL_SGIX_spotlight_cutoff 4 | 5 | GL_SPOT_CUTOFF_DELTA_SGIX 0x8193 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_subdiv_patch: -------------------------------------------------------------------------------- 1 | GL_SGIX_subdiv_patch 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_subdiv_patch.txt 3 | GL_SGIX_subdiv_patch 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_tag_sample_buffer: -------------------------------------------------------------------------------- 1 | GL_SGIX_tag_sample_buffer 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_tag_sample_buffer.txt 3 | GL_SGIX_tag_sample_buffer 4 | 5 | void glTagSampleBufferSGIX (void) 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_texture_add_env: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_add_env 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_texture_add_env.txt 3 | GL_SGIX_texture_add_env 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_texture_lod_bias: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_lod_bias 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_texture_lod_bias.txt 3 | GL_SGIX_texture_lod_bias 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_texture_phase: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_phase 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_texture_phase.txt 3 | GL_SGIX_texture_phase 4 | 5 | GL_PHASE_SGIX 0x832A 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_texture_supersample: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_supersample 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_texture_supersample.txt 3 | GL_SGIX_texture_supersample 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_ycrcb: -------------------------------------------------------------------------------- 1 | GL_SGIX_ycrcb 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_ycrcb.txt 3 | GL_SGIX_ycrcb 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_ycrcb_subsample: -------------------------------------------------------------------------------- 1 | GL_SGIX_ycrcb_subsample 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_ycrcb_subsample.txt 3 | GL_SGIX_ycrcb_subsample 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGIX_ycrcba: -------------------------------------------------------------------------------- 1 | GL_SGIX_ycrcba 2 | https://www.khronos.org/registry/OpenGL/extensions/SGIX/SGIX_ycrcba.txt 3 | GL_SGIX_ycrcba 4 | 5 | GL_YCRCB_SGIX 0x8318 6 | GL_YCRCBA_SGIX 0x8319 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SGI_complex: -------------------------------------------------------------------------------- 1 | GL_SGI_complex 2 | https://www.khronos.org/registry/OpenGL/extensions/SGI/SGI_complex.txt 3 | GL_SGI_complex 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SUN_mesh_array: -------------------------------------------------------------------------------- 1 | GL_SUN_mesh_array 2 | https://www.khronos.org/registry/OpenGL/extensions/SUN/SUN_mesh_array.txt 3 | GL_SUN_mesh_array 4 | 5 | GL_QUAD_MESH_SUN 0x8614 6 | GL_TRIANGLE_MESH_SUN 0x8615 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_SUN_slice_accum: -------------------------------------------------------------------------------- 1 | GL_SUN_slice_accum 2 | https://www.khronos.org/registry/OpenGL/extensions/SUN/SUN_slice_accum.txt 3 | GL_SUN_slice_accum 4 | 5 | GL_SLICE_ACCUM_SUN 0x85CC 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_VIV_shader_binary: -------------------------------------------------------------------------------- 1 | GL_VIV_shader_binary 2 | https://www.khronos.org/registry/OpenGL/extensions/VIV/VIV_shader_binary.txt 3 | GL_VIV_shader_binary 4 | 5 | GL_SHADER_BINARY_VIV 0x8FC4 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_WIN_phong_shading: -------------------------------------------------------------------------------- 1 | GL_WIN_phong_shading 2 | https://www.khronos.org/registry/OpenGL/extensions/WIN/WIN_phong_shading.txt 3 | GL_WIN_phong_shading 4 | 5 | GL_PHONG_WIN 0x80EA 6 | GL_PHONG_HINT_WIN 0x80EB 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_WIN_scene_markerXXX: -------------------------------------------------------------------------------- 1 | GL_WIN_scene_markerXXX 2 | https://www.khronos.org/registry/OpenGL/extensions/WIN/WIN_scene_markerXXX.txt 3 | GL_WIN_scene_markerXXX 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/GL_WIN_specular_fog: -------------------------------------------------------------------------------- 1 | GL_WIN_specular_fog 2 | https://www.khronos.org/registry/OpenGL/extensions/WIN/WIN_specular_fog.txt 3 | GL_WIN_specular_fog 4 | 5 | GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_3DFX_multisample: -------------------------------------------------------------------------------- 1 | WGL_3DFX_multisample 2 | https://www.khronos.org/registry/OpenGL/extensions/3DFX/3DFX_multisample.txt 3 | WGL_3DFX_multisample 4 | 5 | WGL_SAMPLE_BUFFERS_3DFX 0x2060 6 | WGL_SAMPLES_3DFX 0x2061 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_ARB_context_flush_control: -------------------------------------------------------------------------------- 1 | WGL_ARB_context_flush_control 2 | https://www.khronos.org/registry/OpenGL/extensions/KHR/KHR_context_flush_control.txt 3 | WGL_ARB_context_flush_control 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_ARB_create_context_no_error: -------------------------------------------------------------------------------- 1 | WGL_ARB_create_context_no_error 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_create_context_no_error.txt 3 | WGL_ARB_create_context_no_error 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_ARB_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | WGL_ARB_framebuffer_sRGB 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_framebuffer_sRGB.txt 3 | WGL_ARB_framebuffer_sRGB 4 | 5 | WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20A9 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_ARB_multisample: -------------------------------------------------------------------------------- 1 | WGL_ARB_multisample 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_multisample.txt 3 | WGL_ARB_multisample 4 | 5 | WGL_SAMPLE_BUFFERS_ARB 0x2041 6 | WGL_SAMPLES_ARB 0x2042 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_ARB_pixel_format_float: -------------------------------------------------------------------------------- 1 | WGL_ARB_pixel_format_float 2 | https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_color_buffer_float.txt 3 | WGL_ARB_pixel_format_float 4 | 5 | WGL_TYPE_RGBA_FLOAT_ARB 0x21A0 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_ATI_render_texture_rectangle: -------------------------------------------------------------------------------- 1 | WGL_ATI_render_texture_rectangle 2 | 3 | WGL_ATI_render_texture_rectangle 4 | 5 | WGL_TEXTURE_RECTANGLE_ATI 0x21A5 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_EXT_depth_float: -------------------------------------------------------------------------------- 1 | WGL_EXT_depth_float 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/WGL_EXT_depth_float.txt 3 | WGL_EXT_depth_float 4 | 5 | WGL_DEPTH_FLOAT_EXT 0x2040 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_EXT_extensions_string: -------------------------------------------------------------------------------- 1 | WGL_EXT_extensions_string 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/WGL_EXT_extensions_string.txt 3 | WGL_EXT_extensions_string 4 | 5 | const char* wglGetExtensionsStringEXT (void) 6 | -------------------------------------------------------------------------------- /libs/glew/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 | 5 | WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20A9 6 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_EXT_multisample: -------------------------------------------------------------------------------- 1 | WGL_EXT_multisample 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/WGL_EXT_multisample.txt 3 | WGL_EXT_multisample 4 | 5 | WGL_SAMPLE_BUFFERS_EXT 0x2041 6 | WGL_SAMPLES_EXT 0x2042 7 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_EXT_swap_control_tear: -------------------------------------------------------------------------------- 1 | WGL_EXT_swap_control_tear 2 | https://www.khronos.org/registry/OpenGL/extensions/EXT/WGL_EXT_swap_control_tear.txt 3 | WGL_EXT_swap_control_tear 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/extensions/gl/WGL_NV_DX_interop2: -------------------------------------------------------------------------------- 1 | WGL_NV_DX_interop2 2 | https://www.khronos.org/registry/OpenGL/extensions/NV/WGL_NV_DX_interop2.txt 3 | WGL_NV_DX_interop2 4 | 5 | -------------------------------------------------------------------------------- /libs/glew/auto/src/eglew_mid.h: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------------------------------------- */ 2 | 3 | #define EGLEW_FUN_EXPORT GLEW_FUN_EXPORT 4 | #define EGLEW_VAR_EXPORT GLEW_VAR_EXPORT 5 | -------------------------------------------------------------------------------- /libs/glew/auto/src/footer.html: -------------------------------------------------------------------------------- 1 | 2 |