├── GPUtoGPU_DX11 ├── GPUtoGPU_DX11.sln ├── GPUtoGPU_DX11.suo ├── GPUtoGPU_DX11.v11.suo ├── directGMA_DX11 │ ├── DXSinkWindow.cpp │ ├── DXSinkWindow.h │ ├── DXSourceWindow.cpp │ ├── DXSourceWindow.h │ ├── DXcopyApp.cpp │ ├── DXcopyApp.h │ ├── DXwindow.cpp │ ├── DXwindow.h │ ├── directGMA_DX11.vcxproj │ ├── directGMA_DX11.vcxproj.filters │ ├── directGMA_DX11.vcxproj.user │ └── main.cpp └── resources │ ├── DrawCube.hlsl │ └── amdlogo.dds ├── GPUtoGPU_OpenCL ├── GPUtoGPU_OpenCL.sln ├── GPUtoGPU_OpenCL.suo └── GPUtoGPU_OpenCL │ ├── CLCopyApp.cpp │ ├── CLCopyApp.h │ ├── CLSink.cpp │ ├── CLSink.h │ ├── CLSource.cpp │ ├── CLSource.h │ ├── CLTransferBuffer.cpp │ ├── CLTransferBuffer.h │ ├── GPUtoGPU_OpenCL.vcxproj │ ├── GPUtoGPU_OpenCL.vcxproj.filters │ ├── GPUtoGPU_OpenCL.vcxproj.user │ ├── LnxMain.cpp │ ├── Makefile │ ├── WinMain.cpp │ └── defines.h ├── GPUtoGPU_OpenGL ├── GPUtoGPU_OpenGL.sln ├── GPUtoGPU_OpenGL.suo ├── GPUtoGPU_OpenGL │ ├── FireCube.cpp │ ├── FireCube.h │ ├── GLCopyApp.cpp │ ├── GLCopyApp.h │ ├── GLSink.cpp │ ├── GLSink.h │ ├── GLSource.cpp │ ├── GLSource.h │ ├── GLTransferBuffers.cpp │ ├── GLTransferBuffers.h │ ├── GPUtoGPU_OpenGL.vcxproj │ ├── GPUtoGPU_OpenGL.vcxproj.filters │ ├── GPUtoGPU_OpenGL.vcxproj.user │ ├── LnxMain.cpp │ ├── Makefile │ ├── defines.h │ ├── main.cpp │ ├── rgbimage.cpp │ └── rgbimage.h └── resources │ └── AMD_FirePro.rgb ├── LICENSE.txt ├── README.md ├── common ├── ADLtool.cpp ├── ADLtool.h ├── AmdDxExt.hpp ├── AmdDxExtApi.hpp ├── AmdDxExtIface.hpp ├── AmdDxExtSDI.hpp ├── AmdDxExtSDIApi.hpp ├── BufferQueue.cpp ├── BufferQueue.h ├── FormatInfo.cpp ├── FormatInfo.h ├── GLWindow.cpp ├── GLWindow.h ├── RenderTarget.cpp ├── RenderTarget.h ├── Thread.cpp ├── Thread.h ├── adl_prototypes.h └── os_include.h └── external ├── ADL ├── adl_defines.h ├── adl_sdk.h └── adl_structures.h └── glew-1.9.0 ├── LICENSE.txt ├── Makefile ├── README.txt ├── TODO.txt ├── auto ├── Makefile ├── bin │ ├── make.pl │ ├── make_def_fun.pl │ ├── make_def_var.pl │ ├── make_header.pl │ ├── make_html.pl │ ├── make_info.pl │ ├── make_info_list.pl │ ├── make_init.pl │ ├── make_list.pl │ ├── make_str.pl │ ├── make_struct_fun.pl │ ├── make_struct_var.pl │ ├── parse_spec.pl │ ├── update_ext.sh │ └── update_registry.sh ├── blacklist ├── core │ ├── GLX_AMD_gpu_association │ ├── GLX_ARB_get_proc_address │ ├── GLX_ATI_pixel_format_float │ ├── GLX_ATI_render_texture │ ├── GLX_EXT_create_context_es2_profile │ ├── GLX_EXT_create_context_es_profile │ ├── GLX_EXT_fbconfig_packed_float │ ├── GLX_EXT_framebuffer_sRGB │ ├── GLX_MESA_swap_control │ ├── GLX_NV_float_buffer │ ├── GLX_NV_vertex_array_range │ ├── GLX_SGIS_shared_multisample │ ├── GLX_SGIX_hyperpipe │ ├── GLX_SGIX_swap_barrier │ ├── GLX_SGIX_swap_group │ ├── GLX_SGI_video_sync │ ├── GLX_SUN_video_resize │ ├── GLX_VERSION_1_2 │ ├── GLX_VERSION_1_3 │ ├── GLX_VERSION_1_4 │ ├── GL_APPLE_float_pixels │ ├── GL_APPLE_pixel_buffer │ ├── GL_APPLE_texture_range │ ├── GL_ARB_draw_instanced │ ├── GL_ARB_imaging │ ├── GL_ARB_instanced_arrays │ ├── GL_ARB_internalformat_query2 │ ├── GL_ARB_matrix_palette │ ├── GL_ARB_multitexture │ ├── GL_ARB_robustness │ ├── GL_ARB_separate_shader_objects │ ├── GL_ARB_vertex_attrib_64bit │ ├── GL_ARB_vertex_blend │ ├── GL_ATIX_point_sprites │ ├── GL_ATIX_texture_env_combine3 │ ├── GL_ATIX_texture_env_route │ ├── GL_ATIX_vertex_shader_output_point_size │ ├── GL_ATI_envmap_bumpmap │ ├── GL_ATI_map_object_buffer │ ├── GL_ATI_pn_triangles │ ├── GL_ATI_separate_stencil │ ├── GL_ATI_shader_texture_lod │ ├── GL_ATI_texture_compression_3dc │ ├── GL_ATI_vertex_streams │ ├── GL_EXT_Cg_shader │ ├── GL_EXT_bindable_uniform │ ├── GL_EXT_debug_marker │ ├── GL_EXT_depth_bounds_test │ ├── GL_EXT_draw_instanced │ ├── GL_EXT_draw_range_elements │ ├── GL_EXT_fog_coord │ ├── GL_EXT_framebuffer_sRGB │ ├── GL_EXT_geometry_shader4 │ ├── GL_EXT_gpu_program_parameters │ ├── GL_EXT_gpu_shader4 │ ├── GL_EXT_packed_float │ ├── GL_EXT_pixel_buffer_object │ ├── GL_EXT_secondary_color │ ├── GL_EXT_texture_array │ ├── GL_EXT_texture_buffer_object │ ├── GL_EXT_texture_compression_latc │ ├── GL_EXT_texture_compression_rgtc │ ├── GL_EXT_texture_cube_map │ ├── GL_EXT_texture_edge_clamp │ ├── GL_EXT_texture_integer │ ├── GL_EXT_texture_rectangle │ ├── GL_EXT_texture_shared_exponent │ ├── GL_EXT_timer_query │ ├── GL_EXT_vertex_shader │ ├── GL_KTX_buffer_region │ ├── GL_NVX_gpu_memory_info │ ├── GL_NV_depth_buffer_float │ ├── GL_NV_depth_range_unclamped │ ├── GL_NV_fragment_program2 │ ├── GL_NV_fragment_program4 │ ├── GL_NV_fragment_program_option │ ├── GL_NV_framebuffer_multisample_coverage │ ├── GL_NV_geometry_program4 │ ├── GL_NV_geometry_shader4 │ ├── GL_NV_gpu_program4 │ ├── GL_NV_gpu_program5 │ ├── GL_NV_parameter_buffer_object │ ├── GL_NV_path_rendering │ ├── 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_REGAL_error_string │ ├── GL_REGAL_extension_query │ ├── GL_REGAL_log │ ├── 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_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 │ ├── .dummy │ ├── GLX_3DFX_multisample │ ├── GLX_AMD_gpu_association │ ├── GLX_ARB_create_context │ ├── GLX_ARB_create_context_profile │ ├── GLX_ARB_create_context_robustness │ ├── GLX_ARB_fbconfig_float │ ├── GLX_ARB_framebuffer_sRGB │ ├── GLX_ARB_get_proc_address │ ├── GLX_ARB_multisample │ ├── GLX_ARB_robustness_application_isolation │ ├── GLX_ARB_robustness_share_group_isolation │ ├── GLX_ARB_vertex_buffer_object │ ├── GLX_ATI_pixel_format_float │ ├── GLX_ATI_render_texture │ ├── GLX_EXT_create_context_es2_profile │ ├── GLX_EXT_create_context_es_profile │ ├── GLX_EXT_fbconfig_packed_float │ ├── GLX_EXT_framebuffer_sRGB │ ├── GLX_EXT_import_context │ ├── GLX_EXT_scene_marker │ ├── GLX_EXT_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_release_buffers │ ├── GLX_MESA_set_3dfx_mode │ ├── GLX_MESA_swap_control │ ├── GLX_NV_copy_image │ ├── GLX_NV_float_buffer │ ├── GLX_NV_multisample_coverage │ ├── GLX_NV_present_video │ ├── GLX_NV_swap_group │ ├── GLX_NV_vertex_array_range │ ├── GLX_NV_video_capture │ ├── GLX_NV_video_out │ ├── GLX_OML_swap_method │ ├── GLX_OML_sync_control │ ├── GLX_SGIS_blended_overlay │ ├── GLX_SGIS_color_range │ ├── GLX_SGIS_multisample │ ├── GLX_SGIS_shared_multisample │ ├── GLX_SGIX_fbconfig │ ├── GLX_SGIX_hyperpipe │ ├── GLX_SGIX_pbuffer │ ├── GLX_SGIX_swap_barrier │ ├── GLX_SGIX_swap_group │ ├── GLX_SGIX_video_resize │ ├── GLX_SGIX_visual_select_group │ ├── GLX_SGI_cushion │ ├── GLX_SGI_make_current_read │ ├── GLX_SGI_swap_control │ ├── GLX_SGI_video_sync │ ├── GLX_SUN_get_transparent_index │ ├── GLX_SUN_video_resize │ ├── GL_3DFX_multisample │ ├── GL_3DFX_tbuffer │ ├── GL_3DFX_texture_compression_FXT1 │ ├── GL_AMD_blend_minmax_factor │ ├── GL_AMD_conservative_depth │ ├── GL_AMD_debug_output │ ├── GL_AMD_depth_clamp_separate │ ├── GL_AMD_draw_buffers_blend │ ├── GL_AMD_multi_draw_indirect │ ├── GL_AMD_name_gen_delete │ ├── GL_AMD_performance_monitor │ ├── GL_AMD_pinned_memory │ ├── GL_AMD_query_buffer_object │ ├── GL_AMD_sample_positions │ ├── GL_AMD_seamless_cubemap_per_texture │ ├── GL_AMD_shader_stencil_export │ ├── GL_AMD_stencil_operation_extended │ ├── GL_AMD_texture_texture4 │ ├── GL_AMD_transform_feedback3_lines_triangles │ ├── GL_AMD_vertex_shader_layer │ ├── GL_AMD_vertex_shader_tessellator │ ├── GL_AMD_vertex_shader_viewport_index │ ├── GL_APPLE_aux_depth_stencil │ ├── GL_APPLE_client_storage │ ├── GL_APPLE_element_array │ ├── GL_APPLE_fence │ ├── GL_APPLE_float_pixels │ ├── GL_APPLE_flush_buffer_range │ ├── GL_APPLE_object_purgeable │ ├── GL_APPLE_pixel_buffer │ ├── GL_APPLE_rgb_422 │ ├── GL_APPLE_row_bytes │ ├── GL_APPLE_specular_vector │ ├── GL_APPLE_texture_range │ ├── GL_APPLE_transform_hint │ ├── GL_APPLE_vertex_array_object │ ├── GL_APPLE_vertex_array_range │ ├── GL_APPLE_vertex_program_evaluators │ ├── GL_APPLE_ycbcr_422 │ ├── GL_ARB_ES2_compatibility │ ├── GL_ARB_ES3_compatibility │ ├── GL_ARB_arrays_of_arrays │ ├── GL_ARB_base_instance │ ├── GL_ARB_blend_func_extended │ ├── GL_ARB_cl_event │ ├── GL_ARB_clear_buffer_object │ ├── GL_ARB_color_buffer_float │ ├── GL_ARB_compatibility │ ├── GL_ARB_compressed_texture_pixel_storage │ ├── GL_ARB_compute_shader │ ├── GL_ARB_conservative_depth │ ├── GL_ARB_copy_buffer │ ├── GL_ARB_copy_image │ ├── GL_ARB_debug_output │ ├── GL_ARB_depth_buffer_float │ ├── GL_ARB_depth_clamp │ ├── GL_ARB_depth_texture │ ├── 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_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_framebuffer_no_attachments │ ├── GL_ARB_framebuffer_object │ ├── GL_ARB_framebuffer_sRGB │ ├── GL_ARB_geometry_shader4 │ ├── GL_ARB_get_program_binary │ ├── GL_ARB_gpu_shader5 │ ├── GL_ARB_gpu_shader_fp64 │ ├── GL_ARB_half_float_pixel │ ├── GL_ARB_half_float_vertex │ ├── GL_ARB_imaging │ ├── 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_draw_indirect │ ├── GL_ARB_multisample │ ├── GL_ARB_multitexture │ ├── GL_ARB_occlusion_query │ ├── GL_ARB_occlusion_query2 │ ├── GL_ARB_pixel_buffer_object │ ├── GL_ARB_point_parameters │ ├── GL_ARB_point_sprite │ ├── GL_ARB_program_interface_query │ ├── GL_ARB_provoking_vertex │ ├── GL_ARB_robust_buffer_access_behavior │ ├── GL_ARB_robustness │ ├── GL_ARB_robustness_application_isolation │ ├── GL_ARB_robustness_share_group_isolation │ ├── GL_ARB_sample_shading │ ├── GL_ARB_sampler_objects │ ├── GL_ARB_seamless_cube_map │ ├── GL_ARB_separate_shader_objects │ ├── GL_ARB_shader_atomic_counters │ ├── GL_ARB_shader_bit_encoding │ ├── 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_lod │ ├── 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_stencil_texturing │ ├── GL_ARB_sync │ ├── GL_ARB_tessellation_shader │ ├── 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_float │ ├── GL_ARB_texture_gather │ ├── 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_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_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_2_10_10_10_rev │ ├── GL_ARB_viewport_array │ ├── GL_ARB_window_pos │ ├── GL_ATIX_point_sprites │ ├── GL_ATIX_texture_env_combine3 │ ├── GL_ATIX_texture_env_route │ ├── GL_ATIX_vertex_shader_output_point_size │ ├── GL_ATI_draw_buffers │ ├── GL_ATI_element_array │ ├── GL_ATI_envmap_bumpmap │ ├── GL_ATI_fragment_shader │ ├── GL_ATI_map_object_buffer │ ├── GL_ATI_meminfo │ ├── GL_ATI_pn_triangles │ ├── GL_ATI_separate_stencil │ ├── GL_ATI_shader_texture_lod │ ├── GL_ATI_text_fragment_shader │ ├── GL_ATI_texture_compression_3dc │ ├── GL_ATI_texture_env_combine3 │ ├── GL_ATI_texture_float │ ├── GL_ATI_texture_mirror_once │ ├── GL_ATI_vertex_array_object │ ├── GL_ATI_vertex_attrib_array_object │ ├── GL_ATI_vertex_streams │ ├── GL_EXT_422_pixels │ ├── GL_EXT_Cg_shader │ ├── GL_EXT_abgr │ ├── GL_EXT_bgra │ ├── GL_EXT_bindable_uniform │ ├── GL_EXT_blend_color │ ├── GL_EXT_blend_equation_separate │ ├── GL_EXT_blend_func_separate │ ├── GL_EXT_blend_logic_op │ ├── GL_EXT_blend_minmax │ ├── GL_EXT_blend_subtract │ ├── GL_EXT_clip_volume_hint │ ├── GL_EXT_cmyka │ ├── GL_EXT_color_subtable │ ├── GL_EXT_compiled_vertex_array │ ├── GL_EXT_convolution │ ├── GL_EXT_coordinate_frame │ ├── GL_EXT_copy_texture │ ├── GL_EXT_cull_vertex │ ├── GL_EXT_debug_marker │ ├── GL_EXT_depth_bounds_test │ ├── GL_EXT_direct_state_access │ ├── GL_EXT_draw_buffers2 │ ├── GL_EXT_draw_instanced │ ├── GL_EXT_draw_range_elements │ ├── GL_EXT_fog_coord │ ├── GL_EXT_fragment_lighting │ ├── GL_EXT_framebuffer_blit │ ├── GL_EXT_framebuffer_multisample │ ├── GL_EXT_framebuffer_multisample_blit_scaled │ ├── GL_EXT_framebuffer_object │ ├── GL_EXT_framebuffer_sRGB │ ├── GL_EXT_geometry_shader4 │ ├── GL_EXT_gpu_program_parameters │ ├── GL_EXT_gpu_shader4 │ ├── GL_EXT_histogram │ ├── GL_EXT_index_array_formats │ ├── GL_EXT_index_func │ ├── GL_EXT_index_material │ ├── GL_EXT_index_texture │ ├── GL_EXT_light_texture │ ├── GL_EXT_misc_attribute │ ├── GL_EXT_multi_draw_arrays │ ├── GL_EXT_multisample │ ├── GL_EXT_packed_depth_stencil │ ├── GL_EXT_packed_float │ ├── GL_EXT_packed_pixels │ ├── GL_EXT_paletted_texture │ ├── GL_EXT_pixel_buffer_object │ ├── GL_EXT_pixel_transform │ ├── GL_EXT_pixel_transform_color_table │ ├── GL_EXT_point_parameters │ ├── GL_EXT_polygon_offset │ ├── GL_EXT_provoking_vertex │ ├── GL_EXT_rescale_normal │ ├── GL_EXT_scene_marker │ ├── GL_EXT_secondary_color │ ├── GL_EXT_separate_shader_objects │ ├── GL_EXT_separate_specular_color │ ├── GL_EXT_shader_image_load_store │ ├── GL_EXT_shadow_funcs │ ├── GL_EXT_shared_texture_palette │ ├── GL_EXT_stencil_clear_tag │ ├── GL_EXT_stencil_two_side │ ├── GL_EXT_stencil_wrap │ ├── GL_EXT_subtexture │ ├── GL_EXT_texture │ ├── GL_EXT_texture3D │ ├── GL_EXT_texture_array │ ├── GL_EXT_texture_buffer_object │ ├── GL_EXT_texture_compression_dxt1 │ ├── GL_EXT_texture_compression_latc │ ├── GL_EXT_texture_compression_rgtc │ ├── GL_EXT_texture_compression_s3tc │ ├── GL_EXT_texture_cube_map │ ├── GL_EXT_texture_edge_clamp │ ├── GL_EXT_texture_env │ ├── GL_EXT_texture_env_add │ ├── GL_EXT_texture_env_combine │ ├── GL_EXT_texture_env_dot3 │ ├── GL_EXT_texture_filter_anisotropic │ ├── GL_EXT_texture_integer │ ├── GL_EXT_texture_lod_bias │ ├── GL_EXT_texture_mirror_clamp │ ├── GL_EXT_texture_object │ ├── GL_EXT_texture_perturb_normal │ ├── GL_EXT_texture_rectangle │ ├── GL_EXT_texture_sRGB │ ├── GL_EXT_texture_sRGB_decode │ ├── GL_EXT_texture_shared_exponent │ ├── GL_EXT_texture_snorm │ ├── GL_EXT_texture_swizzle │ ├── GL_EXT_timer_query │ ├── GL_EXT_transform_feedback │ ├── GL_EXT_vertex_array │ ├── GL_EXT_vertex_array_bgra │ ├── GL_EXT_vertex_attrib_64bit │ ├── GL_EXT_vertex_shader │ ├── GL_EXT_vertex_weighting │ ├── GL_EXT_x11_sync_object │ ├── GL_GREMEDY_frame_terminator │ ├── GL_GREMEDY_string_marker │ ├── GL_HP_convolution_border_modes │ ├── GL_HP_image_transform │ ├── GL_HP_occlusion_test │ ├── GL_HP_texture_lighting │ ├── GL_IBM_cull_vertex │ ├── GL_IBM_multimode_draw_arrays │ ├── GL_IBM_rasterpos_clip │ ├── GL_IBM_static_data │ ├── GL_IBM_texture_mirrored_repeat │ ├── GL_IBM_vertex_array_lists │ ├── GL_INGR_color_clamp │ ├── GL_INGR_interlace_read │ ├── GL_INTEL_parallel_arrays │ ├── GL_INTEL_texture_scissor │ ├── GL_KHR_debug │ ├── GL_KHR_texture_compression_astc_ldr │ ├── GL_KTX_buffer_region │ ├── GL_MESAX_texture_stack │ ├── GL_MESA_pack_invert │ ├── GL_MESA_resize_buffers │ ├── GL_MESA_window_pos │ ├── GL_MESA_ycbcr_texture │ ├── GL_NVX_gpu_memory_info │ ├── GL_NV_bindless_texture │ ├── GL_NV_blend_square │ ├── GL_NV_conditional_render │ ├── GL_NV_copy_depth_to_color │ ├── GL_NV_copy_image │ ├── GL_NV_depth_buffer_float │ ├── GL_NV_depth_clamp │ ├── GL_NV_depth_range_unclamped │ ├── GL_NV_evaluators │ ├── GL_NV_explicit_multisample │ ├── GL_NV_fence │ ├── GL_NV_float_buffer │ ├── GL_NV_fog_distance │ ├── GL_NV_fragment_program │ ├── 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_gpu_program_fp64 │ ├── GL_NV_gpu_shader5 │ ├── GL_NV_half_float │ ├── GL_NV_light_max_exponent │ ├── GL_NV_multisample_coverage │ ├── GL_NV_multisample_filter_hint │ ├── GL_NV_occlusion_query │ ├── GL_NV_packed_depth_stencil │ ├── GL_NV_parameter_buffer_object │ ├── GL_NV_parameter_buffer_object2 │ ├── GL_NV_path_rendering │ ├── GL_NV_pixel_data_range │ ├── GL_NV_point_sprite │ ├── GL_NV_present_video │ ├── GL_NV_primitive_restart │ ├── GL_NV_register_combiners │ ├── GL_NV_register_combiners2 │ ├── GL_NV_shader_atomic_float │ ├── GL_NV_shader_buffer_load │ ├── GL_NV_tessellation_program5 │ ├── GL_NV_texgen_emboss │ ├── GL_NV_texgen_reflection │ ├── GL_NV_texture_barrier │ ├── GL_NV_texture_compression_vtc │ ├── GL_NV_texture_env_combine4 │ ├── GL_NV_texture_expand_normal │ ├── GL_NV_texture_multisample │ ├── GL_NV_texture_rectangle │ ├── GL_NV_texture_shader │ ├── GL_NV_texture_shader2 │ ├── GL_NV_texture_shader3 │ ├── GL_NV_transform_feedback │ ├── GL_NV_transform_feedback2 │ ├── GL_NV_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_OES_byte_coordinates │ ├── GL_OES_compressed_paletted_texture │ ├── GL_OES_read_format │ ├── GL_OES_single_precision │ ├── GL_OML_interlace │ ├── GL_OML_resample │ ├── GL_OML_subsample │ ├── GL_PGI_misc_hints │ ├── GL_PGI_vertex_hints │ ├── GL_REGAL_error_string │ ├── GL_REGAL_extension_query │ ├── GL_REGAL_log │ ├── GL_REND_screen_coordinates │ ├── GL_S3_s3tc │ ├── GL_SGIS_color_range │ ├── GL_SGIS_detail_texture │ ├── GL_SGIS_fog_function │ ├── GL_SGIS_generate_mipmap │ ├── GL_SGIS_multisample │ ├── GL_SGIS_pixel_texture │ ├── GL_SGIS_point_line_texgen │ ├── GL_SGIS_sharpen_texture │ ├── GL_SGIS_texture4D │ ├── GL_SGIS_texture_border_clamp │ ├── GL_SGIS_texture_edge_clamp │ ├── GL_SGIS_texture_filter4 │ ├── GL_SGIS_texture_lod │ ├── GL_SGIS_texture_select │ ├── GL_SGIX_async │ ├── GL_SGIX_async_histogram │ ├── GL_SGIX_async_pixel │ ├── GL_SGIX_blend_alpha_minmax │ ├── GL_SGIX_clipmap │ ├── GL_SGIX_convolution_accuracy │ ├── GL_SGIX_depth_texture │ ├── GL_SGIX_flush_raster │ ├── GL_SGIX_fog_offset │ ├── GL_SGIX_fog_texture │ ├── GL_SGIX_fragment_specular_lighting │ ├── GL_SGIX_framezoom │ ├── GL_SGIX_interlace │ ├── GL_SGIX_ir_instrument1 │ ├── GL_SGIX_list_priority │ ├── GL_SGIX_pixel_texture │ ├── GL_SGIX_pixel_texture_bits │ ├── GL_SGIX_reference_plane │ ├── GL_SGIX_resample │ ├── GL_SGIX_shadow │ ├── GL_SGIX_shadow_ambient │ ├── GL_SGIX_sprite │ ├── GL_SGIX_tag_sample_buffer │ ├── GL_SGIX_texture_add_env │ ├── GL_SGIX_texture_coordinate_clamp │ ├── GL_SGIX_texture_lod_bias │ ├── GL_SGIX_texture_multi_buffer │ ├── GL_SGIX_texture_range │ ├── GL_SGIX_texture_scale_bias │ ├── GL_SGIX_vertex_preclip │ ├── GL_SGIX_vertex_preclip_hint │ ├── GL_SGIX_ycrcb │ ├── GL_SGI_color_matrix │ ├── GL_SGI_color_table │ ├── GL_SGI_texture_color_table │ ├── GL_SUNX_constant_data │ ├── GL_SUN_convolution_border_modes │ ├── GL_SUN_global_alpha │ ├── GL_SUN_mesh_array │ ├── GL_SUN_read_video_pixels │ ├── GL_SUN_slice_accum │ ├── GL_SUN_triangle_list │ ├── GL_SUN_vertex │ ├── GL_WIN_phong_shading │ ├── GL_WIN_specular_fog │ ├── GL_WIN_swap_hint │ ├── WGL_3DFX_multisample │ ├── WGL_3DL_stereo_control │ ├── WGL_AMD_gpu_association │ ├── WGL_ARB_buffer_region │ ├── WGL_ARB_create_context │ ├── WGL_ARB_create_context_profile │ ├── WGL_ARB_create_context_robustness │ ├── WGL_ARB_extensions_string │ ├── WGL_ARB_framebuffer_sRGB │ ├── WGL_ARB_make_current_read │ ├── WGL_ARB_multisample │ ├── WGL_ARB_pbuffer │ ├── WGL_ARB_pixel_format │ ├── WGL_ARB_pixel_format_float │ ├── WGL_ARB_render_texture │ ├── WGL_ATI_pixel_format_float │ ├── WGL_ATI_render_texture_rectangle │ ├── WGL_EXT_create_context_es2_profile │ ├── WGL_EXT_create_context_es_profile │ ├── WGL_EXT_depth_float │ ├── WGL_EXT_display_color_table │ ├── WGL_EXT_extensions_string │ ├── WGL_EXT_framebuffer_sRGB │ ├── WGL_EXT_make_current_read │ ├── WGL_EXT_multisample │ ├── WGL_EXT_pbuffer │ ├── WGL_EXT_pixel_format │ ├── WGL_EXT_pixel_format_packed_float │ ├── WGL_EXT_swap_control │ ├── WGL_EXT_swap_control_tear │ ├── WGL_I3D_digital_video_control │ ├── WGL_I3D_gamma │ ├── WGL_I3D_genlock │ ├── WGL_I3D_image_buffer │ ├── WGL_I3D_swap_frame_lock │ ├── WGL_I3D_swap_frame_usage │ ├── WGL_NV_DX_interop │ ├── WGL_NV_DX_interop2 │ ├── WGL_NV_copy_image │ ├── WGL_NV_float_buffer │ ├── WGL_NV_gpu_affinity │ ├── WGL_NV_multisample_coverage │ ├── WGL_NV_present_video │ ├── WGL_NV_render_depth_texture │ ├── WGL_NV_render_texture_rectangle │ ├── WGL_NV_swap_group │ ├── WGL_NV_vertex_array_range │ ├── WGL_NV_video_capture │ ├── WGL_NV_video_output │ └── WGL_OML_sync_control ├── lib │ └── OpenGL │ │ └── Spec.pm └── src │ ├── footer.html │ ├── glew.rc │ ├── glew_head.c │ ├── glew_head.h │ ├── glew_init_gl.c │ ├── glew_init_glx.c │ ├── glew_init_tail.c │ ├── glew_init_wgl.c │ ├── glew_license.h │ ├── glew_str_glx.c │ ├── glew_str_head.c │ ├── glew_str_tail.c │ ├── glew_str_wgl.c │ ├── glew_tail.h │ ├── glew_utils.c │ ├── glew_utils.h │ ├── glewinfo.rc │ ├── glewinfo_gl.c │ ├── glewinfo_glx.c │ ├── glewinfo_head.c │ ├── glewinfo_tail.c │ ├── glewinfo_wgl.c │ ├── glxew_head.h │ ├── glxew_mid.h │ ├── glxew_tail.h │ ├── header.html │ ├── khronos_license.h │ ├── mesa_license.h │ ├── visualinfo.rc │ ├── wglew_head.h │ ├── wglew_mid.h │ └── wglew_tail.h ├── build ├── glew.rc ├── glewinfo.rc ├── vc10 │ ├── glew.sln │ ├── glew_shared.vcxproj │ ├── glew_static.vcxproj │ ├── glewinfo.vcxproj │ └── visualinfo.vcxproj ├── vc6 │ ├── Makefile │ ├── glew.dsw │ ├── glew_shared.dsp │ ├── glew_static.dsp │ ├── glewinfo.dsp │ └── visualinfo.dsp └── visualinfo.rc ├── config ├── Makefile.cygming ├── Makefile.cygwin ├── Makefile.darwin ├── Makefile.darwin-ppc ├── Makefile.darwin-x86_64 ├── Makefile.fedora-mingw32 ├── Makefile.freebsd ├── Makefile.gnu ├── Makefile.irix ├── Makefile.kfreebsd ├── Makefile.linux ├── Makefile.linux-mingw32 ├── Makefile.linux-mingw64 ├── Makefile.mingw ├── Makefile.netbsd ├── Makefile.solaris ├── Makefile.solaris-gcc ├── config.guess └── version ├── doc ├── advanced.html ├── basic.html ├── build.html ├── credits.html ├── glew.css ├── glew.html ├── glew.png ├── glew.txt ├── glxew.html ├── gpl.txt ├── index.html ├── install.html ├── khronos.txt ├── log.html ├── mesa.txt ├── new.png ├── ogl_sm.jpg └── wglew.html ├── glew.pc.in ├── include └── GL │ ├── glew.h │ ├── glxew.h │ └── wglew.h ├── lib └── win32-vc │ ├── glew32s.lib │ └── glew32sd.lib └── src ├── glew.c ├── glewinfo.c └── visualinfo.c /GPUtoGPU_DX11/GPUtoGPU_DX11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/GPUtoGPU_DX11/GPUtoGPU_DX11.suo -------------------------------------------------------------------------------- /GPUtoGPU_DX11/GPUtoGPU_DX11.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/GPUtoGPU_DX11/GPUtoGPU_DX11.v11.suo -------------------------------------------------------------------------------- /GPUtoGPU_DX11/resources/amdlogo.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/GPUtoGPU_DX11/resources/amdlogo.dds -------------------------------------------------------------------------------- /GPUtoGPU_OpenCL/GPUtoGPU_OpenCL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/GPUtoGPU_OpenCL/GPUtoGPU_OpenCL.suo -------------------------------------------------------------------------------- /GPUtoGPU_OpenCL/GPUtoGPU_OpenCL/GPUtoGPU_OpenCL.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /GPUtoGPU_OpenGL/GPUtoGPU_OpenGL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/GPUtoGPU_OpenGL/GPUtoGPU_OpenGL.suo -------------------------------------------------------------------------------- /GPUtoGPU_OpenGL/resources/AMD_FirePro.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/GPUtoGPU_OpenGL/resources/AMD_FirePro.rgb -------------------------------------------------------------------------------- /external/glew-1.9.0/README.txt: -------------------------------------------------------------------------------- 1 | See doc/index.html for more information. 2 | 3 | If you downloaded the tarball from the GLEW website, you just need to: 4 | 5 | Unix: 6 | 7 | make 8 | 9 | Windows: 10 | 11 | use the project file in build/vc6/ 12 | 13 | If you wish to build GLEW from scratch (update the extension data from 14 | the net or add your own extension information), you need a Unix 15 | environment (including wget, perl, and GNU make). The extension data 16 | is regenerated from the top level source directory with: 17 | 18 | make extensions 19 | -------------------------------------------------------------------------------- /external/glew-1.9.0/TODO.txt: -------------------------------------------------------------------------------- 1 | Major: 2 | - add support for windows mini-client drivers 3 | - add windows installer (msi) 4 | - separate build of static and shared object files (for mingw and 5 | cygwin) 6 | - start designing GLEW 2.0 7 | 8 | Minor: 9 | - make auto scripts work with text mode cygwin mounts 10 | - add support for all SUN, MTX, and OML extensions 11 | - make auto/Makefile more robust against auto/core/*~ mistakes 12 | - web poll on separating glew, glxew and wglew 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/blacklist: -------------------------------------------------------------------------------- 1 | EXT/draw_range_elements.txt 2 | EXT/static_vertex_array.txt 3 | EXT/vertex_array_set.alt.txt 4 | EXT/vertex_array_set.txt 5 | EXT/nurbs_tessellator.txt 6 | EXT/object_space_tess.txt 7 | SGI/filter4_parameters.txt 8 | SGIS/texture_color_mask.txt 9 | SGIX/dmbuffer.txt 10 | SGIX/instruments.txt 11 | SGIX/video_source.txt 12 | SGIX/hyperpipe_group.txt 13 | OES/OES_fixed_point.txt 14 | OES/OES_query_matrix.txt 15 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_AMD_gpu_association: -------------------------------------------------------------------------------- 1 | GLX_AMD_gpu_association 2 | http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt 3 | GLX_AMD_gpu_association 4 | GLX_GPU_VENDOR_AMD 0x1F00 5 | GLX_GPU_RENDERER_STRING_AMD 0x1F01 6 | GLX_GPU_OPENGL_VERSION_STRING_AMD 0x1F02 7 | GLX_GPU_FASTEST_TARGET_GPUS_AMD 0x21A2 8 | GLX_GPU_RAM_AMD 0x21A3 9 | GLX_GPU_CLOCK_AMD 0x21A4 10 | GLX_GPU_NUM_PIPES_AMD 0x21A5 11 | GLX_GPU_NUM_SIMD_AMD 0x21A6 12 | GLX_GPU_NUM_RB_AMD 0x21A7 13 | GLX_GPU_NUM_SPI_AMD 0x21A8 14 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_ARB_get_proc_address: -------------------------------------------------------------------------------- 1 | GLX_ARB_get_proc_address 2 | http://oss.sgi.com/projects/ogl-sample/registry/ARB/get_proc_address.txt 3 | GLX_ARB_get_proc_address 4 | extern void ( * glXGetProcAddressARB (const GLubyte *procName)) (void); 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_ATI_pixel_format_float: -------------------------------------------------------------------------------- 1 | GLX_ATI_pixel_format_float 2 | 3 | GLX_ATI_pixel_format_float 4 | GLX_RGBA_FLOAT_ATI_BIT 0x00000100 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_EXT_create_context_es2_profile: -------------------------------------------------------------------------------- 1 | GLX_EXT_create_context_es2_profile 2 | http://www.opengl.org/registry/specs/EXT/glx_create_context_es2_profile.txt 3 | GLX_EXT_create_context_es2_profile 4 | GLX_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_EXT_create_context_es_profile: -------------------------------------------------------------------------------- 1 | GLX_EXT_create_context_es_profile 2 | http://www.opengl.org/registry/specs/EXT/glx_create_context_es_profile.txt 3 | GLX_EXT_create_context_es_profile 4 | GLX_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_EXT_fbconfig_packed_float: -------------------------------------------------------------------------------- 1 | GLX_EXT_fbconfig_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | GLX_EXT_fbconfig_packed_float 4 | GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT 0x20B1 5 | GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT 0x00000008 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GLX_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | GLX_EXT_framebuffer_sRGB 4 | GLX_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20B2 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_MESA_swap_control: -------------------------------------------------------------------------------- 1 | GLX_MESA_swap_control 2 | http://cgit.freedesktop.org/mesa/mesa/plain/docs/MESA_swap_control.spec 3 | GLX_MESA_swap_control 4 | int glXGetSwapIntervalMESA (void) 5 | int glXSwapIntervalMESA (unsigned int interval) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_NV_float_buffer: -------------------------------------------------------------------------------- 1 | GLX_NV_float_buffer 2 | http://cvs1.nvidia.com/inc/GL/glxtokens.h 3 | GLX_NV_float_buffer 4 | GLX_FLOAT_COMPONENTS_NV 0x20B0 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_NV_vertex_array_range: -------------------------------------------------------------------------------- 1 | GLX_NV_vertex_array_range 2 | http://oss.sgi.com/projects/ogl-sample/registry/NV/vertex_array_range.txt 3 | GLX_NV_vertex_array_range 4 | void * glXAllocateMemoryNV (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority) 5 | void glXFreeMemoryNV (void *pointer) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_SGIS_shared_multisample: -------------------------------------------------------------------------------- 1 | GLX_SGIS_shared_multisample 2 | 3 | GLX_SGIS_shared_multisample 4 | GLX_MULTISAMPLE_SUB_RECT_WIDTH_SGIS 0x8026 5 | GLX_MULTISAMPLE_SUB_RECT_HEIGHT_SGIS 0x8027 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_SGIX_swap_barrier: -------------------------------------------------------------------------------- 1 | GLX_SGIX_swap_barrier 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/swap_barrier.txt 3 | GLX_SGIX_swap_barrier 4 | void glXBindSwapBarrierSGIX (Display *dpy, GLXDrawable drawable, int barrier) 5 | Bool glXQueryMaxSwapBarriersSGIX (Display *dpy, int screen, int *max) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_SGIX_swap_group: -------------------------------------------------------------------------------- 1 | GLX_SGIX_swap_group 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/swap_group.txt 3 | GLX_SGIX_swap_group 4 | void glXJoinSwapGroupSGIX (Display *dpy, GLXDrawable drawable, GLXDrawable member) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_SGI_video_sync: -------------------------------------------------------------------------------- 1 | GLX_SGI_video_sync 2 | http://www.opengl.org/registry/specs/SGI/video_sync.txt 3 | GLX_SGI_video_sync 4 | int glXGetVideoSyncSGI (unsigned int* count) 5 | int glXWaitVideoSyncSGI (int divisor, int remainder, unsigned int* count) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_SUN_video_resize: -------------------------------------------------------------------------------- 1 | GLX_SUN_video_resize 2 | http://wwws.sun.com/software/graphics/opengl/extensions/glx_sun_video_resize.txt 3 | GLX_SUN_video_resize 4 | GL_VIDEO_RESIZE_COMPENSATION_SUN 0x85CD 5 | GLX_VIDEO_RESIZE_SUN 0x8171 6 | int glXVideoResizeSUN (Display* display, GLXDrawable window, float factor) 7 | int glXGetVideoResizeSUN (Display* display, GLXDrawable window, float* factor) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_VERSION_1_2: -------------------------------------------------------------------------------- 1 | GLX_VERSION_1_2 2 | http://www.opengl.org/documentation/specs/glx/glx1.2.ps 3 | GLX_VERSION_1_2 4 | Display* glXGetCurrentDisplay (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GLX_VERSION_1_4: -------------------------------------------------------------------------------- 1 | GLX_VERSION_1_4 2 | http://www.opengl.org/documentation/specs/glx/glx1.4.pdf 3 | GLX_VERSION_1_4 4 | GLX_SAMPLE_BUFFERS 100000 5 | GLX_SAMPLES 100001 6 | extern void ( * glXGetProcAddress (const GLubyte *procName)) (void); 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_APPLE_pixel_buffer: -------------------------------------------------------------------------------- 1 | GL_APPLE_pixel_buffer 2 | 3 | GL_APPLE_pixel_buffer 4 | GL_MIN_PBUFFER_VIEWPORT_DIMS_APPLE 0x8A10 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_APPLE_texture_range: -------------------------------------------------------------------------------- 1 | GL_APPLE_texture_range 2 | http://www.opengl.org/registry/specs/APPLE/texture_range.txt 3 | GL_APPLE_texture_range 4 | GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC 5 | GL_STORAGE_PRIVATE_APPLE 0x85BD 6 | GL_STORAGE_CACHED_APPLE 0x85BE 7 | GL_STORAGE_SHARED_APPLE 0x85BF 8 | GL_TEXTURE_RANGE_LENGTH_APPLE 0x85B7 9 | GL_TEXTURE_RANGE_POINTER_APPLE 0x85B8 10 | void glTextureRangeAPPLE (GLenum target, GLsizei length, GLvoid *pointer) 11 | void glGetTexParameterPointervAPPLE (GLenum target, GLenum pname, GLvoid **params) 12 | 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_ARB_draw_instanced: -------------------------------------------------------------------------------- 1 | GL_ARB_draw_instanced 2 | http://www.opengl.org/registry/specs/ARB/draw_instanced.txt 3 | GL_ARB_draw_instanced 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_ARB_instanced_arrays: -------------------------------------------------------------------------------- 1 | GL_ARB_instanced_arrays 2 | http://www.opengl.org/registry/specs/ARB/instanced_arrays.txt 3 | GL_ARB_instanced_arrays 4 | GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB 0x88FE 5 | void glVertexAttribDivisorARB (GLuint index, GLuint divisor) 6 | void glDrawArraysInstancedARB (GLenum mode, GLint first, GLsizei count, GLsizei primcount) 7 | void glDrawElementsInstancedARB (GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_ATIX_point_sprites: -------------------------------------------------------------------------------- 1 | GL_ATIX_point_sprites 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_point_sprites 4 | GL_TEXTURE_POINT_MODE_ATIX 0x60B0 5 | GL_TEXTURE_POINT_ONE_COORD_ATIX 0x60B1 6 | GL_TEXTURE_POINT_SPRITE_ATIX 0x60B2 7 | GL_POINT_SPRITE_CULL_MODE_ATIX 0x60B3 8 | GL_POINT_SPRITE_CULL_CENTER_ATIX 0x60B4 9 | GL_POINT_SPRITE_CULL_CLIP_ATIX 0x60B5 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_ATIX_texture_env_combine3: -------------------------------------------------------------------------------- 1 | GL_ATIX_texture_env_combine3 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_texture_env_combine3 4 | GL_MODULATE_ADD_ATIX 0x8744 5 | GL_MODULATE_SIGNED_ADD_ATIX 0x8745 6 | GL_MODULATE_SUBTRACT_ATIX 0x8746 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_ATIX_texture_env_route: -------------------------------------------------------------------------------- 1 | GL_ATIX_texture_env_route 2 | http://www.ati.com/developer/sdk/RadeonSDK/Html/Info/ATIX_texture_env_route.txt 3 | GL_ATIX_texture_env_route 4 | GL_SECONDARY_COLOR_ATIX 0x8747 5 | GL_TEXTURE_OUTPUT_RGB_ATIX 0x8748 6 | GL_TEXTURE_OUTPUT_ALPHA_ATIX 0x8749 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_ATIX_vertex_shader_output_point_size: -------------------------------------------------------------------------------- 1 | GL_ATIX_vertex_shader_output_point_size 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_vertex_shader_output_point_size 4 | GL_OUTPUT_POINT_SIZE_ATIX 0x610E 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_ATI_map_object_buffer: -------------------------------------------------------------------------------- 1 | GL_ATI_map_object_buffer 2 | http://www.opengl.org/registry/specs/ATI/map_object_buffer.txt 3 | GL_ATI_map_object_buffer 4 | GLvoid * glMapObjectBufferATI (GLuint buffer) 5 | void glUnmapObjectBufferATI (GLuint buffer) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_ATI_separate_stencil: -------------------------------------------------------------------------------- 1 | GL_ATI_separate_stencil 2 | http://www.opengl.org/registry/specs/ATI/separate_stencil.txt 3 | GL_ATI_separate_stencil 4 | GL_STENCIL_BACK_FUNC_ATI 0x8800 5 | GL_STENCIL_BACK_FAIL_ATI 0x8801 6 | GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802 7 | GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI 0x8803 8 | void glStencilOpSeparateATI (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass) 9 | void glStencilFuncSeparateATI (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_ATI_shader_texture_lod: -------------------------------------------------------------------------------- 1 | GL_ATI_shader_texture_lod 2 | 3 | GL_ATI_shader_texture_lod 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_ATI_texture_compression_3dc: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_compression_3dc 2 | 3 | GL_ATI_texture_compression_3dc 4 | GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI 0x8837 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_Cg_shader: -------------------------------------------------------------------------------- 1 | GL_EXT_Cg_shader 2 | http://download.nvidia.com/developer/GLSL/GLSL%20Release%20Notes%20for%20Release%2060.pdf 3 | GL_EXT_Cg_shader 4 | GL_CG_VERTEX_SHADER_EXT 0x890E 5 | GL_CG_FRAGMENT_SHADER_EXT 0x890F 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_debug_marker: -------------------------------------------------------------------------------- 1 | GL_EXT_debug_marker 2 | http://www.khronos.org/registry/gles/extensions/EXT/EXT_debug_marker.txt 3 | GL_EXT_debug_marker 4 | void glInsertEventMarkerEXT (GLsizei length, const GLchar* marker) 5 | void glPushGroupMarkerEXT (GLsizei length, const GLchar* marker) 6 | void glPopGroupMarkerEXT (void) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_depth_bounds_test: -------------------------------------------------------------------------------- 1 | GL_EXT_depth_bounds_test 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_depth_bounds_test.txt 3 | GL_EXT_depth_bounds_test 4 | GL_DEPTH_BOUNDS_TEST_EXT 0x8890 5 | GL_DEPTH_BOUNDS_EXT 0x8891 6 | void glDepthBoundsEXT (GLclampd zmin, GLclampd zmax) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_draw_instanced: -------------------------------------------------------------------------------- 1 | GL_EXT_draw_instanced 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_draw_instanced.txt 3 | GL_EXT_draw_instanced 4 | void glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount) 5 | void glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_draw_range_elements: -------------------------------------------------------------------------------- 1 | GL_EXT_draw_range_elements 2 | http://oss.sgi.com/projects/ogl-sample/registry/EXT/draw_range_elements.txt 3 | GL_EXT_draw_range_elements 4 | GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 5 | GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 6 | void glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GL_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | GL_EXT_framebuffer_sRGB 4 | GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 5 | GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_gpu_program_parameters: -------------------------------------------------------------------------------- 1 | GL_EXT_gpu_program_parameters 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_gpu_program_parameters.txt 3 | GL_EXT_gpu_program_parameters 4 | void glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat* params) 5 | void glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat* params) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_packed_float: -------------------------------------------------------------------------------- 1 | GL_EXT_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | GL_EXT_packed_float 4 | GL_R11F_G11F_B10F_EXT 0x8C3A 5 | GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B 6 | GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_pixel_buffer_object: -------------------------------------------------------------------------------- 1 | GL_EXT_pixel_buffer_object 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_pixel_buffer_object.txt 3 | GL_EXT_pixel_buffer_object 4 | GL_PIXEL_PACK_BUFFER_EXT 0x88EB 5 | GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC 6 | GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED 7 | GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_texture_buffer_object: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_buffer_object 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_buffer_object.txt 3 | GL_EXT_texture_buffer_object 4 | GL_TEXTURE_BUFFER_EXT 0x8C2A 5 | GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B 6 | GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C 7 | GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D 8 | GL_TEXTURE_BUFFER_FORMAT_EXT 0x8C2E 9 | void glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_texture_compression_latc: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_latc 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_compression_latc.txt 3 | GL_EXT_texture_compression_latc 4 | GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70 5 | GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71 6 | GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72 7 | GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_texture_compression_rgtc: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_rgtc 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_compression_rgtc.txt 3 | GL_EXT_texture_compression_rgtc 4 | GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB 5 | GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC 6 | GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD 7 | GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_texture_edge_clamp: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_edge_clamp 2 | http://www.opengl.org/developers/documentation/Version1.2/1.2specs/texture_edge_clamp.txt 3 | GL_EXT_texture_edge_clamp 4 | GL_CLAMP_TO_EDGE_EXT 0x812F 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_texture_rectangle: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_rectangle 2 | http://developer.apple.com/opengl/extensions/ext_texture_rectangle.html 3 | GL_EXT_texture_rectangle 4 | GL_TEXTURE_RECTANGLE_EXT 0x84F5 5 | GL_TEXTURE_BINDING_RECTANGLE_EXT 0x84F6 6 | GL_PROXY_TEXTURE_RECTANGLE_EXT 0x84F7 7 | GL_MAX_RECTANGLE_TEXTURE_SIZE_EXT 0x84F8 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_texture_shared_exponent: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_shared_exponent 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_shared_exponent.txt 3 | GL_EXT_texture_shared_exponent 4 | GL_RGB9_E5_EXT 0x8C3D 5 | GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E 6 | GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_EXT_timer_query: -------------------------------------------------------------------------------- 1 | GL_EXT_timer_query 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_timer_query.txt 3 | GL_EXT_timer_query 4 | GL_TIME_ELAPSED_EXT 0x88BF 5 | void glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64EXT *params) 6 | void glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64EXT *params) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_KTX_buffer_region: -------------------------------------------------------------------------------- 1 | GL_KTX_buffer_region 2 | 3 | GL_KTX_buffer_region 4 | GL_KTX_FRONT_REGION 0x0 5 | GL_KTX_BACK_REGION 0x1 6 | GL_KTX_Z_REGION 0x2 7 | GL_KTX_STENCIL_REGION 0x3 8 | GLuint glBufferRegionEnabled (void) 9 | GLuint glNewBufferRegion (GLenum region) 10 | void glDeleteBufferRegion (GLenum region) 11 | void glReadBufferRegion (GLuint region, GLint x, GLint y, GLsizei width, GLsizei height) 12 | void glDrawBufferRegion (GLuint region, GLint x, GLint y, GLsizei width, GLsizei height, GLint xDest, GLint yDest) 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NVX_gpu_memory_info: -------------------------------------------------------------------------------- 1 | GL_NVX_gpu_memory_info 2 | http://developer.download.nvidia.com/opengl/specs/GL_NVX_gpu_memory_info.txt 3 | GL_NVX_gpu_memory_info 4 | GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX 0x9047 5 | GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX 0x9048 6 | GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX 0x9049 7 | GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX 0x904A 8 | GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX 0x904B 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_depth_buffer_float: -------------------------------------------------------------------------------- 1 | GL_NV_depth_buffer_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_depth_buffer_float.txt 3 | GL_NV_depth_buffer_float 4 | GL_DEPTH_COMPONENT32F_NV 0x8DAB 5 | GL_DEPTH32F_STENCIL8_NV 0x8DAC 6 | GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV 0x8DAD 7 | GL_DEPTH_BUFFER_FLOAT_MODE_NV 0x8DAF 8 | void glDepthRangedNV (GLdouble zNear, GLdouble zFar) 9 | void glClearDepthdNV (GLdouble depth) 10 | void glDepthBoundsdNV (GLdouble zmin, GLdouble zmax) 11 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_depth_range_unclamped: -------------------------------------------------------------------------------- 1 | GL_NV_depth_range_unclamped 2 | 3 | GL_NV_depth_range_unclamped 4 | GL_SAMPLE_COUNT_BITS_NV 0x8864 5 | GL_CURRENT_SAMPLE_COUNT_QUERY_NV 0x8865 6 | GL_QUERY_RESULT_NV 0x8866 7 | GL_QUERY_RESULT_AVAILABLE_NV 0x8867 8 | GL_SAMPLE_COUNT_NV 0x8914 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_fragment_program2: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program2 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_fragment_program2.txt 3 | GL_NV_fragment_program2 4 | GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 5 | GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 6 | GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 7 | GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 8 | GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_fragment_program4: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_fragment_program4.txt 3 | GL_NV_gpu_program4 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_fragment_program_option: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program_option 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_fragment_program_option.txt 3 | GL_NV_fragment_program_option 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_framebuffer_multisample_coverage: -------------------------------------------------------------------------------- 1 | GL_NV_framebuffer_multisample_coverage 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_framebuffer_multisample_coverage.txt 3 | GL_NV_framebuffer_multisample_coverage 4 | GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB 5 | GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10 6 | GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E11 7 | GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12 8 | void glRenderbufferStorageMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_geometry_program4: -------------------------------------------------------------------------------- 1 | GL_NV_geometry_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_geometry_program4.txt 3 | GL_NV_gpu_program4 4 | GL_GEOMETRY_PROGRAM_NV 0x8C26 5 | GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27 6 | GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 7 | void glProgramVertexLimitNV (GLenum target, GLint limit) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_geometry_shader4: -------------------------------------------------------------------------------- 1 | GL_NV_geometry_shader4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_geometry_shader4.txt 3 | GL_NV_geometry_shader4 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_gpu_program5: -------------------------------------------------------------------------------- 1 | GL_NV_gpu_program5 2 | http://www.opengl.org/registry/specs/NV/gpu_program5.txt 3 | GL_NV_gpu_program5 4 | GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A 5 | GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B 6 | GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C 7 | GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D 8 | GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5E 9 | GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5F 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_tessellation_program5: -------------------------------------------------------------------------------- 1 | GL_NV_tessellation_program5 2 | http://www.opengl.org/registry/specs/NV/tessellation_program5.txt 3 | GL_NV_gpu_program5 4 | GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 5 | GL_TESS_CONTROL_PROGRAM_NV 0x891E 6 | GL_TESS_EVALUATION_PROGRAM_NV 0x891F 7 | GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74 8 | GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_vertex_program2_option: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program2_option 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_vertex_program2_option.txt 3 | GL_NV_vertex_program2_option 4 | GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 5 | GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_vertex_program3: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program3 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_vertex_program3.txt 3 | GL_NV_vertex_program3 4 | MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_NV_vertex_program4: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_vertex_program4.txt 3 | GL_NV_gpu_program4 4 | GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_REGAL_error_string: -------------------------------------------------------------------------------- 1 | GL_REGAL_error_string 2 | https://github.com/p3/regal 3 | GL_REGAL_error_string 4 | const GLchar* glErrorStringREGAL (GLenum error) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_REGAL_extension_query: -------------------------------------------------------------------------------- 1 | GL_REGAL_extension_query 2 | https://github.com/p3/regal 3 | GL_REGAL_extension_query 4 | GLboolean glGetExtensionREGAL (const GLchar* ext) 5 | GLboolean glIsSupportedREGAL (const GLchar* ext) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_REGAL_log: -------------------------------------------------------------------------------- 1 | GL_REGAL_log 2 | http://www.opengl.org/registry/specs/REGAL/log.txt 3 | GL_REGAL_log 4 | GL_LOG_ERROR_REGAL 0x9319 5 | GL_LOG_WARNING_REGAL 0x931A 6 | GL_LOG_INFO_REGAL 0x931B 7 | GL_LOG_APP_REGAL 0x931C 8 | GL_LOG_DRIVER_REGAL 0x931D 9 | GL_LOG_INTERNAL_REGAL 0x931E 10 | GL_LOG_DEBUG_REGAL 0x931F 11 | GL_LOG_STATUS_REGAL 0x9320 12 | GL_LOG_HTTP_REGAL 0x9321 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_SGIX_shadow: -------------------------------------------------------------------------------- 1 | GL_SGIX_shadow 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/shadow.txt 3 | GL_SGIX_shadow 4 | GL_TEXTURE_COMPARE_SGIX 0x819A 5 | GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B 6 | GL_TEXTURE_LEQUAL_R_SGIX 0x819C 7 | GL_TEXTURE_GEQUAL_R_SGIX 0x819D 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_SUN_read_video_pixels: -------------------------------------------------------------------------------- 1 | GL_SUN_read_video_pixels 2 | http://wwws.sun.com/software/graphics/opengl/extensions/gl_sun_read_video_pixels.txt 3 | GL_SUN_read_video_pixels 4 | void glReadVideoPixelsSUN (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_VERSION_1_2_1: -------------------------------------------------------------------------------- 1 | GL_VERSION_1_2_1 2 | http://www.opengl.org/documentation/specs/version1.2/opengl1.2.1.pdf 3 | 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_VERSION_3_3: -------------------------------------------------------------------------------- 1 | GL_VERSION_3_3 2 | http://www.opengl.org/registry/doc/glspec32.core.20090803.pdf 3 | 4 | GL_TEXTURE_SWIZZLE_R 0x8E42 5 | GL_TEXTURE_SWIZZLE_G 0x8E43 6 | GL_TEXTURE_SWIZZLE_B 0x8E44 7 | GL_TEXTURE_SWIZZLE_A 0x8E45 8 | GL_TEXTURE_SWIZZLE_RGBA 0x8E46 9 | GL_RGB10_A2UI 0x906F 10 | GL_VERTEX_ATTRIB_ARRAY_DIVISOR 0x88FE 11 | void glVertexAttribDivisor (GLuint index, GLuint divisor) 12 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_VERSION_4_1: -------------------------------------------------------------------------------- 1 | GL_VERSION_4_1 2 | http://www.opengl.org/registry/doc/glspec41.core.20100725.pdf 3 | 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_VERSION_4_2: -------------------------------------------------------------------------------- 1 | GL_VERSION_4_2 2 | http://www.opengl.org/registry/doc/glspec42.core.20110822.pdf 3 | 4 | GL_COMPRESSED_RGBA_BPTC_UNORM 0x8E8C 5 | GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM 0x8E8D 6 | GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT 0x8E8E 7 | GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT 0x8E8F 8 | 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_VERSION_4_3: -------------------------------------------------------------------------------- 1 | GL_VERSION_4_3 2 | http://www.opengl.org/registry/ 3 | 4 | GL_VERTEX_ATTRIB_ARRAY_LONG 0x874E 5 | GL_NUM_SHADING_LANGUAGE_VERSIONS 0x82E9 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/GL_WIN_swap_hint: -------------------------------------------------------------------------------- 1 | GL_WIN_swap_hint 2 | http://msdn.microsoft.com/library/default.asp?url=/library/en-us/opengl/glfunc01_16zy.asp 3 | GL_WIN_swap_hint 4 | void glAddSwapHintRectWIN (GLint x, GLint y, GLsizei width, GLsizei height) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/WGL_ARB_create_context: -------------------------------------------------------------------------------- 1 | WGL_ARB_create_context 2 | http://www.opengl.org/registry/specs/ARB/wgl_create_context.txt 3 | WGL_ARB_create_context 4 | WGL_CONTEXT_DEBUG_BIT_ARB 0x0001 5 | WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002 6 | WGL_CONTEXT_MAJOR_VERSION_ARB 0x2091 7 | WGL_CONTEXT_MINOR_VERSION_ARB 0x2092 8 | WGL_CONTEXT_LAYER_PLANE_ARB 0x2093 9 | WGL_CONTEXT_FLAGS_ARB 0x2094 10 | ERROR_INVALID_VERSION_ARB 0x2095 11 | ERROR_INVALID_PROFILE_ARB 0x2096 12 | HGLRC wglCreateContextAttribsARB (HDC hDC, HGLRC hShareContext, const int* attribList) 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/WGL_ATI_render_texture_rectangle: -------------------------------------------------------------------------------- 1 | WGL_ATI_render_texture_rectangle 2 | 3 | WGL_ATI_render_texture_rectangle 4 | WGL_TEXTURE_RECTANGLE_ATI 0x21A5 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/WGL_EXT_create_context_es2_profile: -------------------------------------------------------------------------------- 1 | WGL_EXT_create_context_es2_profile 2 | http://www.opengl.org/registry/specs/EXT/wgl_create_context_es2_profile.txt 3 | WGL_EXT_create_context_es2_profile 4 | WGL_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/WGL_EXT_create_context_es_profile: -------------------------------------------------------------------------------- 1 | WGL_EXT_create_context_es_profile 2 | http://www.opengl.org/registry/specs/EXT/wgl_create_context_es_profile.txt 3 | WGL_EXT_create_context_es_profile 4 | WGL_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/WGL_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | WGL_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | WGL_EXT_framebuffer_sRGB 4 | WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20A9 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/WGL_EXT_pixel_format_packed_float: -------------------------------------------------------------------------------- 1 | WGL_EXT_pixel_format_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | WGL_EXT_pixel_format_packed_float 4 | WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT 0x20A8 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/core/WGL_NV_vertex_array_range: -------------------------------------------------------------------------------- 1 | WGL_NV_vertex_array_range 2 | http://oss.sgi.com/projects/ogl-sample/registry/NV/vertex_array_range.txt 3 | WGL_NV_vertex_array_range 4 | void * wglAllocateMemoryNV (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority) 5 | void wglFreeMemoryNV (void *pointer) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/custom.txt: -------------------------------------------------------------------------------- 1 | WGL_ARB_extensions_string 2 | WGL_EXT_extensions_string 3 | WGL_ARB_pixel_format 4 | WGL_ARB_pbuffer 5 | WGL_NV_float_buffer 6 | WGL_ATI_pixel_format_float 7 | WGL_ARB_multisample 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/.dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/auto/extensions/.dummy -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_3DFX_multisample: -------------------------------------------------------------------------------- 1 | GLX_3DFX_multisample 2 | http://www.opengl.org/registry/specs/3DFX/3dfx_multisample.txt 3 | GLX_3DFX_multisample 4 | GLX_SAMPLE_BUFFERS_3DFX 0x8050 5 | GLX_SAMPLES_3DFX 0x8051 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_AMD_gpu_association: -------------------------------------------------------------------------------- 1 | GLX_AMD_gpu_association 2 | http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt 3 | GLX_AMD_gpu_association 4 | GLX_GPU_VENDOR_AMD 0x1F00 5 | GLX_GPU_RENDERER_STRING_AMD 0x1F01 6 | GLX_GPU_OPENGL_VERSION_STRING_AMD 0x1F02 7 | GLX_GPU_FASTEST_TARGET_GPUS_AMD 0x21A2 8 | GLX_GPU_RAM_AMD 0x21A3 9 | GLX_GPU_CLOCK_AMD 0x21A4 10 | GLX_GPU_NUM_PIPES_AMD 0x21A5 11 | GLX_GPU_NUM_SIMD_AMD 0x21A6 12 | GLX_GPU_NUM_RB_AMD 0x21A7 13 | GLX_GPU_NUM_SPI_AMD 0x21A8 14 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ARB_create_context: -------------------------------------------------------------------------------- 1 | GLX_ARB_create_context 2 | http://www.opengl.org/registry/specs/ARB/glx_create_context.txt 3 | GLX_ARB_create_context 4 | GLX_CONTEXT_DEBUG_BIT_ARB 0x0001 5 | GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002 6 | GLX_CONTEXT_MAJOR_VERSION_ARB 0x2091 7 | GLX_CONTEXT_MINOR_VERSION_ARB 0x2092 8 | GLX_CONTEXT_FLAGS_ARB 0x2094 9 | GLXContext glXCreateContextAttribsARB (Display* dpy, GLXFBConfig config, GLXContext share_context, Bool direct, const int *attrib_list) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ARB_create_context_profile: -------------------------------------------------------------------------------- 1 | GLX_ARB_create_context_profile 2 | http://www.opengl.org/registry/specs/ARB/glx_create_context.txt 3 | GLX_ARB_create_context_profile 4 | GLX_CONTEXT_CORE_PROFILE_BIT_ARB 0x00000001 5 | GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002 6 | GLX_CONTEXT_PROFILE_MASK_ARB 0x9126 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ARB_create_context_robustness: -------------------------------------------------------------------------------- 1 | GLX_ARB_create_context_robustness 2 | http://www.opengl.org/registry/specs/ARB/glx_create_context_robustness.txt 3 | GLX_ARB_create_context_robustness 4 | GLX_CONTEXT_ROBUST_ACCESS_BIT_ARB 0x00000004 5 | GLX_LOSE_CONTEXT_ON_RESET_ARB 0x8252 6 | GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 7 | GLX_NO_RESET_NOTIFICATION_ARB 0x8261 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ARB_fbconfig_float: -------------------------------------------------------------------------------- 1 | GLX_ARB_fbconfig_float 2 | http://www.opengl.org/registry/specs/ARB/color_buffer_float.txt 3 | GLX_ARB_fbconfig_float 4 | GLX_RGBA_FLOAT_BIT 0x00000004 5 | GLX_RGBA_FLOAT_TYPE 0x20B9 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ARB_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GLX_ARB_framebuffer_sRGB 2 | http://www.opengl.org/registry/specs/ARB/framebuffer_sRGB.txt 3 | GLX_ARB_framebuffer_sRGB 4 | GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20B2 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ARB_get_proc_address: -------------------------------------------------------------------------------- 1 | GLX_ARB_get_proc_address 2 | http://oss.sgi.com/projects/ogl-sample/registry/ARB/get_proc_address.txt 3 | GLX_ARB_get_proc_address 4 | extern void ( * glXGetProcAddressARB (const GLubyte *procName)) (void); 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ARB_multisample: -------------------------------------------------------------------------------- 1 | GLX_ARB_multisample 2 | http://www.opengl.org/registry/specs/ARB/multisample.txt 3 | GLX_ARB_multisample 4 | GLX_SAMPLE_BUFFERS_ARB 100000 5 | GLX_SAMPLES_ARB 100001 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ARB_robustness_application_isolation: -------------------------------------------------------------------------------- 1 | GLX_ARB_robustness_application_isolation 2 | http://www.opengl.org/registry/specs/ARB/glx_robustness_isolation.txt 3 | GLX_ARB_robustness_application_isolation 4 | GLX_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ARB_robustness_share_group_isolation: -------------------------------------------------------------------------------- 1 | GLX_ARB_robustness_share_group_isolation 2 | http://www.opengl.org/registry/specs/ARB/glx_robustness_isolation.txt 3 | GLX_ARB_robustness_share_group_isolation 4 | GLX_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ARB_vertex_buffer_object: -------------------------------------------------------------------------------- 1 | GLX_ARB_vertex_buffer_object 2 | http://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt 3 | GLX_ARB_vertex_buffer_object 4 | GLX_CONTEXT_ALLOW_BUFFER_BYTE_ORDER_MISMATCH_ARB 0x2095 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_ATI_pixel_format_float: -------------------------------------------------------------------------------- 1 | GLX_ATI_pixel_format_float 2 | 3 | GLX_ATI_pixel_format_float 4 | GLX_RGBA_FLOAT_ATI_BIT 0x00000100 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_EXT_create_context_es2_profile: -------------------------------------------------------------------------------- 1 | GLX_EXT_create_context_es2_profile 2 | http://www.opengl.org/registry/specs/EXT/glx_create_context_es2_profile.txt 3 | GLX_EXT_create_context_es2_profile 4 | GLX_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_EXT_create_context_es_profile: -------------------------------------------------------------------------------- 1 | GLX_EXT_create_context_es_profile 2 | http://www.opengl.org/registry/specs/EXT/glx_create_context_es_profile.txt 3 | GLX_EXT_create_context_es_profile 4 | GLX_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_EXT_fbconfig_packed_float: -------------------------------------------------------------------------------- 1 | GLX_EXT_fbconfig_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | GLX_EXT_fbconfig_packed_float 4 | GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT 0x20B1 5 | GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT 0x00000008 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GLX_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | GLX_EXT_framebuffer_sRGB 4 | GLX_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20B2 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_EXT_import_context: -------------------------------------------------------------------------------- 1 | GLX_EXT_import_context 2 | http://www.opengl.org/registry/specs/EXT/import_context.txt 3 | GLX_EXT_import_context 4 | GLX_SHARE_CONTEXT_EXT 0x800A 5 | GLX_VISUAL_ID_EXT 0x800B 6 | GLX_SCREEN_EXT 0x800C 7 | void glXFreeContextEXT (Display* dpy, GLXContext context) 8 | GLXContextID glXGetContextIDEXT (const GLXContext context) 9 | GLXContext glXImportContextEXT (Display* dpy, GLXContextID contextID) 10 | int glXQueryContextInfoEXT (Display* dpy, GLXContext context, int attribute,int *value) 11 | typedef XID GLXContextID 12 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_EXT_scene_marker: -------------------------------------------------------------------------------- 1 | GLX_EXT_scene_marker 2 | http://www.opengl.org/registry/specs/EXT/scene_marker.txt 3 | GLX_EXT_scene_marker 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_EXT_swap_control: -------------------------------------------------------------------------------- 1 | GLX_EXT_swap_control 2 | http://www.opengl.org/registry/specs/EXT/swap_control.txt 3 | GLX_EXT_swap_control 4 | GLX_SWAP_INTERVAL_EXT 0x20F1 5 | GLX_MAX_SWAP_INTERVAL_EXT 0x20F2 6 | void glXSwapIntervalEXT (Display* dpy, GLXDrawable drawable, int interval) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_EXT_swap_control_tear: -------------------------------------------------------------------------------- 1 | GLX_EXT_swap_control_tear 2 | http://www.opengl.org/registry/specs/EXT/glx_swap_control_tear.txt 3 | GLX_EXT_swap_control_tear 4 | GLX_LATE_SWAPS_TEAR_EXT 0x20F3 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_EXT_visual_rating: -------------------------------------------------------------------------------- 1 | GLX_EXT_visual_rating 2 | http://www.opengl.org/registry/specs/EXT/visual_rating.txt 3 | GLX_EXT_visual_rating 4 | GLX_VISUAL_CAVEAT_EXT 0x20 5 | GLX_SLOW_VISUAL_EXT 0x8001 6 | GLX_NON_CONFORMANT_VISUAL_EXT 0x800D 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_INTEL_swap_event: -------------------------------------------------------------------------------- 1 | GLX_INTEL_swap_event 2 | http://www.opengl.org/registry/specs/INTEL/swap_event.txt 3 | GLX_INTEL_swap_event 4 | GLX_EXCHANGE_COMPLETE_INTEL 0x8180 5 | GLX_COPY_COMPLETE_INTEL 0x8181 6 | GLX_FLIP_COMPLETE_INTEL 0x8182 7 | GLX_BUFFER_SWAP_COMPLETE_INTEL_MASK 0x04000000 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_MESA_agp_offset: -------------------------------------------------------------------------------- 1 | GLX_MESA_agp_offset 2 | http://www.opengl.org/registry/specs/MESA/agp_offset.txt 3 | GLX_MESA_agp_offset 4 | unsigned int glXGetAGPOffsetMESA (const void* pointer) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_MESA_copy_sub_buffer: -------------------------------------------------------------------------------- 1 | GLX_MESA_copy_sub_buffer 2 | http://www.opengl.org/registry/specs/MESA/copy_sub_buffer.txt 3 | GLX_MESA_copy_sub_buffer 4 | void glXCopySubBufferMESA (Display* dpy, GLXDrawable drawable, int x, int y, int width, int height) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_MESA_pixmap_colormap: -------------------------------------------------------------------------------- 1 | GLX_MESA_pixmap_colormap 2 | http://www.opengl.org/registry/specs/MESA/pixmap_colormap.txt 3 | GLX_MESA_pixmap_colormap 4 | GLXPixmap glXCreateGLXPixmapMESA (Display* dpy, XVisualInfo *visual, Pixmap pixmap, Colormap cmap) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_MESA_release_buffers: -------------------------------------------------------------------------------- 1 | GLX_MESA_release_buffers 2 | http://www.opengl.org/registry/specs/MESA/release_buffers.txt 3 | GLX_MESA_release_buffers 4 | Bool glXReleaseBuffersMESA (Display* dpy, GLXDrawable d) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_MESA_set_3dfx_mode: -------------------------------------------------------------------------------- 1 | GLX_MESA_set_3dfx_mode 2 | http://www.opengl.org/registry/specs/MESA/set_3dfx_mode.txt 3 | GLX_MESA_set_3dfx_mode 4 | GLX_3DFX_WINDOW_MODE_MESA 0x1 5 | GLX_3DFX_FULLSCREEN_MODE_MESA 0x2 6 | GLboolean glXSet3DfxModeMESA (GLint mode) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_MESA_swap_control: -------------------------------------------------------------------------------- 1 | GLX_MESA_swap_control 2 | http://cgit.freedesktop.org/mesa/mesa/plain/docs/MESA_swap_control.spec 3 | GLX_MESA_swap_control 4 | int glXGetSwapIntervalMESA (void) 5 | int glXSwapIntervalMESA (unsigned int interval) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_NV_copy_image: -------------------------------------------------------------------------------- 1 | GLX_NV_copy_image 2 | http://www.opengl.org/registry/specs/NV/copy_image.txt 3 | GLX_NV_copy_image 4 | void glXCopyImageSubDataNV (Display *dpy, GLXContext srcCtx, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLXContext dstCtx, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_NV_float_buffer: -------------------------------------------------------------------------------- 1 | GLX_NV_float_buffer 2 | http://cvs1.nvidia.com/inc/GL/glxtokens.h 3 | GLX_NV_float_buffer 4 | GLX_FLOAT_COMPONENTS_NV 0x20B0 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_NV_multisample_coverage: -------------------------------------------------------------------------------- 1 | GLX_NV_multisample_coverage 2 | http://www.opengl.org/registry/specs/NV/multisample_coverage.txt 3 | GLX_NV_multisample_coverage 4 | GLX_COLOR_SAMPLES_NV 0x20B3 5 | GLX_COVERAGE_SAMPLES_NV 100001 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_NV_present_video: -------------------------------------------------------------------------------- 1 | GLX_NV_present_video 2 | http://www.opengl.org/registry/specs/NV/present_video.txt 3 | GLX_NV_present_video 4 | GLX_NUM_VIDEO_SLOTS_NV 0x20F0 5 | int glXBindVideoDeviceNV (Display* dpy, unsigned int video_slot, unsigned int video_device, const int *attrib_list) 6 | unsigned int* glXEnumerateVideoDevicesNV (Display *dpy, int screen, int *nelements) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_NV_vertex_array_range: -------------------------------------------------------------------------------- 1 | GLX_NV_vertex_array_range 2 | http://oss.sgi.com/projects/ogl-sample/registry/NV/vertex_array_range.txt 3 | GLX_NV_vertex_array_range 4 | void * glXAllocateMemoryNV (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority) 5 | void glXFreeMemoryNV (void *pointer) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_OML_swap_method: -------------------------------------------------------------------------------- 1 | GLX_OML_swap_method 2 | http://www.opengl.org/registry/specs/OML/glx_swap_method.txt 3 | GLX_OML_swap_method 4 | GLX_SWAP_METHOD_OML 0x8060 5 | GLX_SWAP_EXCHANGE_OML 0x8061 6 | GLX_SWAP_COPY_OML 0x8062 7 | GLX_SWAP_UNDEFINED_OML 0x8063 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGIS_blended_overlay: -------------------------------------------------------------------------------- 1 | GLX_SGIS_blended_overlay 2 | http://www.opengl.org/registry/specs/SGIS/blended_overlay.txt 3 | GLX_SGIS_blended_overlay 4 | GLX_BLENDED_RGBA_SGIS 0x8025 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGIS_color_range: -------------------------------------------------------------------------------- 1 | GLX_SGIS_color_range 2 | http://www.opengl.org/registry/specs/SGIS/color_range.txt 3 | GLX_SGIS_color_range 4 | GLX_MAX_GREEN_SGIS 0 5 | GLX_MIN_RED_SGIS 0 6 | GLX_MIN_BLUE_SGIS 0 7 | GLX_MAX_RED_SGIS 0 8 | GLX_MAX_ALPHA_SGIS 0 9 | GLX_MIN_GREEN_SGIS 0 10 | GLX_MIN_ALPHA_SGIS 0 11 | GLX_EXTENDED_RANGE_SGIS 0 12 | GLX_MAX_BLUE_SGIS 0 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGIS_multisample: -------------------------------------------------------------------------------- 1 | GLX_SGIS_multisample 2 | http://www.opengl.org/registry/specs/SGIS/multisample.txt 3 | GLX_SGIS_multisample 4 | GLX_SAMPLE_BUFFERS_SGIS 100000 5 | GLX_SAMPLES_SGIS 100001 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGIS_shared_multisample: -------------------------------------------------------------------------------- 1 | GLX_SGIS_shared_multisample 2 | 3 | GLX_SGIS_shared_multisample 4 | GLX_MULTISAMPLE_SUB_RECT_WIDTH_SGIS 0x8026 5 | GLX_MULTISAMPLE_SUB_RECT_HEIGHT_SGIS 0x8027 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGIX_swap_barrier: -------------------------------------------------------------------------------- 1 | GLX_SGIX_swap_barrier 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/swap_barrier.txt 3 | GLX_SGIX_swap_barrier 4 | void glXBindSwapBarrierSGIX (Display *dpy, GLXDrawable drawable, int barrier) 5 | Bool glXQueryMaxSwapBarriersSGIX (Display *dpy, int screen, int *max) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGIX_swap_group: -------------------------------------------------------------------------------- 1 | GLX_SGIX_swap_group 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/swap_group.txt 3 | GLX_SGIX_swap_group 4 | void glXJoinSwapGroupSGIX (Display *dpy, GLXDrawable drawable, GLXDrawable member) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGIX_visual_select_group: -------------------------------------------------------------------------------- 1 | GLX_SGIX_visual_select_group 2 | http://www.opengl.org/registry/specs/SGIX/visual_select_group.txt 3 | GLX_SGIX_visual_select_group 4 | GLX_VISUAL_SELECT_GROUP_SGIX 0x8028 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGI_cushion: -------------------------------------------------------------------------------- 1 | GLX_SGI_cushion 2 | http://www.opengl.org/registry/specs/SGI/cushion.txt 3 | GLX_SGI_cushion 4 | void glXCushionSGI (Display* dpy, Window window, float cushion) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGI_make_current_read: -------------------------------------------------------------------------------- 1 | GLX_SGI_make_current_read 2 | http://www.opengl.org/registry/specs/SGI/make_current_read.txt 3 | GLX_SGI_make_current_read 4 | GLXDrawable glXGetCurrentReadDrawableSGI (void) 5 | Bool glXMakeCurrentReadSGI (Display* dpy, GLXDrawable draw, GLXDrawable read, GLXContext ctx) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGI_swap_control: -------------------------------------------------------------------------------- 1 | GLX_SGI_swap_control 2 | http://www.opengl.org/registry/specs/SGI/swap_control.txt 3 | GLX_SGI_swap_control 4 | int glXSwapIntervalSGI (int interval) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SGI_video_sync: -------------------------------------------------------------------------------- 1 | GLX_SGI_video_sync 2 | http://www.opengl.org/registry/specs/SGI/video_sync.txt 3 | GLX_SGI_video_sync 4 | int glXGetVideoSyncSGI (unsigned int* count) 5 | int glXWaitVideoSyncSGI (int divisor, int remainder, unsigned int* count) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SUN_get_transparent_index: -------------------------------------------------------------------------------- 1 | GLX_SUN_get_transparent_index 2 | http://www.opengl.org/registry/specs/SUN/get_transparent_index.txt 3 | GLX_SUN_get_transparent_index 4 | Status glXGetTransparentIndexSUN (Display* dpy, Window overlay, Window underlay, unsigned long *pTransparentIndex) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GLX_SUN_video_resize: -------------------------------------------------------------------------------- 1 | GLX_SUN_video_resize 2 | http://wwws.sun.com/software/graphics/opengl/extensions/glx_sun_video_resize.txt 3 | GLX_SUN_video_resize 4 | GL_VIDEO_RESIZE_COMPENSATION_SUN 0x85CD 5 | GLX_VIDEO_RESIZE_SUN 0x8171 6 | int glXVideoResizeSUN (Display* display, GLXDrawable window, float factor) 7 | int glXGetVideoResizeSUN (Display* display, GLXDrawable window, float* factor) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_3DFX_multisample: -------------------------------------------------------------------------------- 1 | GL_3DFX_multisample 2 | http://www.opengl.org/registry/specs/3DFX/3dfx_multisample.txt 3 | GL_3DFX_multisample 4 | GL_MULTISAMPLE_3DFX 0x86B2 5 | GL_SAMPLE_BUFFERS_3DFX 0x86B3 6 | GL_SAMPLES_3DFX 0x86B4 7 | GL_MULTISAMPLE_BIT_3DFX 0x20000000 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_3DFX_tbuffer: -------------------------------------------------------------------------------- 1 | GL_3DFX_tbuffer 2 | http://www.opengl.org/registry/specs/3DFX/tbuffer.txt 3 | GL_3DFX_tbuffer 4 | void glTbufferMask3DFX (GLuint mask) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_3DFX_texture_compression_FXT1: -------------------------------------------------------------------------------- 1 | GL_3DFX_texture_compression_FXT1 2 | http://www.opengl.org/registry/specs/3DFX/texture_compression_FXT1.txt 3 | GL_3DFX_texture_compression_FXT1 4 | GL_COMPRESSED_RGB_FXT1_3DFX 0x86B0 5 | GL_COMPRESSED_RGBA_FXT1_3DFX 0x86B1 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_blend_minmax_factor: -------------------------------------------------------------------------------- 1 | GL_AMD_blend_minmax_factor 2 | http://www.opengl.org/registry/specs/AMD/blend_minmax_factor.txt 3 | GL_AMD_blend_minmax_factor 4 | GL_FACTOR_MIN_AMD 0x901C 5 | GL_FACTOR_MAX_AMD 0x901D 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_conservative_depth: -------------------------------------------------------------------------------- 1 | GL_AMD_conservative_depth 2 | http://www.opengl.org/registry/specs/AMD/conservative_depth.txt 3 | GL_AMD_conservative_depth 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_depth_clamp_separate: -------------------------------------------------------------------------------- 1 | GL_AMD_depth_clamp_separate 2 | http://www.opengl.org/registry/specs/AMD/depth_clamp_separate.txt 3 | GL_AMD_depth_clamp_separate 4 | GL_DEPTH_CLAMP_NEAR_AMD 0x901E 5 | GL_DEPTH_CLAMP_FAR_AMD 0x901F 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_draw_buffers_blend: -------------------------------------------------------------------------------- 1 | GL_AMD_draw_buffers_blend 2 | http://www.opengl.org/registry/specs/AMD/draw_buffers_blend.txt 3 | GL_AMD_draw_buffers_blend 4 | void glBlendEquationIndexedAMD (GLuint buf, GLenum mode) 5 | void glBlendEquationSeparateIndexedAMD (GLuint buf, GLenum modeRGB, GLenum modeAlpha) 6 | void glBlendFuncIndexedAMD (GLuint buf, GLenum src, GLenum dst) 7 | void glBlendFuncSeparateIndexedAMD (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_multi_draw_indirect: -------------------------------------------------------------------------------- 1 | GL_AMD_multi_draw_indirect 2 | http://www.opengl.org/registry/specs/AMD/multi_draw_indirect.txt 3 | GL_AMD_multi_draw_indirect 4 | void glMultiDrawArraysIndirectAMD (GLenum mode, const void* indirect, GLsizei primcount, GLsizei stride) 5 | void glMultiDrawElementsIndirectAMD (GLenum mode, GLenum type, const void* indirect, GLsizei primcount, GLsizei stride) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_name_gen_delete: -------------------------------------------------------------------------------- 1 | GL_AMD_name_gen_delete 2 | http://www.opengl.org/registry/specs/AMD/name_gen_delete.txt 3 | GL_AMD_name_gen_delete 4 | GL_DATA_BUFFER_AMD 0x9151 5 | GL_PERFORMANCE_MONITOR_AMD 0x9152 6 | GL_QUERY_OBJECT_AMD 0x9153 7 | GL_VERTEX_ARRAY_OBJECT_AMD 0x9154 8 | GL_SAMPLER_OBJECT_AMD 0x9155 9 | void glDeleteNamesAMD (GLenum identifier, GLuint num, const GLuint* names) 10 | void glGenNamesAMD (GLenum identifier, GLuint num, GLuint* names) 11 | GLboolean glIsNameAMD (GLenum identifier, GLuint name) 12 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_pinned_memory: -------------------------------------------------------------------------------- 1 | GL_AMD_pinned_memory 2 | http://www.opengl.org/registry/specs/AMD/pinned_memory.txt 3 | GL_AMD_pinned_memory 4 | GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD 0x9160 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_query_buffer_object: -------------------------------------------------------------------------------- 1 | GL_AMD_query_buffer_object 2 | http://www.opengl.org/registry/specs/AMD/query_buffer_object.txt 3 | GL_AMD_query_buffer_object 4 | GL_QUERY_BUFFER_AMD 0x9192 5 | GL_QUERY_BUFFER_BINDING_AMD 0x9193 6 | GL_QUERY_RESULT_NO_WAIT_AMD 0x9194 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_sample_positions: -------------------------------------------------------------------------------- 1 | GL_AMD_sample_positions 2 | http://www.opengl.org/registry/specs/AMD/sample_positions.txt 3 | GL_AMD_sample_positions 4 | GL_SUBSAMPLE_DISTANCE_AMD 0x883F 5 | void glSetMultisamplefvAMD (GLenum pname, GLuint index, const GLfloat* val) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_seamless_cubemap_per_texture: -------------------------------------------------------------------------------- 1 | GL_AMD_seamless_cubemap_per_texture 2 | http://www.opengl.org/registry/specs/AMD/seamless_cubemap_per_texture.txt 3 | GL_AMD_seamless_cubemap_per_texture 4 | GL_TEXTURE_CUBE_MAP_SEAMLESS_ARB 0x884F 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_shader_stencil_export: -------------------------------------------------------------------------------- 1 | GL_AMD_shader_stencil_export 2 | http://www.opengl.org/registry/specs/AMD/shader_stencil_export.txt 3 | GL_AMD_shader_stencil_export 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_stencil_operation_extended: -------------------------------------------------------------------------------- 1 | GL_AMD_stencil_operation_extended 2 | http://www.opengl.org/registry/specs/AMD/stencil_operation_extended.txt 3 | GL_AMD_stencil_operation_extended 4 | GL_SET_AMD 0x874A 5 | GL_REPLACE_VALUE_AMD 0x874B 6 | GL_STENCIL_OP_VALUE_AMD 0x874C 7 | GL_STENCIL_BACK_OP_VALUE_AMD 0x874D 8 | void glStencilOpValueAMD (GLenum face, GLuint value) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_texture_texture4: -------------------------------------------------------------------------------- 1 | GL_AMD_texture_texture4 2 | http://www.opengl.org/registry/specs/AMD/texture_texture4.txt 3 | GL_AMD_texture_texture4 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_transform_feedback3_lines_triangles: -------------------------------------------------------------------------------- 1 | GL_AMD_transform_feedback3_lines_triangles 2 | http://www.opengl.org/registry/specs/AMD/transform_feedback3_lines_triangles.txt 3 | GL_AMD_transform_feedback3_lines_triangles 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_vertex_shader_layer: -------------------------------------------------------------------------------- 1 | GL_AMD_vertex_shader_layer 2 | http://www.opengl.org/registry/specs/AMD/vertex_shader_layer.txt 3 | GL_AMD_vertex_shader_layer 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_vertex_shader_tessellator: -------------------------------------------------------------------------------- 1 | GL_AMD_vertex_shader_tessellator 2 | http://www.opengl.org/registry/specs/AMD/vertex_shader_tessellator.txt 3 | GL_AMD_vertex_shader_tessellator 4 | GL_SAMPLER_BUFFER_AMD 0x9001 5 | GL_INT_SAMPLER_BUFFER_AMD 0x9002 6 | GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD 0x9003 7 | GL_TESSELLATION_MODE_AMD 0x9004 8 | GL_TESSELLATION_FACTOR_AMD 0x9005 9 | GL_DISCRETE_AMD 0x9006 10 | GL_CONTINUOUS_AMD 0x9007 11 | void glTessellationFactorAMD (GLfloat factor) 12 | void glTessellationModeAMD (GLenum mode) 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_AMD_vertex_shader_viewport_index: -------------------------------------------------------------------------------- 1 | GL_AMD_vertex_shader_viewport_index 2 | http://www.opengl.org/registry/specs/AMD/vertex_shader_viewport_index.txt 3 | GL_AMD_vertex_shader_viewport_index 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_aux_depth_stencil: -------------------------------------------------------------------------------- 1 | GL_APPLE_aux_depth_stencil 2 | http://www.opengl.org/registry/specs/APPLE/aux_depth_stencil.txt 3 | GL_APPLE_aux_depth_stencil 4 | GL_AUX_DEPTH_STENCIL_APPLE 0x8A14 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_client_storage: -------------------------------------------------------------------------------- 1 | GL_APPLE_client_storage 2 | http://www.opengl.org/registry/specs/APPLE/client_storage.txt 3 | GL_APPLE_client_storage 4 | GL_UNPACK_CLIENT_STORAGE_APPLE 0x85B2 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_flush_buffer_range: -------------------------------------------------------------------------------- 1 | GL_APPLE_flush_buffer_range 2 | http://www.opengl.org/registry/specs/APPLE/flush_buffer_range.txt 3 | GL_APPLE_flush_buffer_range 4 | GL_BUFFER_SERIALIZED_MODIFY_APPLE 0x8A12 5 | GL_BUFFER_FLUSHING_UNMAP_APPLE 0x8A13 6 | void glBufferParameteriAPPLE (GLenum target, GLenum pname, GLint param) 7 | void glFlushMappedBufferRangeAPPLE (GLenum target, GLintptr offset, GLsizeiptr size) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_pixel_buffer: -------------------------------------------------------------------------------- 1 | GL_APPLE_pixel_buffer 2 | 3 | GL_APPLE_pixel_buffer 4 | GL_MIN_PBUFFER_VIEWPORT_DIMS_APPLE 0x8A10 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_rgb_422: -------------------------------------------------------------------------------- 1 | GL_APPLE_rgb_422 2 | http://www.opengl.org/registry/specs/APPLE/rgb_422.txt 3 | GL_APPLE_rgb_422 4 | GL_UNSIGNED_SHORT_8_8_APPLE 0x85BA 5 | GL_UNSIGNED_SHORT_8_8_REV_APPLE 0x85BB 6 | GL_RGB_422_APPLE 0x8A1F 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_row_bytes: -------------------------------------------------------------------------------- 1 | GL_APPLE_row_bytes 2 | http://www.opengl.org/registry/specs/APPLE/row_bytes.txt 3 | GL_APPLE_row_bytes 4 | GL_PACK_ROW_BYTES_APPLE 0x8A15 5 | GL_UNPACK_ROW_BYTES_APPLE 0x8A16 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_specular_vector: -------------------------------------------------------------------------------- 1 | GL_APPLE_specular_vector 2 | http://www.opengl.org/registry/specs/APPLE/specular_vector.txt 3 | GL_APPLE_specular_vector 4 | GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE 0x85B0 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_texture_range: -------------------------------------------------------------------------------- 1 | GL_APPLE_texture_range 2 | http://www.opengl.org/registry/specs/APPLE/texture_range.txt 3 | GL_APPLE_texture_range 4 | GL_TEXTURE_STORAGE_HINT_APPLE 0x85BC 5 | GL_STORAGE_PRIVATE_APPLE 0x85BD 6 | GL_STORAGE_CACHED_APPLE 0x85BE 7 | GL_STORAGE_SHARED_APPLE 0x85BF 8 | GL_TEXTURE_RANGE_LENGTH_APPLE 0x85B7 9 | GL_TEXTURE_RANGE_POINTER_APPLE 0x85B8 10 | void glTextureRangeAPPLE (GLenum target, GLsizei length, GLvoid *pointer) 11 | void glGetTexParameterPointervAPPLE (GLenum target, GLenum pname, GLvoid **params) 12 | 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_transform_hint: -------------------------------------------------------------------------------- 1 | GL_APPLE_transform_hint 2 | http://www.opengl.org/registry/specs/APPLE/transform_hint.txt 3 | GL_APPLE_transform_hint 4 | GL_TRANSFORM_HINT_APPLE 0x85B1 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_vertex_array_object: -------------------------------------------------------------------------------- 1 | GL_APPLE_vertex_array_object 2 | http://www.opengl.org/registry/specs/APPLE/vertex_array_object.txt 3 | GL_APPLE_vertex_array_object 4 | GL_VERTEX_ARRAY_BINDING_APPLE 0x85B5 5 | void glBindVertexArrayAPPLE (GLuint array) 6 | void glDeleteVertexArraysAPPLE (GLsizei n, const GLuint* arrays) 7 | void glGenVertexArraysAPPLE (GLsizei n, const GLuint* arrays) 8 | GLboolean glIsVertexArrayAPPLE (GLuint array) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_APPLE_ycbcr_422: -------------------------------------------------------------------------------- 1 | GL_APPLE_ycbcr_422 2 | http://www.opengl.org/registry/specs/APPLE/ycbcr_422.txt 3 | GL_APPLE_ycbcr_422 4 | GL_YCBCR_422_APPLE 0x85B9 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_arrays_of_arrays: -------------------------------------------------------------------------------- 1 | GL_ARB_arrays_of_arrays 2 | http://www.opengl.org/registry/specs/ARB/arrays_of_arrays.txt 3 | GL_ARB_arrays_of_arrays 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_base_instance: -------------------------------------------------------------------------------- 1 | GL_ARB_base_instance 2 | http://www.opengl.org/registry/specs/ARB/base_instance.txt 3 | GL_ARB_base_instance 4 | void glDrawArraysInstancedBaseInstance (GLenum mode, GLint first, GLsizei count, GLsizei primcount, GLuint baseinstance) 5 | void glDrawElementsInstancedBaseInstance (GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount, GLuint baseinstance) 6 | void glDrawElementsInstancedBaseVertexBaseInstance (GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount, GLint basevertex, GLuint baseinstance) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_blend_func_extended: -------------------------------------------------------------------------------- 1 | GL_ARB_blend_func_extended 2 | http://www.opengl.org/registry/specs/ARB/blend_func_extended.txt 3 | GL_ARB_blend_func_extended 4 | GL_SRC1_COLOR 0x88F9 5 | GL_ONE_MINUS_SRC1_COLOR 0x88FA 6 | GL_ONE_MINUS_SRC1_ALPHA 0x88FB 7 | GL_MAX_DUAL_SOURCE_DRAW_BUFFERS 0x88FC 8 | void glBindFragDataLocationIndexed (GLuint program, GLuint colorNumber, GLuint index, const GLchar * name) 9 | GLint glGetFragDataIndex (GLuint program, const GLchar * name) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_cl_event: -------------------------------------------------------------------------------- 1 | GL_ARB_cl_event 2 | http://www.opengl.org/registry/specs/ARB/cl_event.txt 3 | GL_ARB_cl_event 4 | GL_SYNC_CL_EVENT_ARB 0x8240 5 | GL_SYNC_CL_EVENT_COMPLETE_ARB 0x8241 6 | GLsync glCreateSyncFromCLeventARB (cl_context context, cl_event event, GLbitfield flags) 7 | typedef struct _cl_context *cl_context 8 | typedef struct _cl_event *cl_event 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_color_buffer_float: -------------------------------------------------------------------------------- 1 | GL_ARB_color_buffer_float 2 | http://www.opengl.org/registry/specs/ARB/color_buffer_float.txt 3 | GL_ARB_color_buffer_float 4 | GL_RGBA_FLOAT_MODE_ARB 0x8820 5 | GL_CLAMP_VERTEX_COLOR_ARB 0x891A 6 | GL_CLAMP_FRAGMENT_COLOR_ARB 0x891B 7 | GL_CLAMP_READ_COLOR_ARB 0x891C 8 | GL_FIXED_ONLY_ARB 0x891D 9 | void glClampColorARB (GLenum target, GLenum clamp) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_compatibility: -------------------------------------------------------------------------------- 1 | GL_ARB_compatibility 2 | http://www.opengl.org/registry/specs/ARB/compatibility.txt 3 | GL_ARB_compatibility 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_compressed_texture_pixel_storage: -------------------------------------------------------------------------------- 1 | GL_ARB_compressed_texture_pixel_storage 2 | http://www.opengl.org/registry/specs/ARB/compressed_texture_pixel_storage.txt 3 | GL_ARB_compressed_texture_pixel_storage 4 | GL_UNPACK_COMPRESSED_BLOCK_WIDTH 0x9127 5 | GL_UNPACK_COMPRESSED_BLOCK_HEIGHT 0x9128 6 | GL_UNPACK_COMPRESSED_BLOCK_DEPTH 0x9129 7 | GL_UNPACK_COMPRESSED_BLOCK_SIZE 0x912A 8 | GL_PACK_COMPRESSED_BLOCK_WIDTH 0x912B 9 | GL_PACK_COMPRESSED_BLOCK_HEIGHT 0x912C 10 | GL_PACK_COMPRESSED_BLOCK_DEPTH 0x912D 11 | GL_PACK_COMPRESSED_BLOCK_SIZE 0x912E 12 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_conservative_depth: -------------------------------------------------------------------------------- 1 | GL_ARB_conservative_depth 2 | http://www.opengl.org/registry/specs/ARB/conservative_depth.txt 3 | GL_ARB_conservative_depth 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_copy_buffer: -------------------------------------------------------------------------------- 1 | GL_ARB_copy_buffer 2 | http://www.opengl.org/registry/specs/ARB/copy_buffer.txt 3 | GL_ARB_copy_buffer 4 | GL_COPY_READ_BUFFER 0x8F36 5 | GL_COPY_WRITE_BUFFER 0x8F37 6 | void glCopyBufferSubData (GLenum readtarget, GLenum writetarget, GLintptr readoffset, GLintptr writeoffset, GLsizeiptr size) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_copy_image: -------------------------------------------------------------------------------- 1 | GL_ARB_copy_image 2 | http://www.opengl.org/registry/specs/ARB/copy_image.txt 3 | GL_ARB_copy_image 4 | void glCopyImageSubData (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei srcWidth, GLsizei srcHeight, GLsizei srcDepth) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_depth_buffer_float: -------------------------------------------------------------------------------- 1 | GL_ARB_depth_buffer_float 2 | http://www.opengl.org/registry/specs/ARB/depth_buffer_float.txt 3 | GL_ARB_depth_buffer_float 4 | GL_DEPTH_COMPONENT32F 0x8CAC 5 | GL_DEPTH32F_STENCIL8 0x8CAD 6 | GL_FLOAT_32_UNSIGNED_INT_24_8_REV 0x8DAD 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_depth_clamp: -------------------------------------------------------------------------------- 1 | GL_ARB_depth_clamp 2 | http://www.opengl.org/registry/specs/ARB/depth_clamp.txt 3 | GL_ARB_depth_clamp 4 | GL_DEPTH_CLAMP 0x864F 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_depth_texture: -------------------------------------------------------------------------------- 1 | GL_ARB_depth_texture 2 | http://www.opengl.org/registry/specs/ARB/depth_texture.txt 3 | GL_ARB_depth_texture 4 | GL_DEPTH_COMPONENT16_ARB 0x81A5 5 | GL_DEPTH_COMPONENT24_ARB 0x81A6 6 | GL_DEPTH_COMPONENT32_ARB 0x81A7 7 | GL_TEXTURE_DEPTH_SIZE_ARB 0x884A 8 | GL_DEPTH_TEXTURE_MODE_ARB 0x884B 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_draw_buffers_blend: -------------------------------------------------------------------------------- 1 | GL_ARB_draw_buffers_blend 2 | http://www.opengl.org/registry/specs/ARB/draw_buffers_blend.txt 3 | GL_ARB_draw_buffers_blend 4 | void glBlendEquationSeparateiARB (GLuint buf, GLenum modeRGB, GLenum modeAlpha) 5 | void glBlendEquationiARB (GLuint buf, GLenum mode) 6 | void glBlendFuncSeparateiARB (GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha) 7 | void glBlendFunciARB (GLuint buf, GLenum src, GLenum dst) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_draw_indirect: -------------------------------------------------------------------------------- 1 | GL_ARB_draw_indirect 2 | http://www.opengl.org/registry/specs/ARB/draw_indirect.txt 3 | GL_ARB_draw_indirect 4 | GL_DRAW_INDIRECT_BUFFER 0x8F3F 5 | GL_DRAW_INDIRECT_BUFFER_BINDING 0x8F43 6 | void glDrawArraysIndirect (GLenum mode, const void* indirect) 7 | void glDrawElementsIndirect (GLenum mode, GLenum type, const void* indirect) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_draw_instanced: -------------------------------------------------------------------------------- 1 | GL_ARB_draw_instanced 2 | http://www.opengl.org/registry/specs/ARB/draw_instanced.txt 3 | GL_ARB_draw_instanced 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_explicit_attrib_location: -------------------------------------------------------------------------------- 1 | GL_ARB_explicit_attrib_location 2 | http://www.opengl.org/registry/specs/ARB/explicit_attrib_location.txt 3 | GL_ARB_explicit_attrib_location 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_explicit_uniform_location: -------------------------------------------------------------------------------- 1 | GL_ARB_explicit_uniform_location 2 | http://www.opengl.org/registry/specs/ARB/explicit_uniform_location.txt 3 | GL_ARB_explicit_uniform_location 4 | GL_MAX_UNIFORM_LOCATIONS 0x826E 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_fragment_coord_conventions: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_coord_conventions 2 | http://www.opengl.org/registry/specs/ARB/fragment_coord_conventions.txt 3 | GL_ARB_fragment_coord_conventions 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_fragment_layer_viewport: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_layer_viewport 2 | http://www.opengl.org/registry/specs/ARB/fragment_layer_viewport.txt 3 | GL_ARB_fragment_layer_viewport 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_fragment_program_shadow: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_program_shadow 2 | http://www.opengl.org/registry/specs/ARB/fragment_program_shadow.txt 3 | GL_ARB_fragment_program_shadow 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_fragment_shader: -------------------------------------------------------------------------------- 1 | GL_ARB_fragment_shader 2 | http://www.opengl.org/registry/specs/ARB/fragment_shader.txt 3 | GL_ARB_fragment_shader 4 | GL_FRAGMENT_SHADER_ARB 0x8B30 5 | GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB 0x8B49 6 | GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB 0x8B8B 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GL_ARB_framebuffer_sRGB 2 | http://www.opengl.org/registry/specs/ARB/framebuffer_sRGB.txt 3 | GL_ARB_framebuffer_sRGB 4 | GL_FRAMEBUFFER_SRGB 0x8DB9 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_gpu_shader5: -------------------------------------------------------------------------------- 1 | GL_ARB_gpu_shader5 2 | http://www.opengl.org/registry/specs/ARB/gpu_shader5.txt 3 | GL_ARB_gpu_shader5 4 | GL_GEOMETRY_SHADER_INVOCATIONS 0x887F 5 | GL_MAX_GEOMETRY_SHADER_INVOCATIONS 0x8E5A 6 | GL_MIN_FRAGMENT_INTERPOLATION_OFFSET 0x8E5B 7 | GL_MAX_FRAGMENT_INTERPOLATION_OFFSET 0x8E5C 8 | GL_FRAGMENT_INTERPOLATION_OFFSET_BITS 0x8E5D 9 | GL_MAX_VERTEX_STREAMS 0x8E71 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_half_float_pixel: -------------------------------------------------------------------------------- 1 | GL_ARB_half_float_pixel 2 | http://www.opengl.org/registry/specs/ARB/half_float_pixel.txt 3 | GL_ARB_half_float_pixel 4 | GL_HALF_FLOAT_ARB 0x140B 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_half_float_vertex: -------------------------------------------------------------------------------- 1 | GL_ARB_half_float_vertex 2 | http://www.opengl.org/registry/specs/ARB/half_float_vertex.txt 3 | GL_ARB_half_float_vertex 4 | GL_HALF_FLOAT 0x140B 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_instanced_arrays: -------------------------------------------------------------------------------- 1 | GL_ARB_instanced_arrays 2 | http://www.opengl.org/registry/specs/ARB/instanced_arrays.txt 3 | GL_ARB_instanced_arrays 4 | GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB 0x88FE 5 | void glVertexAttribDivisorARB (GLuint index, GLuint divisor) 6 | void glDrawArraysInstancedARB (GLenum mode, GLint first, GLsizei count, GLsizei primcount) 7 | void glDrawElementsInstancedARB (GLenum mode, GLsizei count, GLenum type, const void* indices, GLsizei primcount) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_internalformat_query: -------------------------------------------------------------------------------- 1 | GL_ARB_internalformat_query 2 | http://www.opengl.org/registry/specs/ARB/internalformat_query.txt 3 | GL_ARB_internalformat_query 4 | GL_NUM_SAMPLE_COUNTS 0x9380 5 | void glGetInternalformativ (GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint* params) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_map_buffer_alignment: -------------------------------------------------------------------------------- 1 | GL_ARB_map_buffer_alignment 2 | http://www.opengl.org/registry/specs/ARB/map_buffer_alignment.txt 3 | GL_ARB_map_buffer_alignment 4 | GL_MIN_MAP_BUFFER_ALIGNMENT 0x90BC 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_map_buffer_range: -------------------------------------------------------------------------------- 1 | GL_ARB_map_buffer_range 2 | http://www.opengl.org/registry/specs/ARB/map_buffer_range.txt 3 | GL_ARB_map_buffer_range 4 | GL_MAP_READ_BIT 0x0001 5 | GL_MAP_WRITE_BIT 0x0002 6 | GL_MAP_INVALIDATE_RANGE_BIT 0x0004 7 | GL_MAP_INVALIDATE_BUFFER_BIT 0x0008 8 | GL_MAP_FLUSH_EXPLICIT_BIT 0x0010 9 | GL_MAP_UNSYNCHRONIZED_BIT 0x0020 10 | void glFlushMappedBufferRange (GLenum target, GLintptr offset, GLsizeiptr length) 11 | GLvoid * glMapBufferRange (GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access) 12 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_multi_draw_indirect: -------------------------------------------------------------------------------- 1 | GL_ARB_multi_draw_indirect 2 | http://www.opengl.org/registry/specs/ARB/multi_draw_indirect.txt 3 | GL_ARB_multi_draw_indirect 4 | void glMultiDrawArraysIndirect (GLenum mode, const void* indirect, GLsizei primcount, GLsizei stride) 5 | void glMultiDrawElementsIndirect (GLenum mode, GLenum type, const void* indirect, GLsizei primcount, GLsizei stride) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_multisample: -------------------------------------------------------------------------------- 1 | GL_ARB_multisample 2 | http://www.opengl.org/registry/specs/ARB/multisample.txt 3 | GL_ARB_multisample 4 | GL_MULTISAMPLE_ARB 0x809D 5 | GL_SAMPLE_ALPHA_TO_COVERAGE_ARB 0x809E 6 | GL_SAMPLE_ALPHA_TO_ONE_ARB 0x809F 7 | GL_SAMPLE_COVERAGE_ARB 0x80A0 8 | GL_SAMPLE_BUFFERS_ARB 0x80A8 9 | GL_SAMPLES_ARB 0x80A9 10 | GL_SAMPLE_COVERAGE_VALUE_ARB 0x80AA 11 | GL_SAMPLE_COVERAGE_INVERT_ARB 0x80AB 12 | GL_MULTISAMPLE_BIT_ARB 0x20000000 13 | void glSampleCoverageARB (GLclampf value, GLboolean invert) 14 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_occlusion_query2: -------------------------------------------------------------------------------- 1 | GL_ARB_occlusion_query2 2 | http://www.opengl.org/registry/specs/ARB/occlusion_query2.txt 3 | GL_ARB_occlusion_query2 4 | GL_ANY_SAMPLES_PASSED 0x8C2F 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_pixel_buffer_object: -------------------------------------------------------------------------------- 1 | GL_ARB_pixel_buffer_object 2 | http://www.opengl.org/registry/specs/ARB/pixel_buffer_object.txt 3 | GL_ARB_pixel_buffer_object 4 | GL_PIXEL_PACK_BUFFER_ARB 0x88EB 5 | GL_PIXEL_UNPACK_BUFFER_ARB 0x88EC 6 | GL_PIXEL_PACK_BUFFER_BINDING_ARB 0x88ED 7 | GL_PIXEL_UNPACK_BUFFER_BINDING_ARB 0x88EF 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_point_parameters: -------------------------------------------------------------------------------- 1 | GL_ARB_point_parameters 2 | http://www.opengl.org/registry/specs/ARB/point_parameters.txt 3 | GL_ARB_point_parameters 4 | GL_POINT_SIZE_MIN_ARB 0x8126 5 | GL_POINT_SIZE_MAX_ARB 0x8127 6 | GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128 7 | GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129 8 | void glPointParameterfARB (GLenum pname, GLfloat param) 9 | void glPointParameterfvARB (GLenum pname, const GLfloat* params) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_point_sprite: -------------------------------------------------------------------------------- 1 | GL_ARB_point_sprite 2 | http://www.opengl.org/registry/specs/ARB/point_sprite.txt 3 | GL_ARB_point_sprite 4 | GL_POINT_SPRITE_ARB 0x8861 5 | GL_COORD_REPLACE_ARB 0x8862 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_provoking_vertex: -------------------------------------------------------------------------------- 1 | GL_ARB_provoking_vertex 2 | http://www.opengl.org/registry/specs/ARB/provoking_vertex.txt 3 | GL_ARB_provoking_vertex 4 | GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION 0x8E4C 5 | GL_FIRST_VERTEX_CONVENTION 0x8E4D 6 | GL_LAST_VERTEX_CONVENTION 0x8E4E 7 | GL_PROVOKING_VERTEX 0x8E4F 8 | void glProvokingVertex (GLenum mode) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_robust_buffer_access_behavior: -------------------------------------------------------------------------------- 1 | GL_ARB_robust_buffer_access_behavior 2 | http://www.opengl.org/registry/specs/ARB/robust_buffer_access_behavior.txt 3 | GL_ARB_robust_buffer_access_behavior 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_robustness_application_isolation: -------------------------------------------------------------------------------- 1 | GL_ARB_robustness_application_isolation 2 | http://www.opengl.org/registry/specs/ARB/robustness_isolation.txt 3 | GL_ARB_robustness_application_isolation 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_robustness_share_group_isolation: -------------------------------------------------------------------------------- 1 | GL_ARB_robustness_share_group_isolation 2 | http://www.opengl.org/registry/specs/ARB/robustness_isolation.txt 3 | GL_ARB_robustness_share_group_isolation 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_sample_shading: -------------------------------------------------------------------------------- 1 | GL_ARB_sample_shading 2 | http://www.opengl.org/registry/specs/ARB/sample_shading.txt 3 | GL_ARB_sample_shading 4 | GL_SAMPLE_SHADING_ARB 0x8C36 5 | GL_MIN_SAMPLE_SHADING_VALUE_ARB 0x8C37 6 | void glMinSampleShadingARB (GLclampf value) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_seamless_cube_map: -------------------------------------------------------------------------------- 1 | GL_ARB_seamless_cube_map 2 | http://www.opengl.org/registry/specs/ARB/seamless_cube_map.txt 3 | GL_ARB_seamless_cube_map 4 | GL_TEXTURE_CUBE_MAP_SEAMLESS 0x884F 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_shader_bit_encoding: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_bit_encoding 2 | http://www.opengl.org/registry/specs/ARB/shader_bit_encoding.txt 3 | GL_ARB_shader_bit_encoding 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_shader_image_size: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_image_size 2 | http://www.opengl.org/registry/specs/ARB/shader_image_size.txt 3 | GL_ARB_shader_image_size 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_shader_precision: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_precision 2 | http://www.opengl.org/registry/specs/ARB/shader_precision.txt 3 | GL_ARB_shader_precision 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_shader_stencil_export: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_stencil_export 2 | http://www.opengl.org/registry/specs/ARB/shader_stencil_export.txt 3 | GL_ARB_shader_stencil_export 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_shader_texture_lod: -------------------------------------------------------------------------------- 1 | GL_ARB_shader_texture_lod 2 | http://www.opengl.org/registry/specs/ARB/shader_texture_lod.txt 3 | GL_ARB_shader_texture_lod 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_shading_language_100: -------------------------------------------------------------------------------- 1 | GL_ARB_shading_language_100 2 | http://www.opengl.org/registry/specs/ARB/shading_language_100.txt 3 | GL_ARB_shading_language_100 4 | GL_SHADING_LANGUAGE_VERSION_ARB 0x8B8C 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_shading_language_420pack: -------------------------------------------------------------------------------- 1 | GL_ARB_shading_language_420pack 2 | http://www.opengl.org/registry/specs/ARB/shading_language_420pack.txt 3 | GL_ARB_shading_language_420pack 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_shading_language_packing: -------------------------------------------------------------------------------- 1 | GL_ARB_shading_language_packing 2 | http://www.opengl.org/registry/specs/ARB/shading_language_packing.txt 3 | GL_ARB_shading_language_packing 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_shadow: -------------------------------------------------------------------------------- 1 | GL_ARB_shadow 2 | http://www.opengl.org/registry/specs/ARB/shadow.txt 3 | GL_ARB_shadow 4 | GL_TEXTURE_COMPARE_MODE_ARB 0x884C 5 | GL_TEXTURE_COMPARE_FUNC_ARB 0x884D 6 | GL_COMPARE_R_TO_TEXTURE_ARB 0x884E 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_shadow_ambient: -------------------------------------------------------------------------------- 1 | GL_ARB_shadow_ambient 2 | http://www.opengl.org/registry/specs/ARB/shadow_ambient.txt 3 | GL_ARB_shadow_ambient 4 | GL_TEXTURE_COMPARE_FAIL_VALUE_ARB 0x80BF 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_stencil_texturing: -------------------------------------------------------------------------------- 1 | GL_ARB_stencil_texturing 2 | http://www.opengl.org/registry/specs/ARB/stencil_texturing.txt 3 | GL_ARB_stencil_texturing 4 | GL_DEPTH_STENCIL_TEXTURE_MODE 0x90EA 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_border_clamp: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_border_clamp 2 | http://www.opengl.org/registry/specs/ARB/texture_border_clamp.txt 3 | GL_ARB_texture_border_clamp 4 | GL_CLAMP_TO_BORDER_ARB 0x812D 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_buffer_object: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_buffer_object 2 | http://www.opengl.org/registry/specs/ARB/texture_buffer_object.txt 3 | GL_ARB_texture_buffer_object 4 | GL_TEXTURE_BUFFER_ARB 0x8C2A 5 | GL_MAX_TEXTURE_BUFFER_SIZE_ARB 0x8C2B 6 | GL_TEXTURE_BINDING_BUFFER_ARB 0x8C2C 7 | GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB 0x8C2D 8 | GL_TEXTURE_BUFFER_FORMAT_ARB 0x8C2E 9 | void glTexBufferARB (GLenum target, GLenum internalformat, GLuint buffer) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_buffer_object_rgb32: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_buffer_object_rgb32 2 | http://www.opengl.org/registry/specs/ARB/texture_buffer_object_rgb32.txt 3 | GL_ARB_texture_buffer_object_rgb32 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_buffer_range: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_buffer_range 2 | http://www.opengl.org/registry/specs/ARB/texture_buffer_range.txt 3 | GL_ARB_texture_buffer_range 4 | GL_TEXTURE_BUFFER_OFFSET 0x919D 5 | GL_TEXTURE_BUFFER_SIZE 0x919E 6 | GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT 0x919F 7 | void glTexBufferRange (GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size) 8 | void glTextureBufferRangeEXT (GLuint texture, GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_compression_bptc: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_compression_bptc 2 | http://www.opengl.org/registry/specs/ARB/texture_compression_bptc.txt 3 | GL_ARB_texture_compression_bptc 4 | GL_COMPRESSED_RGBA_BPTC_UNORM_ARB 0x8E8C 5 | GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB 0x8E8D 6 | GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB 0x8E8E 7 | GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB 0x8E8F 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_compression_rgtc: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_compression_rgtc 2 | http://www.opengl.org/registry/specs/ARB/texture_compression_rgtc.txt 3 | GL_ARB_texture_compression_rgtc 4 | GL_COMPRESSED_RED_RGTC1 0x8DBB 5 | GL_COMPRESSED_SIGNED_RED_RGTC1 0x8DBC 6 | GL_COMPRESSED_RG_RGTC2 0x8DBD 7 | GL_COMPRESSED_SIGNED_RG_RGTC2 0x8DBE 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_cube_map_array: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_cube_map_array 2 | http://www.opengl.org/registry/specs/ARB/texture_cube_map_array.txt 3 | GL_ARB_texture_cube_map_array 4 | GL_TEXTURE_CUBE_MAP_ARRAY_ARB 0x9009 5 | GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB 0x900A 6 | GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB 0x900B 7 | GL_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900C 8 | GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB 0x900D 9 | GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900E 10 | GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB 0x900F 11 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_env_add: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_env_add 2 | http://www.opengl.org/registry/specs/ARB/texture_env_add.txt 3 | GL_ARB_texture_env_add 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_env_crossbar: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_env_crossbar 2 | http://www.opengl.org/registry/specs/ARB/texture_env_crossbar.txt 3 | GL_ARB_texture_env_crossbar 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_env_dot3: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_env_dot3 2 | http://www.opengl.org/registry/specs/ARB/texture_env_dot3.txt 3 | GL_ARB_texture_env_dot3 4 | GL_DOT3_RGB_ARB 0x86AE 5 | GL_DOT3_RGBA_ARB 0x86AF 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_gather: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_gather 2 | http://www.opengl.org/registry/specs/ARB/texture_gather.txt 3 | GL_ARB_texture_gather 4 | GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5E 5 | GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB 0x8E5F 6 | GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB 0x8F9F 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_mirrored_repeat: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_mirrored_repeat 2 | http://www.opengl.org/registry/specs/ARB/texture_mirrored_repeat.txt 3 | GL_ARB_texture_mirrored_repeat 4 | GL_MIRRORED_REPEAT_ARB 0x8370 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_non_power_of_two: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_non_power_of_two 2 | http://www.opengl.org/registry/specs/ARB/texture_non_power_of_two.txt 3 | GL_ARB_texture_non_power_of_two 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_query_levels: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_query_levels 2 | http://www.opengl.org/registry/specs/ARB/texture_query_levels.txt 3 | GL_ARB_texture_query_levels 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_query_lod: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_query_lod 2 | http://www.opengl.org/registry/specs/ARB/texture_query_lod.txt 3 | GL_ARB_texture_query_lod 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_rectangle: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_rectangle 2 | http://www.opengl.org/registry/specs/ARB/texture_rectangle.txt 3 | GL_ARB_texture_rectangle 4 | GL_TEXTURE_RECTANGLE_ARB 0x84F5 5 | GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6 6 | GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7 7 | GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8 8 | GL_SAMPLER_2D_RECT_ARB 0x8B63 9 | GL_SAMPLER_2D_RECT_SHADOW_ARB 0x8B64 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_rgb10_a2ui: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_rgb10_a2ui 2 | http://www.opengl.org/registry/specs/ARB/texture_rgb10_a2ui.txt 3 | GL_ARB_texture_rgb10_a2ui 4 | GL_RGB10_A2UI 0x906F 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_swizzle: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_swizzle 2 | http://www.opengl.org/registry/specs/ARB/texture_swizzle.txt 3 | GL_ARB_texture_swizzle 4 | GL_TEXTURE_SWIZZLE_R 0x8E42 5 | GL_TEXTURE_SWIZZLE_G 0x8E43 6 | GL_TEXTURE_SWIZZLE_B 0x8E44 7 | GL_TEXTURE_SWIZZLE_A 0x8E45 8 | GL_TEXTURE_SWIZZLE_RGBA 0x8E46 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_texture_view: -------------------------------------------------------------------------------- 1 | GL_ARB_texture_view 2 | http://www.opengl.org/registry/specs/ARB/texture_view.txt 3 | GL_ARB_texture_view 4 | GL_TEXTURE_VIEW_MIN_LEVEL 0x82DB 5 | GL_TEXTURE_VIEW_NUM_LEVELS 0x82DC 6 | GL_TEXTURE_VIEW_MIN_LAYER 0x82DD 7 | GL_TEXTURE_VIEW_NUM_LAYERS 0x82DE 8 | GL_TEXTURE_IMMUTABLE_LEVELS 0x82DF 9 | void glTextureView (GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_timer_query: -------------------------------------------------------------------------------- 1 | GL_ARB_timer_query 2 | http://www.opengl.org/registry/specs/ARB/timer_query.txt 3 | GL_ARB_timer_query 4 | GL_TIME_ELAPSED 0x88BF 5 | GL_TIMESTAMP 0x8E28 6 | void glGetQueryObjecti64v (GLuint id, GLenum pname, GLint64* params) 7 | void glGetQueryObjectui64v (GLuint id, GLenum pname, GLuint64* params) 8 | void glQueryCounter (GLuint id, GLenum target) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_transform_feedback3: -------------------------------------------------------------------------------- 1 | GL_ARB_transform_feedback3 2 | http://www.opengl.org/registry/specs/ARB/transform_feedback3.txt 3 | GL_ARB_transform_feedback3 4 | GL_MAX_TRANSFORM_FEEDBACK_BUFFERS 0x8E70 5 | GL_MAX_VERTEX_STREAMS 0x8E71 6 | void glBeginQueryIndexed (GLenum target, GLuint index, GLuint id) 7 | void glDrawTransformFeedbackStream (GLenum mode, GLuint id, GLuint stream) 8 | void glEndQueryIndexed (GLenum target, GLuint index) 9 | void glGetQueryIndexediv (GLenum target, GLuint index, GLenum pname, GLint* params) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_transform_feedback_instanced: -------------------------------------------------------------------------------- 1 | GL_ARB_transform_feedback_instanced 2 | http://www.opengl.org/registry/specs/ARB/transform_feedback_instanced.txt 3 | GL_ARB_transform_feedback_instanced 4 | void glDrawTransformFeedbackInstanced (GLenum mode, GLuint id, GLsizei primcount) 5 | void glDrawTransformFeedbackStreamInstanced (GLenum mode, GLuint id, GLuint stream, GLsizei primcount) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_transpose_matrix: -------------------------------------------------------------------------------- 1 | GL_ARB_transpose_matrix 2 | http://www.opengl.org/registry/specs/ARB/transpose_matrix.txt 3 | GL_ARB_transpose_matrix 4 | GL_TRANSPOSE_MODELVIEW_MATRIX_ARB 0x84E3 5 | GL_TRANSPOSE_PROJECTION_MATRIX_ARB 0x84E4 6 | GL_TRANSPOSE_TEXTURE_MATRIX_ARB 0x84E5 7 | GL_TRANSPOSE_COLOR_MATRIX_ARB 0x84E6 8 | void glLoadTransposeMatrixfARB (GLfloat m[16]) 9 | void glLoadTransposeMatrixdARB (GLdouble m[16]) 10 | void glMultTransposeMatrixfARB (GLfloat m[16]) 11 | void glMultTransposeMatrixdARB (GLdouble m[16]) 12 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_vertex_array_bgra: -------------------------------------------------------------------------------- 1 | GL_ARB_vertex_array_bgra 2 | http://www.opengl.org/registry/specs/ARB/vertex_array_bgra.txt 3 | GL_ARB_vertex_array_bgra 4 | GL_BGRA 0x80E1 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ARB_vertex_array_object: -------------------------------------------------------------------------------- 1 | GL_ARB_vertex_array_object 2 | http://www.opengl.org/registry/specs/ARB/vertex_array_object.txt 3 | GL_ARB_vertex_array_object 4 | GL_VERTEX_ARRAY_BINDING 0x85B5 5 | void glBindVertexArray (GLuint array) 6 | void glDeleteVertexArrays (GLsizei n, const GLuint* arrays) 7 | void glGenVertexArrays (GLsizei n, GLuint* arrays) 8 | GLboolean glIsVertexArray (GLuint array) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATIX_point_sprites: -------------------------------------------------------------------------------- 1 | GL_ATIX_point_sprites 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_point_sprites 4 | GL_TEXTURE_POINT_MODE_ATIX 0x60B0 5 | GL_TEXTURE_POINT_ONE_COORD_ATIX 0x60B1 6 | GL_TEXTURE_POINT_SPRITE_ATIX 0x60B2 7 | GL_POINT_SPRITE_CULL_MODE_ATIX 0x60B3 8 | GL_POINT_SPRITE_CULL_CENTER_ATIX 0x60B4 9 | GL_POINT_SPRITE_CULL_CLIP_ATIX 0x60B5 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATIX_texture_env_combine3: -------------------------------------------------------------------------------- 1 | GL_ATIX_texture_env_combine3 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_texture_env_combine3 4 | GL_MODULATE_ADD_ATIX 0x8744 5 | GL_MODULATE_SIGNED_ADD_ATIX 0x8745 6 | GL_MODULATE_SUBTRACT_ATIX 0x8746 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATIX_texture_env_route: -------------------------------------------------------------------------------- 1 | GL_ATIX_texture_env_route 2 | http://www.ati.com/developer/sdk/RadeonSDK/Html/Info/ATIX_texture_env_route.txt 3 | GL_ATIX_texture_env_route 4 | GL_SECONDARY_COLOR_ATIX 0x8747 5 | GL_TEXTURE_OUTPUT_RGB_ATIX 0x8748 6 | GL_TEXTURE_OUTPUT_ALPHA_ATIX 0x8749 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATIX_vertex_shader_output_point_size: -------------------------------------------------------------------------------- 1 | GL_ATIX_vertex_shader_output_point_size 2 | http://www.ati.com/developer/atiopengl.pdf 3 | GL_ATIX_vertex_shader_output_point_size 4 | GL_OUTPUT_POINT_SIZE_ATIX 0x610E 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_element_array: -------------------------------------------------------------------------------- 1 | GL_ATI_element_array 2 | http://www.opengl.org/registry/specs/ATI/element_array.txt 3 | GL_ATI_element_array 4 | GL_ELEMENT_ARRAY_ATI 0x8768 5 | GL_ELEMENT_ARRAY_TYPE_ATI 0x8769 6 | GL_ELEMENT_ARRAY_POINTER_ATI 0x876A 7 | void glDrawElementArrayATI (GLenum mode, GLsizei count) 8 | void glDrawRangeElementArrayATI (GLenum mode, GLuint start, GLuint end, GLsizei count) 9 | void glElementPointerATI (GLenum type, const void* pointer) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_map_object_buffer: -------------------------------------------------------------------------------- 1 | GL_ATI_map_object_buffer 2 | http://www.opengl.org/registry/specs/ATI/map_object_buffer.txt 3 | GL_ATI_map_object_buffer 4 | GLvoid * glMapObjectBufferATI (GLuint buffer) 5 | void glUnmapObjectBufferATI (GLuint buffer) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_meminfo: -------------------------------------------------------------------------------- 1 | GL_ATI_meminfo 2 | http://www.opengl.org/registry/specs/ATI/meminfo.txt 3 | GL_ATI_meminfo 4 | GL_VBO_FREE_MEMORY_ATI 0x87FB 5 | GL_TEXTURE_FREE_MEMORY_ATI 0x87FC 6 | GL_RENDERBUFFER_FREE_MEMORY_ATI 0x87FD 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_separate_stencil: -------------------------------------------------------------------------------- 1 | GL_ATI_separate_stencil 2 | http://www.opengl.org/registry/specs/ATI/separate_stencil.txt 3 | GL_ATI_separate_stencil 4 | GL_STENCIL_BACK_FUNC_ATI 0x8800 5 | GL_STENCIL_BACK_FAIL_ATI 0x8801 6 | GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI 0x8802 7 | GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI 0x8803 8 | void glStencilOpSeparateATI (GLenum face, GLenum sfail, GLenum dpfail, GLenum dppass) 9 | void glStencilFuncSeparateATI (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_shader_texture_lod: -------------------------------------------------------------------------------- 1 | GL_ATI_shader_texture_lod 2 | 3 | GL_ATI_shader_texture_lod 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_text_fragment_shader: -------------------------------------------------------------------------------- 1 | GL_ATI_text_fragment_shader 2 | http://www.opengl.org/registry/specs/ATI/text_fragment_shader.txt 3 | GL_ATI_text_fragment_shader 4 | GL_TEXT_FRAGMENT_SHADER_ATI 0x8200 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_texture_compression_3dc: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_compression_3dc 2 | 3 | GL_ATI_texture_compression_3dc 4 | GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI 0x8837 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_texture_env_combine3: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_env_combine3 2 | http://www.opengl.org/registry/specs/ATI/texture_env_combine3.txt 3 | GL_ATI_texture_env_combine3 4 | GL_MODULATE_ADD_ATI 0x8744 5 | GL_MODULATE_SIGNED_ADD_ATI 0x8745 6 | GL_MODULATE_SUBTRACT_ATI 0x8746 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_texture_float: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_float 2 | http://www.opengl.org/registry/specs/ATI/texture_float.txt 3 | GL_ATI_texture_float 4 | GL_RGBA_FLOAT32_ATI 0x8814 5 | GL_RGB_FLOAT32_ATI 0x8815 6 | GL_ALPHA_FLOAT32_ATI 0x8816 7 | GL_INTENSITY_FLOAT32_ATI 0x8817 8 | GL_LUMINANCE_FLOAT32_ATI 0x8818 9 | GL_LUMINANCE_ALPHA_FLOAT32_ATI 0x8819 10 | GL_RGBA_FLOAT16_ATI 0x881A 11 | GL_RGB_FLOAT16_ATI 0x881B 12 | GL_ALPHA_FLOAT16_ATI 0x881C 13 | GL_INTENSITY_FLOAT16_ATI 0x881D 14 | GL_LUMINANCE_FLOAT16_ATI 0x881E 15 | GL_LUMINANCE_ALPHA_FLOAT16_ATI 0x881F 16 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_texture_mirror_once: -------------------------------------------------------------------------------- 1 | GL_ATI_texture_mirror_once 2 | http://www.opengl.org/registry/specs/ATI/texture_mirror_once.txt 3 | GL_ATI_texture_mirror_once 4 | GL_MIRROR_CLAMP_ATI 0x8742 5 | GL_MIRROR_CLAMP_TO_EDGE_ATI 0x8743 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_ATI_vertex_attrib_array_object: -------------------------------------------------------------------------------- 1 | GL_ATI_vertex_attrib_array_object 2 | http://www.opengl.org/registry/specs/ATI/vertex_attrib_array_object.txt 3 | GL_ATI_vertex_attrib_array_object 4 | void glGetVertexAttribArrayObjectfvATI (GLuint index, GLenum pname, GLfloat* params) 5 | void glGetVertexAttribArrayObjectivATI (GLuint index, GLenum pname, GLint* params) 6 | void glVertexAttribArrayObjectATI (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, GLuint buffer, GLuint offset) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_422_pixels: -------------------------------------------------------------------------------- 1 | GL_EXT_422_pixels 2 | http://www.opengl.org/registry/specs/EXT/422_pixels.txt 3 | GL_EXT_422_pixels 4 | GL_422_EXT 0x80CC 5 | GL_422_REV_EXT 0x80CD 6 | GL_422_AVERAGE_EXT 0x80CE 7 | GL_422_REV_AVERAGE_EXT 0x80CF 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_Cg_shader: -------------------------------------------------------------------------------- 1 | GL_EXT_Cg_shader 2 | http://download.nvidia.com/developer/GLSL/GLSL%20Release%20Notes%20for%20Release%2060.pdf 3 | GL_EXT_Cg_shader 4 | GL_CG_VERTEX_SHADER_EXT 0x890E 5 | GL_CG_FRAGMENT_SHADER_EXT 0x890F 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_abgr: -------------------------------------------------------------------------------- 1 | GL_EXT_abgr 2 | http://www.opengl.org/registry/specs/EXT/abgr.txt 3 | GL_EXT_abgr 4 | GL_ABGR_EXT 0x8000 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_bgra: -------------------------------------------------------------------------------- 1 | GL_EXT_bgra 2 | http://www.opengl.org/registry/specs/EXT/bgra.txt 3 | GL_EXT_bgra 4 | GL_BGR_EXT 0x80E0 5 | GL_BGRA_EXT 0x80E1 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_blend_color: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_color 2 | http://www.opengl.org/registry/specs/EXT/blend_color.txt 3 | GL_EXT_blend_color 4 | GL_CONSTANT_COLOR_EXT 0x8001 5 | GL_ONE_MINUS_CONSTANT_COLOR_EXT 0x8002 6 | GL_CONSTANT_ALPHA_EXT 0x8003 7 | GL_ONE_MINUS_CONSTANT_ALPHA_EXT 0x8004 8 | GL_BLEND_COLOR_EXT 0x8005 9 | void glBlendColorEXT (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_blend_equation_separate: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_equation_separate 2 | http://www.opengl.org/registry/specs/EXT/blend_equation_separate.txt 3 | GL_EXT_blend_equation_separate 4 | GL_BLEND_EQUATION_RGB_EXT 0x8009 5 | GL_BLEND_EQUATION_ALPHA_EXT 0x883D 6 | void glBlendEquationSeparateEXT (GLenum modeRGB, GLenum modeAlpha) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_blend_func_separate: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_func_separate 2 | http://www.opengl.org/registry/specs/EXT/blend_func_separate.txt 3 | GL_EXT_blend_func_separate 4 | GL_BLEND_DST_RGB_EXT 0x80C8 5 | GL_BLEND_SRC_RGB_EXT 0x80C9 6 | GL_BLEND_DST_ALPHA_EXT 0x80CA 7 | GL_BLEND_SRC_ALPHA_EXT 0x80CB 8 | void glBlendFuncSeparateEXT (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_blend_logic_op: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_logic_op 2 | http://www.opengl.org/registry/specs/EXT/blend_logic_op.txt 3 | GL_EXT_blend_logic_op 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_blend_minmax: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_minmax 2 | http://www.opengl.org/registry/specs/EXT/blend_minmax.txt 3 | GL_EXT_blend_minmax 4 | GL_FUNC_ADD_EXT 0x8006 5 | GL_MIN_EXT 0x8007 6 | GL_MAX_EXT 0x8008 7 | GL_BLEND_EQUATION_EXT 0x8009 8 | void glBlendEquationEXT (GLenum mode) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_blend_subtract: -------------------------------------------------------------------------------- 1 | GL_EXT_blend_subtract 2 | http://www.opengl.org/registry/specs/EXT/blend_subtract.txt 3 | GL_EXT_blend_subtract 4 | GL_FUNC_SUBTRACT_EXT 0x800A 5 | GL_FUNC_REVERSE_SUBTRACT_EXT 0x800B 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_clip_volume_hint: -------------------------------------------------------------------------------- 1 | GL_EXT_clip_volume_hint 2 | http://www.opengl.org/registry/specs/EXT/clip_volume_hint.txt 3 | GL_EXT_clip_volume_hint 4 | GL_CLIP_VOLUME_CLIPPING_HINT_EXT 0x80F0 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_cmyka: -------------------------------------------------------------------------------- 1 | GL_EXT_cmyka 2 | http://www.opengl.org/registry/specs/EXT/cmyka.txt 3 | GL_EXT_cmyka 4 | GL_CMYK_EXT 0x800C 5 | GL_CMYKA_EXT 0x800D 6 | GL_PACK_CMYK_HINT_EXT 0x800E 7 | GL_UNPACK_CMYK_HINT_EXT 0x800F 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_color_subtable: -------------------------------------------------------------------------------- 1 | GL_EXT_color_subtable 2 | http://www.opengl.org/registry/specs/EXT/color_subtable.txt 3 | GL_EXT_color_subtable 4 | void glColorSubTableEXT (GLenum target, GLsizei start, GLsizei count, GLenum format, GLenum type, const void* data) 5 | void glCopyColorSubTableEXT (GLenum target, GLsizei start, GLint x, GLint y, GLsizei width) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_compiled_vertex_array: -------------------------------------------------------------------------------- 1 | GL_EXT_compiled_vertex_array 2 | http://www.opengl.org/registry/specs/EXT/compiled_vertex_array.txt 3 | GL_EXT_compiled_vertex_array 4 | GL_ARRAY_ELEMENT_LOCK_FIRST_EXT 0x81A8 5 | GL_ARRAY_ELEMENT_LOCK_COUNT_EXT 0x81A9 6 | void glLockArraysEXT (GLint first, GLsizei count) 7 | void glUnlockArraysEXT (void) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_cull_vertex: -------------------------------------------------------------------------------- 1 | GL_EXT_cull_vertex 2 | http://www.opengl.org/registry/specs/EXT/cull_vertex.txt 3 | GL_EXT_cull_vertex 4 | GL_CULL_VERTEX_EXT 0x81AA 5 | GL_CULL_VERTEX_EYE_POSITION_EXT 0x81AB 6 | GL_CULL_VERTEX_OBJECT_POSITION_EXT 0x81AC 7 | void glCullParameterdvEXT (GLenum pname, GLdouble* params) 8 | void glCullParameterfvEXT (GLenum pname, GLfloat* params) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_debug_marker: -------------------------------------------------------------------------------- 1 | GL_EXT_debug_marker 2 | http://www.khronos.org/registry/gles/extensions/EXT/EXT_debug_marker.txt 3 | GL_EXT_debug_marker 4 | void glInsertEventMarkerEXT (GLsizei length, const GLchar* marker) 5 | void glPushGroupMarkerEXT (GLsizei length, const GLchar* marker) 6 | void glPopGroupMarkerEXT (void) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_depth_bounds_test: -------------------------------------------------------------------------------- 1 | GL_EXT_depth_bounds_test 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_depth_bounds_test.txt 3 | GL_EXT_depth_bounds_test 4 | GL_DEPTH_BOUNDS_TEST_EXT 0x8890 5 | GL_DEPTH_BOUNDS_EXT 0x8891 6 | void glDepthBoundsEXT (GLclampd zmin, GLclampd zmax) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_draw_buffers2: -------------------------------------------------------------------------------- 1 | GL_EXT_draw_buffers2 2 | http://www.opengl.org/registry/specs/EXT/draw_buffers2.txt 3 | GL_EXT_draw_buffers2 4 | void glColorMaskIndexedEXT (GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a) 5 | void glDisableIndexedEXT (GLenum target, GLuint index) 6 | void glEnableIndexedEXT (GLenum target, GLuint index) 7 | void glGetBooleanIndexedvEXT (GLenum value, GLuint index, GLboolean* data) 8 | void glGetIntegerIndexedvEXT (GLenum value, GLuint index, GLint* data) 9 | GLboolean glIsEnabledIndexedEXT (GLenum target, GLuint index) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_draw_instanced: -------------------------------------------------------------------------------- 1 | GL_EXT_draw_instanced 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_draw_instanced.txt 3 | GL_EXT_draw_instanced 4 | void glDrawArraysInstancedEXT (GLenum mode, GLint start, GLsizei count, GLsizei primcount) 5 | void glDrawElementsInstancedEXT (GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei primcount) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_draw_range_elements: -------------------------------------------------------------------------------- 1 | GL_EXT_draw_range_elements 2 | http://oss.sgi.com/projects/ogl-sample/registry/EXT/draw_range_elements.txt 3 | GL_EXT_draw_range_elements 4 | GL_MAX_ELEMENTS_VERTICES_EXT 0x80E8 5 | GL_MAX_ELEMENTS_INDICES_EXT 0x80E9 6 | void glDrawRangeElementsEXT (GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_framebuffer_blit: -------------------------------------------------------------------------------- 1 | GL_EXT_framebuffer_blit 2 | http://www.opengl.org/registry/specs/EXT/framebuffer_blit.txt 3 | GL_EXT_framebuffer_blit 4 | GL_DRAW_FRAMEBUFFER_BINDING_EXT 0x8CA6 5 | GL_READ_FRAMEBUFFER_EXT 0x8CA8 6 | GL_DRAW_FRAMEBUFFER_EXT 0x8CA9 7 | GL_READ_FRAMEBUFFER_BINDING_EXT 0x8CAA 8 | void glBlitFramebufferEXT (GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_framebuffer_multisample: -------------------------------------------------------------------------------- 1 | GL_EXT_framebuffer_multisample 2 | http://www.opengl.org/registry/specs/EXT/framebuffer_multisample.txt 3 | GL_EXT_framebuffer_multisample 4 | GL_RENDERBUFFER_SAMPLES_EXT 0x8CAB 5 | GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 6 | GL_MAX_SAMPLES_EXT 0x8D57 7 | void glRenderbufferStorageMultisampleEXT (GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) 8 | GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT 0x8D56 9 | GL_MAX_SAMPLES_EXT 0x8D57 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_framebuffer_multisample_blit_scaled: -------------------------------------------------------------------------------- 1 | GL_EXT_framebuffer_multisample_blit_scaled 2 | http://www.opengl.org/registry/specs/EXT/framebuffer_multisample_blit_scaled.txt 3 | GL_EXT_framebuffer_multisample_blit_scaled 4 | GL_SCALED_RESOLVE_FASTEST_EXT 0x90BA 5 | GL_SCALED_RESOLVE_NICEST_EXT 0x90BB 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | GL_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | GL_EXT_framebuffer_sRGB 4 | GL_FRAMEBUFFER_SRGB_EXT 0x8DB9 5 | GL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x8DBA 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_gpu_program_parameters: -------------------------------------------------------------------------------- 1 | GL_EXT_gpu_program_parameters 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_gpu_program_parameters.txt 3 | GL_EXT_gpu_program_parameters 4 | void glProgramEnvParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat* params) 5 | void glProgramLocalParameters4fvEXT (GLenum target, GLuint index, GLsizei count, const GLfloat* params) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_index_array_formats: -------------------------------------------------------------------------------- 1 | GL_EXT_index_array_formats 2 | http://www.opengl.org/registry/specs/EXT/index_array_formats.txt 3 | GL_EXT_index_array_formats 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_index_func: -------------------------------------------------------------------------------- 1 | GL_EXT_index_func 2 | http://www.opengl.org/registry/specs/EXT/index_func.txt 3 | GL_EXT_index_func 4 | void glIndexFuncEXT (GLenum func, GLfloat ref) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_index_material: -------------------------------------------------------------------------------- 1 | GL_EXT_index_material 2 | http://www.opengl.org/registry/specs/EXT/index_material.txt 3 | GL_EXT_index_material 4 | void glIndexMaterialEXT (GLenum face, GLenum mode) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_index_texture: -------------------------------------------------------------------------------- 1 | GL_EXT_index_texture 2 | http://www.opengl.org/registry/specs/EXT/index_texture.txt 3 | GL_EXT_index_texture 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_misc_attribute: -------------------------------------------------------------------------------- 1 | GL_EXT_misc_attribute 2 | http://www.opengl.org/registry/specs/EXT/misc_attribute.txt 3 | GL_EXT_misc_attribute 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_multi_draw_arrays: -------------------------------------------------------------------------------- 1 | GL_EXT_multi_draw_arrays 2 | http://www.opengl.org/registry/specs/EXT/multi_draw_arrays.txt 3 | GL_EXT_multi_draw_arrays 4 | void glMultiDrawArraysEXT (GLenum mode, const GLint* first, const GLsizei *count, GLsizei primcount) 5 | void glMultiDrawElementsEXT (GLenum mode, GLsizei* count, GLenum type, const GLvoid **indices, GLsizei primcount) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_packed_depth_stencil: -------------------------------------------------------------------------------- 1 | GL_EXT_packed_depth_stencil 2 | http://www.opengl.org/registry/specs/EXT/packed_depth_stencil.txt 3 | GL_EXT_packed_depth_stencil 4 | GL_DEPTH_STENCIL_EXT 0x84F9 5 | GL_UNSIGNED_INT_24_8_EXT 0x84FA 6 | GL_DEPTH24_STENCIL8_EXT 0x88F0 7 | GL_TEXTURE_STENCIL_SIZE_EXT 0x88F1 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_packed_float: -------------------------------------------------------------------------------- 1 | GL_EXT_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | GL_EXT_packed_float 4 | GL_R11F_G11F_B10F_EXT 0x8C3A 5 | GL_UNSIGNED_INT_10F_11F_11F_REV_EXT 0x8C3B 6 | GL_RGBA_SIGNED_COMPONENTS_EXT 0x8C3C 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_packed_pixels: -------------------------------------------------------------------------------- 1 | GL_EXT_packed_pixels 2 | http://www.opengl.org/registry/specs/EXT/packed_pixels.txt 3 | GL_EXT_packed_pixels 4 | GL_UNSIGNED_BYTE_3_3_2_EXT 0x8032 5 | GL_UNSIGNED_SHORT_4_4_4_4_EXT 0x8033 6 | GL_UNSIGNED_SHORT_5_5_5_1_EXT 0x8034 7 | GL_UNSIGNED_INT_8_8_8_8_EXT 0x8035 8 | GL_UNSIGNED_INT_10_10_10_2_EXT 0x8036 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_pixel_buffer_object: -------------------------------------------------------------------------------- 1 | GL_EXT_pixel_buffer_object 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_pixel_buffer_object.txt 3 | GL_EXT_pixel_buffer_object 4 | GL_PIXEL_PACK_BUFFER_EXT 0x88EB 5 | GL_PIXEL_UNPACK_BUFFER_EXT 0x88EC 6 | GL_PIXEL_PACK_BUFFER_BINDING_EXT 0x88ED 7 | GL_PIXEL_UNPACK_BUFFER_BINDING_EXT 0x88EF 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_pixel_transform_color_table: -------------------------------------------------------------------------------- 1 | GL_EXT_pixel_transform_color_table 2 | http://www.opengl.org/registry/specs/EXT/pixel_transform_color_table.txt 3 | GL_EXT_pixel_transform_color_table 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_point_parameters: -------------------------------------------------------------------------------- 1 | GL_EXT_point_parameters 2 | http://www.opengl.org/registry/specs/EXT/point_parameters.txt 3 | GL_EXT_point_parameters 4 | GL_POINT_SIZE_MIN_EXT 0x8126 5 | GL_POINT_SIZE_MAX_EXT 0x8127 6 | GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128 7 | GL_DISTANCE_ATTENUATION_EXT 0x8129 8 | void glPointParameterfEXT (GLenum pname, GLfloat param) 9 | void glPointParameterfvEXT (GLenum pname, const GLfloat* params) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_polygon_offset: -------------------------------------------------------------------------------- 1 | GL_EXT_polygon_offset 2 | http://www.opengl.org/registry/specs/EXT/polygon_offset.txt 3 | GL_EXT_polygon_offset 4 | GL_POLYGON_OFFSET_EXT 0x8037 5 | GL_POLYGON_OFFSET_FACTOR_EXT 0x8038 6 | GL_POLYGON_OFFSET_BIAS_EXT 0x8039 7 | void glPolygonOffsetEXT (GLfloat factor, GLfloat bias) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_provoking_vertex: -------------------------------------------------------------------------------- 1 | GL_EXT_provoking_vertex 2 | http://www.opengl.org/registry/specs/EXT/provoking_vertex.txt 3 | GL_EXT_provoking_vertex 4 | GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT 0x8E4C 5 | GL_FIRST_VERTEX_CONVENTION_EXT 0x8E4D 6 | GL_LAST_VERTEX_CONVENTION_EXT 0x8E4E 7 | GL_PROVOKING_VERTEX_EXT 0x8E4F 8 | void glProvokingVertexEXT (GLenum mode) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_rescale_normal: -------------------------------------------------------------------------------- 1 | GL_EXT_rescale_normal 2 | http://www.opengl.org/registry/specs/EXT/rescale_normal.txt 3 | GL_EXT_rescale_normal 4 | GL_RESCALE_NORMAL_EXT 0x803A 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_scene_marker: -------------------------------------------------------------------------------- 1 | GL_EXT_scene_marker 2 | http://www.opengl.org/registry/specs/EXT/scene_marker.txt 3 | GL_EXT_scene_marker 4 | void glBeginSceneEXT (void) 5 | void glEndSceneEXT (void) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_separate_shader_objects: -------------------------------------------------------------------------------- 1 | GL_EXT_separate_shader_objects 2 | http://www.opengl.org/registry/specs/EXT/separate_shader_objects.txt 3 | GL_EXT_separate_shader_objects 4 | GL_ACTIVE_PROGRAM_EXT 0x8B8D 5 | void glActiveProgramEXT (GLuint program) 6 | GLuint glCreateShaderProgramEXT (GLenum type, const GLchar* string) 7 | void glUseShaderProgramEXT (GLenum type, GLuint program) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_separate_specular_color: -------------------------------------------------------------------------------- 1 | GL_EXT_separate_specular_color 2 | http://www.opengl.org/registry/specs/EXT/separate_specular_color.txt 3 | GL_EXT_separate_specular_color 4 | GL_LIGHT_MODEL_COLOR_CONTROL_EXT 0x81F8 5 | GL_SINGLE_COLOR_EXT 0x81F9 6 | GL_SEPARATE_SPECULAR_COLOR_EXT 0x81FA 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_shadow_funcs: -------------------------------------------------------------------------------- 1 | GL_EXT_shadow_funcs 2 | http://www.opengl.org/registry/specs/EXT/shadow_funcs.txt 3 | GL_EXT_shadow_funcs 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_shared_texture_palette: -------------------------------------------------------------------------------- 1 | GL_EXT_shared_texture_palette 2 | http://www.opengl.org/registry/specs/EXT/shared_texture_palette.txt 3 | GL_EXT_shared_texture_palette 4 | GL_SHARED_TEXTURE_PALETTE_EXT 0x81FB 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_stencil_clear_tag: -------------------------------------------------------------------------------- 1 | GL_EXT_stencil_clear_tag 2 | http://www.opengl.org/registry/specs/EXT/stencil_clear_tag.txt 3 | GL_EXT_stencil_clear_tag 4 | GL_STENCIL_TAG_BITS_EXT 0x88F2 5 | GL_STENCIL_CLEAR_TAG_VALUE_EXT 0x88F3 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_stencil_two_side: -------------------------------------------------------------------------------- 1 | GL_EXT_stencil_two_side 2 | http://www.opengl.org/registry/specs/EXT/stencil_two_side.txt 3 | GL_EXT_stencil_two_side 4 | GL_STENCIL_TEST_TWO_SIDE_EXT 0x8910 5 | GL_ACTIVE_STENCIL_FACE_EXT 0x8911 6 | void glActiveStencilFaceEXT (GLenum face) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_stencil_wrap: -------------------------------------------------------------------------------- 1 | GL_EXT_stencil_wrap 2 | http://www.opengl.org/registry/specs/EXT/stencil_wrap.txt 3 | GL_EXT_stencil_wrap 4 | GL_INCR_WRAP_EXT 0x8507 5 | GL_DECR_WRAP_EXT 0x8508 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_buffer_object: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_buffer_object 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_buffer_object.txt 3 | GL_EXT_texture_buffer_object 4 | GL_TEXTURE_BUFFER_EXT 0x8C2A 5 | GL_MAX_TEXTURE_BUFFER_SIZE_EXT 0x8C2B 6 | GL_TEXTURE_BINDING_BUFFER_EXT 0x8C2C 7 | GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT 0x8C2D 8 | GL_TEXTURE_BUFFER_FORMAT_EXT 0x8C2E 9 | void glTexBufferEXT (GLenum target, GLenum internalformat, GLuint buffer) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_compression_dxt1: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_dxt1 2 | http://www.opengl.org/registry/specs/EXT/texture_compression_dxt1.txt 3 | GL_EXT_texture_compression_dxt1 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_compression_latc: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_latc 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_compression_latc.txt 3 | GL_EXT_texture_compression_latc 4 | GL_COMPRESSED_LUMINANCE_LATC1_EXT 0x8C70 5 | GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT 0x8C71 6 | GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT 0x8C72 7 | GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT 0x8C73 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_compression_rgtc: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_rgtc 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_compression_rgtc.txt 3 | GL_EXT_texture_compression_rgtc 4 | GL_COMPRESSED_RED_RGTC1_EXT 0x8DBB 5 | GL_COMPRESSED_SIGNED_RED_RGTC1_EXT 0x8DBC 6 | GL_COMPRESSED_RED_GREEN_RGTC2_EXT 0x8DBD 7 | GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT 0x8DBE 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_compression_s3tc: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_compression_s3tc 2 | http://www.opengl.org/registry/specs/EXT/texture_compression_s3tc.txt 3 | GL_EXT_texture_compression_s3tc 4 | GL_COMPRESSED_RGB_S3TC_DXT1_EXT 0x83F0 5 | GL_COMPRESSED_RGBA_S3TC_DXT1_EXT 0x83F1 6 | GL_COMPRESSED_RGBA_S3TC_DXT3_EXT 0x83F2 7 | GL_COMPRESSED_RGBA_S3TC_DXT5_EXT 0x83F3 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_edge_clamp: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_edge_clamp 2 | http://www.opengl.org/developers/documentation/Version1.2/1.2specs/texture_edge_clamp.txt 3 | GL_EXT_texture_edge_clamp 4 | GL_CLAMP_TO_EDGE_EXT 0x812F 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_env: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_env 2 | http://www.opengl.org/registry/specs/EXT/texture_env.txt 3 | GL_EXT_texture_env 4 | GL_TEXTURE_ENV0_EXT 0 5 | GL_TEXTURE_ENV_SHIFT_EXT 0 6 | GL_ENV_BLEND_EXT 0 7 | GL_ENV_ADD_EXT 0 8 | GL_ENV_REPLACE_EXT 0 9 | GL_ENV_SUBTRACT_EXT 0 10 | GL_TEXTURE_ENV_MODE_ALPHA_EXT 0 11 | GL_ENV_REVERSE_BLEND_EXT 0 12 | GL_ENV_REVERSE_SUBTRACT_EXT 0 13 | GL_ENV_COPY_EXT 0 14 | GL_ENV_MODULATE_EXT 0 15 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_env_add: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_env_add 2 | http://www.opengl.org/registry/specs/EXT/texture_env_add.txt 3 | GL_EXT_texture_env_add 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_env_dot3: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_env_dot3 2 | http://www.opengl.org/registry/specs/EXT/texture_env_dot3.txt 3 | GL_EXT_texture_env_dot3 4 | GL_DOT3_RGB_EXT 0x8740 5 | GL_DOT3_RGBA_EXT 0x8741 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_filter_anisotropic: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_filter_anisotropic 2 | http://www.opengl.org/registry/specs/EXT/texture_filter_anisotropic.txt 3 | GL_EXT_texture_filter_anisotropic 4 | GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE 5 | GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT 0x84FF 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_lod_bias: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_lod_bias 2 | http://www.opengl.org/registry/specs/EXT/texture_lod_bias.txt 3 | GL_EXT_texture_lod_bias 4 | GL_MAX_TEXTURE_LOD_BIAS_EXT 0x84FD 5 | GL_TEXTURE_FILTER_CONTROL_EXT 0x8500 6 | GL_TEXTURE_LOD_BIAS_EXT 0x8501 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_mirror_clamp: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_mirror_clamp 2 | http://www.opengl.org/registry/specs/EXT/texture_mirror_clamp.txt 3 | GL_EXT_texture_mirror_clamp 4 | GL_MIRROR_CLAMP_EXT 0x8742 5 | GL_MIRROR_CLAMP_TO_EDGE_EXT 0x8743 6 | GL_MIRROR_CLAMP_TO_BORDER_EXT 0x8912 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_perturb_normal: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_perturb_normal 2 | http://www.opengl.org/registry/specs/EXT/texture_perturb_normal.txt 3 | GL_EXT_texture_perturb_normal 4 | GL_PERTURB_EXT 0x85AE 5 | GL_TEXTURE_NORMAL_EXT 0x85AF 6 | void glTextureNormalEXT (GLenum mode) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_rectangle: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_rectangle 2 | http://developer.apple.com/opengl/extensions/ext_texture_rectangle.html 3 | GL_EXT_texture_rectangle 4 | GL_TEXTURE_RECTANGLE_EXT 0x84F5 5 | GL_TEXTURE_BINDING_RECTANGLE_EXT 0x84F6 6 | GL_PROXY_TEXTURE_RECTANGLE_EXT 0x84F7 7 | GL_MAX_RECTANGLE_TEXTURE_SIZE_EXT 0x84F8 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_sRGB_decode: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_sRGB_decode 2 | http://www.opengl.org/registry/specs/EXT/texture_sRGB_decode.txt 3 | GL_EXT_texture_sRGB_decode 4 | GL_TEXTURE_SRGB_DECODE_EXT 0x8A48 5 | GL_DECODE_EXT 0x8A49 6 | GL_SKIP_DECODE_EXT 0x8A4A 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_shared_exponent: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_shared_exponent 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_texture_shared_exponent.txt 3 | GL_EXT_texture_shared_exponent 4 | GL_RGB9_E5_EXT 0x8C3D 5 | GL_UNSIGNED_INT_5_9_9_9_REV_EXT 0x8C3E 6 | GL_TEXTURE_SHARED_SIZE_EXT 0x8C3F 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_texture_swizzle: -------------------------------------------------------------------------------- 1 | GL_EXT_texture_swizzle 2 | http://www.opengl.org/registry/specs/EXT/texture_swizzle.txt 3 | GL_EXT_texture_swizzle 4 | GL_TEXTURE_SWIZZLE_R_EXT 0x8E42 5 | GL_TEXTURE_SWIZZLE_G_EXT 0x8E43 6 | GL_TEXTURE_SWIZZLE_B_EXT 0x8E44 7 | GL_TEXTURE_SWIZZLE_A_EXT 0x8E45 8 | GL_TEXTURE_SWIZZLE_RGBA_EXT 0x8E46 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_timer_query: -------------------------------------------------------------------------------- 1 | GL_EXT_timer_query 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_EXT_timer_query.txt 3 | GL_EXT_timer_query 4 | GL_TIME_ELAPSED_EXT 0x88BF 5 | void glGetQueryObjecti64vEXT (GLuint id, GLenum pname, GLint64EXT *params) 6 | void glGetQueryObjectui64vEXT (GLuint id, GLenum pname, GLuint64EXT *params) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_vertex_array_bgra: -------------------------------------------------------------------------------- 1 | GL_EXT_vertex_array_bgra 2 | http://www.opengl.org/registry/specs/EXT/vertex_array_bgra.txt 3 | GL_EXT_vertex_array_bgra 4 | GL_BGRA 0x80E1 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_EXT_x11_sync_object: -------------------------------------------------------------------------------- 1 | GL_EXT_x11_sync_object 2 | http://www.opengl.org/registry/specs/EXT/x11_sync_object.txt 3 | GL_EXT_x11_sync_object 4 | GL_SYNC_X11_FENCE_EXT 0x90E1 5 | GLsync glImportSyncEXT (GLenum external_sync_type, GLintptr external_sync, GLbitfield flags) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_GREMEDY_frame_terminator: -------------------------------------------------------------------------------- 1 | GL_GREMEDY_frame_terminator 2 | http://www.opengl.org/registry/specs/GREMEDY/frame_terminator.txt 3 | GL_GREMEDY_frame_terminator 4 | void glFrameTerminatorGREMEDY (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_GREMEDY_string_marker: -------------------------------------------------------------------------------- 1 | GL_GREMEDY_string_marker 2 | http://www.opengl.org/registry/specs/GREMEDY/string_marker.txt 3 | GL_GREMEDY_string_marker 4 | void glStringMarkerGREMEDY (GLsizei len, const void* string) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_HP_convolution_border_modes: -------------------------------------------------------------------------------- 1 | GL_HP_convolution_border_modes 2 | http://www.opengl.org/registry/specs/HP/convolution_border_modes.txt 3 | GL_HP_convolution_border_modes 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_HP_occlusion_test: -------------------------------------------------------------------------------- 1 | GL_HP_occlusion_test 2 | http://www.opengl.org/registry/specs/HP/occlusion_test.txt 3 | GL_HP_occlusion_test 4 | GL_OCCLUSION_TEST_RESULT_HP 0x8166 5 | GL_OCCLUSION_TEST_HP 0x8165 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_HP_texture_lighting: -------------------------------------------------------------------------------- 1 | GL_HP_texture_lighting 2 | http://www.opengl.org/registry/specs/HP/texture_lighting.txt 3 | GL_HP_texture_lighting 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_IBM_cull_vertex: -------------------------------------------------------------------------------- 1 | GL_IBM_cull_vertex 2 | http://www.opengl.org/registry/specs/IBM/cull_vertex.txt 3 | GL_IBM_cull_vertex 4 | GL_CULL_VERTEX_IBM 103050 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_IBM_multimode_draw_arrays: -------------------------------------------------------------------------------- 1 | GL_IBM_multimode_draw_arrays 2 | http://www.opengl.org/registry/specs/IBM/multimode_draw_arrays.txt 3 | GL_IBM_multimode_draw_arrays 4 | void glMultiModeDrawArraysIBM (const GLenum* mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride) 5 | void glMultiModeDrawElementsIBM (const GLenum* mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, GLint modestride) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_IBM_rasterpos_clip: -------------------------------------------------------------------------------- 1 | GL_IBM_rasterpos_clip 2 | http://www.opengl.org/registry/specs/IBM/rasterpos_clip.txt 3 | GL_IBM_rasterpos_clip 4 | GL_RASTER_POSITION_UNCLIPPED_IBM 103010 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_IBM_static_data: -------------------------------------------------------------------------------- 1 | GL_IBM_static_data 2 | http://www.opengl.org/registry/specs/IBM/static_data.txt 3 | GL_IBM_static_data 4 | GL_ALL_STATIC_DATA_IBM 103060 5 | GL_STATIC_VERTEX_ARRAY_IBM 103061 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_IBM_texture_mirrored_repeat: -------------------------------------------------------------------------------- 1 | GL_IBM_texture_mirrored_repeat 2 | http://www.opengl.org/registry/specs/IBM/texture_mirrored_repeat.txt 3 | GL_IBM_texture_mirrored_repeat 4 | GL_MIRRORED_REPEAT_IBM 0x8370 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_INGR_color_clamp: -------------------------------------------------------------------------------- 1 | GL_INGR_color_clamp 2 | http://www.opengl.org/registry/specs/INGR/color_clamp.txt 3 | GL_INGR_color_clamp 4 | GL_RED_MIN_CLAMP_INGR 0x8560 5 | GL_GREEN_MIN_CLAMP_INGR 0x8561 6 | GL_BLUE_MIN_CLAMP_INGR 0x8562 7 | GL_ALPHA_MIN_CLAMP_INGR 0x8563 8 | GL_RED_MAX_CLAMP_INGR 0x8564 9 | GL_GREEN_MAX_CLAMP_INGR 0x8565 10 | GL_BLUE_MAX_CLAMP_INGR 0x8566 11 | GL_ALPHA_MAX_CLAMP_INGR 0x8567 12 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_INGR_interlace_read: -------------------------------------------------------------------------------- 1 | GL_INGR_interlace_read 2 | http://www.opengl.org/registry/specs/INGR/interlace_read.txt 3 | GL_INGR_interlace_read 4 | GL_INTERLACE_READ_INGR 0x8568 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_INTEL_texture_scissor: -------------------------------------------------------------------------------- 1 | GL_INTEL_texture_scissor 2 | http://www.opengl.org/registry/specs/INTEL/texture_scissor.txt 3 | GL_INTEL_texture_scissor 4 | void glTexScissorFuncINTEL (GLenum target, GLenum lfunc, GLenum hfunc) 5 | void glTexScissorINTEL (GLenum target, GLclampf tlow, GLclampf thigh) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_KTX_buffer_region: -------------------------------------------------------------------------------- 1 | GL_KTX_buffer_region 2 | 3 | GL_KTX_buffer_region 4 | GL_KTX_FRONT_REGION 0x0 5 | GL_KTX_BACK_REGION 0x1 6 | GL_KTX_Z_REGION 0x2 7 | GL_KTX_STENCIL_REGION 0x3 8 | GLuint glBufferRegionEnabled (void) 9 | GLuint glNewBufferRegion (GLenum region) 10 | void glDeleteBufferRegion (GLenum region) 11 | void glReadBufferRegion (GLuint region, GLint x, GLint y, GLsizei width, GLsizei height) 12 | void glDrawBufferRegion (GLuint region, GLint x, GLint y, GLsizei width, GLsizei height, GLint xDest, GLint yDest) 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_MESAX_texture_stack: -------------------------------------------------------------------------------- 1 | GL_MESAX_texture_stack 2 | http://www.opengl.org/registry/specs/MESAX/texture_stack.txt 3 | GL_MESAX_texture_stack 4 | GL_TEXTURE_1D_STACK_MESAX 0x8759 5 | GL_TEXTURE_2D_STACK_MESAX 0x875A 6 | GL_PROXY_TEXTURE_1D_STACK_MESAX 0x875B 7 | GL_PROXY_TEXTURE_2D_STACK_MESAX 0x875C 8 | GL_TEXTURE_1D_STACK_BINDING_MESAX 0x875D 9 | GL_TEXTURE_2D_STACK_BINDING_MESAX 0x875E 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_MESA_pack_invert: -------------------------------------------------------------------------------- 1 | GL_MESA_pack_invert 2 | http://www.opengl.org/registry/specs/MESA/pack_invert.txt 3 | GL_MESA_pack_invert 4 | GL_PACK_INVERT_MESA 0x8758 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_MESA_resize_buffers: -------------------------------------------------------------------------------- 1 | GL_MESA_resize_buffers 2 | http://www.opengl.org/registry/specs/MESA/resize_buffers.txt 3 | GL_MESA_resize_buffers 4 | void glResizeBuffersMESA (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_MESA_ycbcr_texture: -------------------------------------------------------------------------------- 1 | GL_MESA_ycbcr_texture 2 | http://www.opengl.org/registry/specs/MESA/ycbcr_texture.txt 3 | GL_MESA_ycbcr_texture 4 | GL_UNSIGNED_SHORT_8_8_MESA 0x85BA 5 | GL_UNSIGNED_SHORT_8_8_REV_MESA 0x85BB 6 | GL_YCBCR_MESA 0x8757 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NVX_gpu_memory_info: -------------------------------------------------------------------------------- 1 | GL_NVX_gpu_memory_info 2 | http://developer.download.nvidia.com/opengl/specs/GL_NVX_gpu_memory_info.txt 3 | GL_NVX_gpu_memory_info 4 | GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX 0x9047 5 | GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX 0x9048 6 | GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX 0x9049 7 | GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX 0x904A 8 | GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX 0x904B 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_blend_square: -------------------------------------------------------------------------------- 1 | GL_NV_blend_square 2 | http://www.opengl.org/registry/specs/NV/blend_square.txt 3 | GL_NV_blend_square 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_conditional_render: -------------------------------------------------------------------------------- 1 | GL_NV_conditional_render 2 | http://www.opengl.org/registry/specs/NV/conditional_render.txt 3 | GL_NV_conditional_render 4 | GL_QUERY_WAIT_NV 0x8E13 5 | GL_QUERY_NO_WAIT_NV 0x8E14 6 | GL_QUERY_BY_REGION_WAIT_NV 0x8E15 7 | GL_QUERY_BY_REGION_NO_WAIT_NV 0x8E16 8 | void glBeginConditionalRenderNV (GLuint id, GLenum mode) 9 | void glEndConditionalRenderNV (void) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_copy_depth_to_color: -------------------------------------------------------------------------------- 1 | GL_NV_copy_depth_to_color 2 | http://www.opengl.org/registry/specs/NV/copy_depth_to_color.txt 3 | GL_NV_copy_depth_to_color 4 | GL_DEPTH_STENCIL_TO_RGBA_NV 0x886E 5 | GL_DEPTH_STENCIL_TO_BGRA_NV 0x886F 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_copy_image: -------------------------------------------------------------------------------- 1 | GL_NV_copy_image 2 | http://www.opengl.org/registry/specs/NV/copy_image.txt 3 | GL_NV_copy_image 4 | void glCopyImageSubDataNV (GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_depth_buffer_float: -------------------------------------------------------------------------------- 1 | GL_NV_depth_buffer_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_depth_buffer_float.txt 3 | GL_NV_depth_buffer_float 4 | GL_DEPTH_COMPONENT32F_NV 0x8DAB 5 | GL_DEPTH32F_STENCIL8_NV 0x8DAC 6 | GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV 0x8DAD 7 | GL_DEPTH_BUFFER_FLOAT_MODE_NV 0x8DAF 8 | void glDepthRangedNV (GLdouble zNear, GLdouble zFar) 9 | void glClearDepthdNV (GLdouble depth) 10 | void glDepthBoundsdNV (GLdouble zmin, GLdouble zmax) 11 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_depth_clamp: -------------------------------------------------------------------------------- 1 | GL_NV_depth_clamp 2 | http://www.opengl.org/registry/specs/NV/depth_clamp.txt 3 | GL_NV_depth_clamp 4 | GL_DEPTH_CLAMP_NV 0x864F 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_depth_range_unclamped: -------------------------------------------------------------------------------- 1 | GL_NV_depth_range_unclamped 2 | 3 | GL_NV_depth_range_unclamped 4 | GL_SAMPLE_COUNT_BITS_NV 0x8864 5 | GL_CURRENT_SAMPLE_COUNT_QUERY_NV 0x8865 6 | GL_QUERY_RESULT_NV 0x8866 7 | GL_QUERY_RESULT_AVAILABLE_NV 0x8867 8 | GL_SAMPLE_COUNT_NV 0x8914 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_fence: -------------------------------------------------------------------------------- 1 | GL_NV_fence 2 | http://www.opengl.org/registry/specs/NV/fence.txt 3 | GL_NV_fence 4 | GL_ALL_COMPLETED_NV 0x84F2 5 | GL_FENCE_STATUS_NV 0x84F3 6 | GL_FENCE_CONDITION_NV 0x84F4 7 | void glDeleteFencesNV (GLsizei n, const GLuint* fences) 8 | void glFinishFenceNV (GLuint fence) 9 | void glGenFencesNV (GLsizei n, GLuint* fences) 10 | void glGetFenceivNV (GLuint fence, GLenum pname, GLint* params) 11 | GLboolean glIsFenceNV (GLuint fence) 12 | void glSetFenceNV (GLuint fence, GLenum condition) 13 | GLboolean glTestFenceNV (GLuint fence) 14 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_fog_distance: -------------------------------------------------------------------------------- 1 | GL_NV_fog_distance 2 | http://www.opengl.org/registry/specs/NV/fog_distance.txt 3 | GL_NV_fog_distance 4 | GL_FOG_DISTANCE_MODE_NV 0x855A 5 | GL_EYE_RADIAL_NV 0x855B 6 | GL_EYE_PLANE_ABSOLUTE_NV 0x855C 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_fragment_program2: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program2 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_fragment_program2.txt 3 | GL_NV_fragment_program2 4 | GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 5 | GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 6 | GL_MAX_PROGRAM_IF_DEPTH_NV 0x88F6 7 | GL_MAX_PROGRAM_LOOP_DEPTH_NV 0x88F7 8 | GL_MAX_PROGRAM_LOOP_COUNT_NV 0x88F8 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_fragment_program4: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_fragment_program4.txt 3 | GL_NV_gpu_program4 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_fragment_program_option: -------------------------------------------------------------------------------- 1 | GL_NV_fragment_program_option 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_fragment_program_option.txt 3 | GL_NV_fragment_program_option 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_framebuffer_multisample_coverage: -------------------------------------------------------------------------------- 1 | GL_NV_framebuffer_multisample_coverage 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_framebuffer_multisample_coverage.txt 3 | GL_NV_framebuffer_multisample_coverage 4 | GL_RENDERBUFFER_COVERAGE_SAMPLES_NV 0x8CAB 5 | GL_RENDERBUFFER_COLOR_SAMPLES_NV 0x8E10 6 | GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV 0x8E11 7 | GL_MULTISAMPLE_COVERAGE_MODES_NV 0x8E12 8 | void glRenderbufferStorageMultisampleCoverageNV (GLenum target, GLsizei coverageSamples, GLsizei colorSamples, GLenum internalformat, GLsizei width, GLsizei height) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_geometry_program4: -------------------------------------------------------------------------------- 1 | GL_NV_geometry_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_geometry_program4.txt 3 | GL_NV_gpu_program4 4 | GL_GEOMETRY_PROGRAM_NV 0x8C26 5 | GL_MAX_PROGRAM_OUTPUT_VERTICES_NV 0x8C27 6 | GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV 0x8C28 7 | void glProgramVertexLimitNV (GLenum target, GLint limit) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_geometry_shader4: -------------------------------------------------------------------------------- 1 | GL_NV_geometry_shader4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_geometry_shader4.txt 3 | GL_NV_geometry_shader4 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_gpu_program5: -------------------------------------------------------------------------------- 1 | GL_NV_gpu_program5 2 | http://www.opengl.org/registry/specs/NV/gpu_program5.txt 3 | GL_NV_gpu_program5 4 | GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV 0x8E5A 5 | GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5B 6 | GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV 0x8E5C 7 | GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV 0x8E5D 8 | GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5E 9 | GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV 0x8E5F 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_gpu_program_fp64: -------------------------------------------------------------------------------- 1 | GL_NV_gpu_program_fp64 2 | http://www.opengl.org/registry/specs/NV/gpu_program5.txt 3 | GL_NV_gpu_program_fp64 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_light_max_exponent: -------------------------------------------------------------------------------- 1 | GL_NV_light_max_exponent 2 | http://www.opengl.org/registry/specs/NV/light_max_exponent.txt 3 | GL_NV_light_max_exponent 4 | GL_MAX_SHININESS_NV 0x8504 5 | GL_MAX_SPOT_EXPONENT_NV 0x8505 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_multisample_coverage: -------------------------------------------------------------------------------- 1 | GL_NV_multisample_coverage 2 | http://www.opengl.org/registry/specs/NV/multisample_coverage.txt 3 | GL_NV_multisample_coverage 4 | GL_COVERAGE_SAMPLES_NV 0x80A9 5 | GL_COLOR_SAMPLES_NV 0x8E20 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_multisample_filter_hint: -------------------------------------------------------------------------------- 1 | GL_NV_multisample_filter_hint 2 | http://www.opengl.org/registry/specs/NV/multisample_filter_hint.txt 3 | GL_NV_multisample_filter_hint 4 | GL_MULTISAMPLE_FILTER_HINT_NV 0x8534 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_packed_depth_stencil: -------------------------------------------------------------------------------- 1 | GL_NV_packed_depth_stencil 2 | http://www.opengl.org/registry/specs/NV/packed_depth_stencil.txt 3 | GL_NV_packed_depth_stencil 4 | GL_DEPTH_STENCIL_NV 0x84F9 5 | GL_UNSIGNED_INT_24_8_NV 0x84FA 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_parameter_buffer_object2: -------------------------------------------------------------------------------- 1 | GL_NV_parameter_buffer_object2 2 | http://www.opengl.org/registry/specs/NV/parameter_buffer_object2.txt 3 | GL_NV_parameter_buffer_object2 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_pixel_data_range: -------------------------------------------------------------------------------- 1 | GL_NV_pixel_data_range 2 | http://www.opengl.org/registry/specs/NV/pixel_data_range.txt 3 | GL_NV_pixel_data_range 4 | GL_WRITE_PIXEL_DATA_RANGE_NV 0x8878 5 | GL_READ_PIXEL_DATA_RANGE_NV 0x8879 6 | GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV 0x887A 7 | GL_READ_PIXEL_DATA_RANGE_LENGTH_NV 0x887B 8 | GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV 0x887C 9 | GL_READ_PIXEL_DATA_RANGE_POINTER_NV 0x887D 10 | void glFlushPixelDataRangeNV (GLenum target) 11 | void glPixelDataRangeNV (GLenum target, GLsizei length, void* pointer) 12 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_point_sprite: -------------------------------------------------------------------------------- 1 | GL_NV_point_sprite 2 | http://www.opengl.org/registry/specs/NV/point_sprite.txt 3 | GL_NV_point_sprite 4 | GL_POINT_SPRITE_NV 0x8861 5 | GL_COORD_REPLACE_NV 0x8862 6 | GL_POINT_SPRITE_R_MODE_NV 0x8863 7 | void glPointParameteriNV (GLenum pname, GLint param) 8 | void glPointParameterivNV (GLenum pname, const GLint* params) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_primitive_restart: -------------------------------------------------------------------------------- 1 | GL_NV_primitive_restart 2 | http://www.opengl.org/registry/specs/NV/primitive_restart.txt 3 | GL_NV_primitive_restart 4 | GL_PRIMITIVE_RESTART_NV 0x8558 5 | GL_PRIMITIVE_RESTART_INDEX_NV 0x8559 6 | void glPrimitiveRestartIndexNV (GLuint index) 7 | void glPrimitiveRestartNV (void) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_register_combiners2: -------------------------------------------------------------------------------- 1 | GL_NV_register_combiners2 2 | http://www.opengl.org/registry/specs/NV/register_combiners2.txt 3 | GL_NV_register_combiners2 4 | GL_PER_STAGE_CONSTANTS_NV 0x8535 5 | void glCombinerStageParameterfvNV (GLenum stage, GLenum pname, const GLfloat* params) 6 | void glGetCombinerStageParameterfvNV (GLenum stage, GLenum pname, GLfloat* params) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_shader_atomic_float: -------------------------------------------------------------------------------- 1 | GL_NV_shader_atomic_float 2 | http://www.opengl.org/registry/specs/NV/shader_atomic_float.txt 3 | GL_NV_shader_atomic_float 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_tessellation_program5: -------------------------------------------------------------------------------- 1 | GL_NV_tessellation_program5 2 | http://www.opengl.org/registry/specs/NV/tessellation_program5.txt 3 | GL_NV_gpu_program5 4 | GL_MAX_PROGRAM_PATCH_ATTRIBS_NV 0x86D8 5 | GL_TESS_CONTROL_PROGRAM_NV 0x891E 6 | GL_TESS_EVALUATION_PROGRAM_NV 0x891F 7 | GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV 0x8C74 8 | GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV 0x8C75 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_texgen_emboss: -------------------------------------------------------------------------------- 1 | GL_NV_texgen_emboss 2 | http://www.opengl.org/registry/specs/NV/texgen_emboss.txt 3 | GL_NV_texgen_emboss 4 | GL_EMBOSS_LIGHT_NV 0x855D 5 | GL_EMBOSS_CONSTANT_NV 0x855E 6 | GL_EMBOSS_MAP_NV 0x855F 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_texgen_reflection: -------------------------------------------------------------------------------- 1 | GL_NV_texgen_reflection 2 | http://www.opengl.org/registry/specs/NV/texgen_reflection.txt 3 | GL_NV_texgen_reflection 4 | GL_NORMAL_MAP_NV 0x8511 5 | GL_REFLECTION_MAP_NV 0x8512 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_texture_barrier: -------------------------------------------------------------------------------- 1 | GL_NV_texture_barrier 2 | http://www.opengl.org/registry/specs/NV/texture_barrier.txt 3 | GL_NV_texture_barrier 4 | void glTextureBarrierNV (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_texture_compression_vtc: -------------------------------------------------------------------------------- 1 | GL_NV_texture_compression_vtc 2 | http://www.opengl.org/registry/specs/NV/texture_compression_vtc.txt 3 | GL_NV_texture_compression_vtc 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_texture_env_combine4: -------------------------------------------------------------------------------- 1 | GL_NV_texture_env_combine4 2 | http://www.opengl.org/registry/specs/NV/texture_env_combine4.txt 3 | GL_NV_texture_env_combine4 4 | GL_COMBINE4_NV 0x8503 5 | GL_SOURCE3_RGB_NV 0x8583 6 | GL_SOURCE3_ALPHA_NV 0x858B 7 | GL_OPERAND3_RGB_NV 0x8593 8 | GL_OPERAND3_ALPHA_NV 0x859B 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_texture_expand_normal: -------------------------------------------------------------------------------- 1 | GL_NV_texture_expand_normal 2 | http://www.opengl.org/registry/specs/NV/texture_expand_normal.txt 3 | GL_NV_texture_expand_normal 4 | GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_texture_rectangle: -------------------------------------------------------------------------------- 1 | GL_NV_texture_rectangle 2 | http://www.opengl.org/registry/specs/NV/texture_rectangle.txt 3 | GL_NV_texture_rectangle 4 | GL_TEXTURE_RECTANGLE_NV 0x84F5 5 | GL_TEXTURE_BINDING_RECTANGLE_NV 0x84F6 6 | GL_PROXY_TEXTURE_RECTANGLE_NV 0x84F7 7 | GL_MAX_RECTANGLE_TEXTURE_SIZE_NV 0x84F8 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_vertex_array_range: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_array_range 2 | http://www.opengl.org/registry/specs/NV/vertex_array_range.txt 3 | GL_NV_vertex_array_range 4 | GL_VERTEX_ARRAY_RANGE_NV 0x851D 5 | GL_VERTEX_ARRAY_RANGE_LENGTH_NV 0x851E 6 | GL_VERTEX_ARRAY_RANGE_VALID_NV 0x851F 7 | GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV 0x8520 8 | GL_VERTEX_ARRAY_RANGE_POINTER_NV 0x8521 9 | void glFlushVertexArrayRangeNV (void) 10 | void glVertexArrayRangeNV (GLsizei length, void* pointer) 11 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_vertex_array_range2: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_array_range2 2 | http://www.opengl.org/registry/specs/NV/vertex_array_range2.txt 3 | GL_NV_vertex_array_range2 4 | GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV 0x8533 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_vertex_program1_1: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program1_1 2 | http://www.opengl.org/registry/specs/NV/vertex_program1_1.txt 3 | GL_NV_vertex_program1_1 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_vertex_program2: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program2 2 | http://www.opengl.org/registry/specs/NV/vertex_program2.txt 3 | GL_NV_vertex_program2 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_vertex_program2_option: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program2_option 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_vertex_program2_option.txt 3 | GL_NV_vertex_program2_option 4 | GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV 0x88F4 5 | GL_MAX_PROGRAM_CALL_DEPTH_NV 0x88F5 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_vertex_program3: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program3 2 | http://www.nvidia.com/dev_content/nvopenglspecs/GL_NV_vertex_program3.txt 3 | GL_NV_vertex_program3 4 | MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB 0x8B4C 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_NV_vertex_program4: -------------------------------------------------------------------------------- 1 | GL_NV_vertex_program4 2 | http://developer.download.nvidia.com/opengl/specs/GL_NV_vertex_program4.txt 3 | GL_NV_gpu_program4 4 | GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV 0x88FD 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_OES_byte_coordinates: -------------------------------------------------------------------------------- 1 | GL_OES_byte_coordinates 2 | http://www.opengl.org/registry/specs/OES/OES_byte_coordinates.txt 3 | GL_OES_byte_coordinates 4 | GL_BYTE 0x1400 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_OES_compressed_paletted_texture: -------------------------------------------------------------------------------- 1 | GL_OES_compressed_paletted_texture 2 | http://www.opengl.org/registry/specs/OES/OES_compressed_paletted_texture.txt 3 | GL_OES_compressed_paletted_texture 4 | GL_PALETTE4_RGB8_OES 0x8B90 5 | GL_PALETTE4_RGBA8_OES 0x8B91 6 | GL_PALETTE4_R5_G6_B5_OES 0x8B92 7 | GL_PALETTE4_RGBA4_OES 0x8B93 8 | GL_PALETTE4_RGB5_A1_OES 0x8B94 9 | GL_PALETTE8_RGB8_OES 0x8B95 10 | GL_PALETTE8_RGBA8_OES 0x8B96 11 | GL_PALETTE8_R5_G6_B5_OES 0x8B97 12 | GL_PALETTE8_RGBA4_OES 0x8B98 13 | GL_PALETTE8_RGB5_A1_OES 0x8B99 14 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_OES_read_format: -------------------------------------------------------------------------------- 1 | GL_OES_read_format 2 | http://www.opengl.org/registry/specs/OES/OES_read_format.txt 3 | GL_OES_read_format 4 | GL_IMPLEMENTATION_COLOR_READ_TYPE_OES 0x8B9A 5 | GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES 0x8B9B 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_OES_single_precision: -------------------------------------------------------------------------------- 1 | GL_OES_single_precision 2 | http://www.opengl.org/registry/specs/OES/OES_single_precision.txt 3 | GL_OES_single_precision 4 | void glClearDepthfOES (GLclampd depth) 5 | void glClipPlanefOES (GLenum plane, const GLfloat* equation) 6 | void glDepthRangefOES (GLclampf n, GLclampf f) 7 | void glFrustumfOES (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f) 8 | void glGetClipPlanefOES (GLenum plane, GLfloat* equation) 9 | void glOrthofOES (GLfloat l, GLfloat r, GLfloat b, GLfloat t, GLfloat n, GLfloat f) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_OML_interlace: -------------------------------------------------------------------------------- 1 | GL_OML_interlace 2 | http://www.opengl.org/registry/specs/OML/interlace.txt 3 | GL_OML_interlace 4 | GL_INTERLACE_OML 0x8980 5 | GL_INTERLACE_READ_OML 0x8981 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_OML_resample: -------------------------------------------------------------------------------- 1 | GL_OML_resample 2 | http://www.opengl.org/registry/specs/OML/resample.txt 3 | GL_OML_resample 4 | GL_PACK_RESAMPLE_OML 0x8984 5 | GL_UNPACK_RESAMPLE_OML 0x8985 6 | GL_RESAMPLE_REPLICATE_OML 0x8986 7 | GL_RESAMPLE_ZERO_FILL_OML 0x8987 8 | GL_RESAMPLE_AVERAGE_OML 0x8988 9 | GL_RESAMPLE_DECIMATE_OML 0x8989 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_OML_subsample: -------------------------------------------------------------------------------- 1 | GL_OML_subsample 2 | http://www.opengl.org/registry/specs/OML/subsample.txt 3 | GL_OML_subsample 4 | GL_FORMAT_SUBSAMPLE_24_24_OML 0x8982 5 | GL_FORMAT_SUBSAMPLE_244_244_OML 0x8983 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_REGAL_error_string: -------------------------------------------------------------------------------- 1 | GL_REGAL_error_string 2 | https://github.com/p3/regal 3 | GL_REGAL_error_string 4 | const GLchar* glErrorStringREGAL (GLenum error) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_REGAL_extension_query: -------------------------------------------------------------------------------- 1 | GL_REGAL_extension_query 2 | https://github.com/p3/regal 3 | GL_REGAL_extension_query 4 | GLboolean glGetExtensionREGAL (const GLchar* ext) 5 | GLboolean glIsSupportedREGAL (const GLchar* ext) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_REGAL_log: -------------------------------------------------------------------------------- 1 | GL_REGAL_log 2 | http://www.opengl.org/registry/specs/REGAL/log.txt 3 | GL_REGAL_log 4 | GL_LOG_ERROR_REGAL 0x9319 5 | GL_LOG_WARNING_REGAL 0x931A 6 | GL_LOG_INFO_REGAL 0x931B 7 | GL_LOG_APP_REGAL 0x931C 8 | GL_LOG_DRIVER_REGAL 0x931D 9 | GL_LOG_INTERNAL_REGAL 0x931E 10 | GL_LOG_DEBUG_REGAL 0x931F 11 | GL_LOG_STATUS_REGAL 0x9320 12 | GL_LOG_HTTP_REGAL 0x9321 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_REND_screen_coordinates: -------------------------------------------------------------------------------- 1 | GL_REND_screen_coordinates 2 | http://www.opengl.org/registry/specs/REND/screen_coordinates.txt 3 | GL_REND_screen_coordinates 4 | GL_SCREEN_COORDINATES_REND 0x8490 5 | GL_INVERTED_SCREEN_W_REND 0x8491 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_S3_s3tc: -------------------------------------------------------------------------------- 1 | GL_S3_s3tc 2 | http://www.opengl.org/registry/specs/S3/s3tc.txt 3 | GL_S3_s3tc 4 | GL_RGB_S3TC 0x83A0 5 | GL_RGB4_S3TC 0x83A1 6 | GL_RGBA_S3TC 0x83A2 7 | GL_RGBA4_S3TC 0x83A3 8 | GL_RGBA_DXT5_S3TC 0x83A4 9 | GL_RGBA4_DXT5_S3TC 0x83A5 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_color_range: -------------------------------------------------------------------------------- 1 | GL_SGIS_color_range 2 | http://www.opengl.org/registry/specs/SGIS/color_range.txt 3 | GL_SGIS_color_range 4 | GL_EXTENDED_RANGE_SGIS 0x85A5 5 | GL_MIN_RED_SGIS 0x85A6 6 | GL_MAX_RED_SGIS 0x85A7 7 | GL_MIN_GREEN_SGIS 0x85A8 8 | GL_MAX_GREEN_SGIS 0x85A9 9 | GL_MIN_BLUE_SGIS 0x85AA 10 | GL_MAX_BLUE_SGIS 0x85AB 11 | GL_MIN_ALPHA_SGIS 0x85AC 12 | GL_MAX_ALPHA_SGIS 0x85AD 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_detail_texture: -------------------------------------------------------------------------------- 1 | GL_SGIS_detail_texture 2 | http://www.opengl.org/registry/specs/SGIS/detail_texture.txt 3 | GL_SGIS_detail_texture 4 | void glDetailTexFuncSGIS (GLenum target, GLsizei n, const GLfloat* points) 5 | void glGetDetailTexFuncSGIS (GLenum target, GLfloat* points) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_fog_function: -------------------------------------------------------------------------------- 1 | GL_SGIS_fog_function 2 | http://www.opengl.org/registry/specs/SGIS/fog_func.txt 3 | GL_SGIS_fog_function 4 | void glFogFuncSGIS (GLsizei n, const GLfloat* points) 5 | void glGetFogFuncSGIS (GLfloat* points) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_generate_mipmap: -------------------------------------------------------------------------------- 1 | GL_SGIS_generate_mipmap 2 | http://www.opengl.org/registry/specs/SGIS/generate_mipmap.txt 3 | GL_SGIS_generate_mipmap 4 | GL_GENERATE_MIPMAP_SGIS 0x8191 5 | GL_GENERATE_MIPMAP_HINT_SGIS 0x8192 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_pixel_texture: -------------------------------------------------------------------------------- 1 | GL_SGIS_pixel_texture 2 | http://www.opengl.org/registry/specs/SGIS/pixel_texture.txt 3 | GL_SGIS_pixel_texture 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_point_line_texgen: -------------------------------------------------------------------------------- 1 | GL_SGIS_point_line_texgen 2 | http://www.opengl.org/registry/specs/SGIS/point_line_texgen.txt 3 | GL_SGIS_point_line_texgen 4 | GL_EYE_DISTANCE_TO_POINT_SGIS 0x81F0 5 | GL_OBJECT_DISTANCE_TO_POINT_SGIS 0x81F1 6 | GL_EYE_DISTANCE_TO_LINE_SGIS 0x81F2 7 | GL_OBJECT_DISTANCE_TO_LINE_SGIS 0x81F3 8 | GL_EYE_POINT_SGIS 0x81F4 9 | GL_OBJECT_POINT_SGIS 0x81F5 10 | GL_EYE_LINE_SGIS 0x81F6 11 | GL_OBJECT_LINE_SGIS 0x81F7 12 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_sharpen_texture: -------------------------------------------------------------------------------- 1 | GL_SGIS_sharpen_texture 2 | http://www.opengl.org/registry/specs/SGIS/sharpen_texture.txt 3 | GL_SGIS_sharpen_texture 4 | void glGetSharpenTexFuncSGIS (GLenum target, GLfloat* points) 5 | void glSharpenTexFuncSGIS (GLenum target, GLsizei n, const GLfloat* points) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_texture4D: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture4D 2 | http://www.opengl.org/registry/specs/SGIS/texture4D.txt 3 | GL_SGIS_texture4D 4 | void glTexImage4DSGIS (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLsizei extent, GLint border, GLenum format, GLenum type, const void* pixels) 5 | void glTexSubImage4DSGIS (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint woffset, GLsizei width, GLsizei height, GLsizei depth, GLsizei extent, GLenum format, GLenum type, const void* pixels) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_texture_border_clamp: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_border_clamp 2 | http://www.opengl.org/registry/specs/SGIS/texture_border_clamp.txt 3 | GL_SGIS_texture_border_clamp 4 | GL_CLAMP_TO_BORDER_SGIS 0x812D 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_texture_edge_clamp: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_edge_clamp 2 | http://www.opengl.org/registry/specs/SGIS/texture_edge_clamp.txt 3 | GL_SGIS_texture_edge_clamp 4 | GL_CLAMP_TO_EDGE_SGIS 0x812F 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_texture_filter4: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_filter4 2 | http://www.opengl.org/registry/specs/SGIS/texture_filter4.txt 3 | GL_SGIS_texture_filter4 4 | void glGetTexFilterFuncSGIS (GLenum target, GLenum filter, GLfloat* weights) 5 | void glTexFilterFuncSGIS (GLenum target, GLenum filter, GLsizei n, const GLfloat* weights) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_texture_lod: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_lod 2 | http://www.opengl.org/registry/specs/SGIS/texture_lod.txt 3 | GL_SGIS_texture_lod 4 | GL_TEXTURE_MIN_LOD_SGIS 0x813A 5 | GL_TEXTURE_MAX_LOD_SGIS 0x813B 6 | GL_TEXTURE_BASE_LEVEL_SGIS 0x813C 7 | GL_TEXTURE_MAX_LEVEL_SGIS 0x813D 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIS_texture_select: -------------------------------------------------------------------------------- 1 | GL_SGIS_texture_select 2 | http://www.opengl.org/registry/specs/SGIS/texture_select.txt 3 | GL_SGIS_texture_select 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_async: -------------------------------------------------------------------------------- 1 | GL_SGIX_async 2 | http://www.opengl.org/registry/specs/SGIX/async.txt 3 | GL_SGIX_async 4 | GL_ASYNC_MARKER_SGIX 0x8329 5 | void glAsyncMarkerSGIX (GLuint marker) 6 | void glDeleteAsyncMarkersSGIX (GLuint marker, GLsizei range) 7 | GLint glFinishAsyncSGIX (GLuint* markerp) 8 | GLuint glGenAsyncMarkersSGIX (GLsizei range) 9 | GLboolean glIsAsyncMarkerSGIX (GLuint marker) 10 | GLint glPollAsyncSGIX (GLuint* markerp) 11 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_async_histogram: -------------------------------------------------------------------------------- 1 | GL_SGIX_async_histogram 2 | http://www.opengl.org/registry/specs/SGIX/async_histogram.txt 3 | GL_SGIX_async_histogram 4 | GL_ASYNC_HISTOGRAM_SGIX 0x832C 5 | GL_MAX_ASYNC_HISTOGRAM_SGIX 0x832D 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_async_pixel: -------------------------------------------------------------------------------- 1 | GL_SGIX_async_pixel 2 | http://www.opengl.org/registry/specs/SGIX/async_pixel.txt 3 | GL_SGIX_async_pixel 4 | GL_ASYNC_TEX_IMAGE_SGIX 0x835C 5 | GL_ASYNC_DRAW_PIXELS_SGIX 0x835D 6 | GL_ASYNC_READ_PIXELS_SGIX 0x835E 7 | GL_MAX_ASYNC_TEX_IMAGE_SGIX 0x835F 8 | GL_MAX_ASYNC_DRAW_PIXELS_SGIX 0x8360 9 | GL_MAX_ASYNC_READ_PIXELS_SGIX 0x8361 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_blend_alpha_minmax: -------------------------------------------------------------------------------- 1 | GL_SGIX_blend_alpha_minmax 2 | http://www.opengl.org/registry/specs/SGIX/blend_alpha_minmax.txt 3 | GL_SGIX_blend_alpha_minmax 4 | GL_ALPHA_MIN_SGIX 0x8320 5 | GL_ALPHA_MAX_SGIX 0x8321 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_clipmap: -------------------------------------------------------------------------------- 1 | GL_SGIX_clipmap 2 | http://www.opengl.org/registry/specs/SGIX/clipmap.txt 3 | GL_SGIX_clipmap 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_convolution_accuracy: -------------------------------------------------------------------------------- 1 | GL_SGIX_convolution_accuracy 2 | http://www.opengl.org/registry/specs/SGIX/convolution_accuracy.txt 3 | GL_SGIX_convolution_accuracy 4 | GL_CONVOLUTION_HINT_SGIX 0x8316 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_depth_texture: -------------------------------------------------------------------------------- 1 | GL_SGIX_depth_texture 2 | http://www.opengl.org/registry/specs/SGIX/depth_texture.txt 3 | GL_SGIX_depth_texture 4 | GL_DEPTH_COMPONENT16_SGIX 0x81A5 5 | GL_DEPTH_COMPONENT24_SGIX 0x81A6 6 | GL_DEPTH_COMPONENT32_SGIX 0x81A7 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_flush_raster: -------------------------------------------------------------------------------- 1 | GL_SGIX_flush_raster 2 | http://www.opengl.org/registry/specs/SGIX/flush_raster.txt 3 | GL_SGIX_flush_raster 4 | void glFlushRasterSGIX (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_fog_offset: -------------------------------------------------------------------------------- 1 | GL_SGIX_fog_offset 2 | http://www.opengl.org/registry/specs/SGIX/fog_offset.txt 3 | GL_SGIX_fog_offset 4 | GL_FOG_OFFSET_SGIX 0x8198 5 | GL_FOG_OFFSET_VALUE_SGIX 0x8199 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_fog_texture: -------------------------------------------------------------------------------- 1 | GL_SGIX_fog_texture 2 | http://www.opengl.org/registry/specs/SGIX/fog_texture.txt 3 | GL_SGIX_fog_texture 4 | GL_TEXTURE_FOG_SGIX 0 5 | GL_FOG_PATCHY_FACTOR_SGIX 0 6 | GL_FRAGMENT_FOG_SGIX 0 7 | void glTextureFogSGIX (GLenum pname) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_framezoom: -------------------------------------------------------------------------------- 1 | GL_SGIX_framezoom 2 | http://www.opengl.org/registry/specs/SGIX/framezoom.txt 3 | GL_SGIX_framezoom 4 | void glFrameZoomSGIX (GLint factor) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_interlace: -------------------------------------------------------------------------------- 1 | GL_SGIX_interlace 2 | http://www.opengl.org/registry/specs/SGIX/interlace.txt 3 | GL_SGIX_interlace 4 | GL_INTERLACE_SGIX 0x8094 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_ir_instrument1: -------------------------------------------------------------------------------- 1 | GL_SGIX_ir_instrument1 2 | http://www.opengl.org/registry/specs/SGIX/ir_instrument1.txt 3 | GL_SGIX_ir_instrument1 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_list_priority: -------------------------------------------------------------------------------- 1 | GL_SGIX_list_priority 2 | http://www.opengl.org/registry/specs/SGIX/list_priority.txt 3 | GL_SGIX_list_priority 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_pixel_texture: -------------------------------------------------------------------------------- 1 | GL_SGIX_pixel_texture 2 | http://www.opengl.org/registry/specs/SGIX/sgix_pixel_texture.txt 3 | GL_SGIX_pixel_texture 4 | void glPixelTexGenSGIX (GLenum mode) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_pixel_texture_bits: -------------------------------------------------------------------------------- 1 | GL_SGIX_pixel_texture_bits 2 | http://www.opengl.org/registry/specs/SGIX/pixel_texture_bits.txt 3 | GL_SGIX_pixel_texture_bits 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_reference_plane: -------------------------------------------------------------------------------- 1 | GL_SGIX_reference_plane 2 | http://www.opengl.org/registry/specs/SGIX/reference_plane.txt 3 | GL_SGIX_reference_plane 4 | void glReferencePlaneSGIX (const GLdouble* equation) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_resample: -------------------------------------------------------------------------------- 1 | GL_SGIX_resample 2 | http://www.opengl.org/registry/specs/SGIX/resample.txt 3 | GL_SGIX_resample 4 | GL_PACK_RESAMPLE_SGIX 0x842E 5 | GL_UNPACK_RESAMPLE_SGIX 0x842F 6 | GL_RESAMPLE_DECIMATE_SGIX 0x8430 7 | GL_RESAMPLE_REPLICATE_SGIX 0x8433 8 | GL_RESAMPLE_ZERO_FILL_SGIX 0x8434 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_shadow: -------------------------------------------------------------------------------- 1 | GL_SGIX_shadow 2 | http://oss.sgi.com/projects/ogl-sample/registry/SGIX/shadow.txt 3 | GL_SGIX_shadow 4 | GL_TEXTURE_COMPARE_SGIX 0x819A 5 | GL_TEXTURE_COMPARE_OPERATOR_SGIX 0x819B 6 | GL_TEXTURE_LEQUAL_R_SGIX 0x819C 7 | GL_TEXTURE_GEQUAL_R_SGIX 0x819D 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_shadow_ambient: -------------------------------------------------------------------------------- 1 | GL_SGIX_shadow_ambient 2 | http://www.opengl.org/registry/specs/SGIX/shadow_ambient.txt 3 | GL_SGIX_shadow_ambient 4 | GL_SHADOW_AMBIENT_SGIX 0x80BF 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_sprite: -------------------------------------------------------------------------------- 1 | GL_SGIX_sprite 2 | http://www.opengl.org/registry/specs/SGIX/sprite.txt 3 | GL_SGIX_sprite 4 | void glSpriteParameterfSGIX (GLenum pname, GLfloat param) 5 | void glSpriteParameterfvSGIX (GLenum pname, GLfloat* params) 6 | void glSpriteParameteriSGIX (GLenum pname, GLint param) 7 | void glSpriteParameterivSGIX (GLenum pname, GLint* params) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_tag_sample_buffer: -------------------------------------------------------------------------------- 1 | GL_SGIX_tag_sample_buffer 2 | http://www.opengl.org/registry/specs/SGIX/tag_sample_buffer.txt 3 | GL_SGIX_tag_sample_buffer 4 | void glTagSampleBufferSGIX (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_texture_add_env: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_add_env 2 | http://www.opengl.org/registry/specs/SGIX/texture_env_add.txt 3 | GL_SGIX_texture_add_env 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_texture_coordinate_clamp: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_coordinate_clamp 2 | http://www.opengl.org/registry/specs/SGIX/texture_coordinate_clamp.txt 3 | GL_SGIX_texture_coordinate_clamp 4 | GL_TEXTURE_MAX_CLAMP_S_SGIX 0x8369 5 | GL_TEXTURE_MAX_CLAMP_T_SGIX 0x836A 6 | GL_TEXTURE_MAX_CLAMP_R_SGIX 0x836B 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_texture_lod_bias: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_lod_bias 2 | http://www.opengl.org/registry/specs/SGIX/texture_lod_bias.txt 3 | GL_SGIX_texture_lod_bias 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_texture_multi_buffer: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_multi_buffer 2 | http://www.opengl.org/registry/specs/SGIX/texture_multi_buffer.txt 3 | GL_SGIX_texture_multi_buffer 4 | GL_TEXTURE_MULTI_BUFFER_HINT_SGIX 0x812E 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_texture_scale_bias: -------------------------------------------------------------------------------- 1 | GL_SGIX_texture_scale_bias 2 | http://www.opengl.org/registry/specs/SGIX/texture_scale_bias.txt 3 | GL_SGIX_texture_scale_bias 4 | GL_POST_TEXTURE_FILTER_BIAS_SGIX 0x8179 5 | GL_POST_TEXTURE_FILTER_SCALE_SGIX 0x817A 6 | GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX 0x817B 7 | GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX 0x817C 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_vertex_preclip: -------------------------------------------------------------------------------- 1 | GL_SGIX_vertex_preclip 2 | http://www.opengl.org/registry/specs/SGIX/vertex_preclip.txt 3 | GL_SGIX_vertex_preclip 4 | GL_VERTEX_PRECLIP_SGIX 0x83EE 5 | GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_vertex_preclip_hint: -------------------------------------------------------------------------------- 1 | GL_SGIX_vertex_preclip_hint 2 | http://www.opengl.org/registry/specs/SGIX/vertex_preclip.txt 3 | GL_SGIX_vertex_preclip_hint 4 | GL_VERTEX_PRECLIP_SGIX 0x83EE 5 | GL_VERTEX_PRECLIP_HINT_SGIX 0x83EF 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGIX_ycrcb: -------------------------------------------------------------------------------- 1 | GL_SGIX_ycrcb 2 | http://www.opengl.org/registry/specs/SGIX/ycrcb.txt 3 | GL_SGIX_ycrcb 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SGI_texture_color_table: -------------------------------------------------------------------------------- 1 | GL_SGI_texture_color_table 2 | http://www.opengl.org/registry/specs/SGI/texture_color_table.txt 3 | GL_SGI_texture_color_table 4 | GL_TEXTURE_COLOR_TABLE_SGI 0x80BC 5 | GL_PROXY_TEXTURE_COLOR_TABLE_SGI 0x80BD 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SUNX_constant_data: -------------------------------------------------------------------------------- 1 | GL_SUNX_constant_data 2 | http://www.opengl.org/registry/specs/SUNX/constant_data.txt 3 | GL_SUNX_constant_data 4 | GL_UNPACK_CONSTANT_DATA_SUNX 0x81D5 5 | GL_TEXTURE_CONSTANT_DATA_SUNX 0x81D6 6 | void glFinishTextureSUNX (void) 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SUN_convolution_border_modes: -------------------------------------------------------------------------------- 1 | GL_SUN_convolution_border_modes 2 | http://www.opengl.org/registry/specs/SUN/convolution_border_modes.txt 3 | GL_SUN_convolution_border_modes 4 | GL_WRAP_BORDER_SUN 0x81D4 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SUN_mesh_array: -------------------------------------------------------------------------------- 1 | GL_SUN_mesh_array 2 | http://www.opengl.org/registry/specs/SUN/mesh_array.txt 3 | GL_SUN_mesh_array 4 | GL_QUAD_MESH_SUN 0x8614 5 | GL_TRIANGLE_MESH_SUN 0x8615 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SUN_read_video_pixels: -------------------------------------------------------------------------------- 1 | GL_SUN_read_video_pixels 2 | http://wwws.sun.com/software/graphics/opengl/extensions/gl_sun_read_video_pixels.txt 3 | GL_SUN_read_video_pixels 4 | void glReadVideoPixelsSUN (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid* pixels) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_SUN_slice_accum: -------------------------------------------------------------------------------- 1 | GL_SUN_slice_accum 2 | http://www.opengl.org/registry/specs/SUN/slice_accum.txt 3 | GL_SUN_slice_accum 4 | GL_SLICE_ACCUM_SUN 0x85CC 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_WIN_phong_shading: -------------------------------------------------------------------------------- 1 | GL_WIN_phong_shading 2 | http://www.opengl.org/registry/specs/WIN/phong_shading.txt 3 | GL_WIN_phong_shading 4 | GL_PHONG_WIN 0x80EA 5 | GL_PHONG_HINT_WIN 0x80EB 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_WIN_specular_fog: -------------------------------------------------------------------------------- 1 | GL_WIN_specular_fog 2 | http://www.opengl.org/registry/specs/WIN/specular_fog.txt 3 | GL_WIN_specular_fog 4 | GL_FOG_SPECULAR_TEXTURE_WIN 0x80EC 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/GL_WIN_swap_hint: -------------------------------------------------------------------------------- 1 | GL_WIN_swap_hint 2 | http://msdn.microsoft.com/library/default.asp?url=/library/en-us/opengl/glfunc01_16zy.asp 3 | GL_WIN_swap_hint 4 | void glAddSwapHintRectWIN (GLint x, GLint y, GLsizei width, GLsizei height) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_3DFX_multisample: -------------------------------------------------------------------------------- 1 | WGL_3DFX_multisample 2 | http://www.opengl.org/registry/specs/3DFX/3dfx_multisample.txt 3 | WGL_3DFX_multisample 4 | WGL_SAMPLE_BUFFERS_3DFX 0x2060 5 | WGL_SAMPLES_3DFX 0x2061 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_3DL_stereo_control: -------------------------------------------------------------------------------- 1 | WGL_3DL_stereo_control 2 | http://www.opengl.org/registry/specs/3DL/stereo_control.txt 3 | WGL_3DL_stereo_control 4 | WGL_STEREO_EMITTER_ENABLE_3DL 0x2055 5 | WGL_STEREO_EMITTER_DISABLE_3DL 0x2056 6 | WGL_STEREO_POLARITY_NORMAL_3DL 0x2057 7 | WGL_STEREO_POLARITY_INVERT_3DL 0x2058 8 | BOOL wglSetStereoEmitterState3DL (HDC hDC, UINT uState) 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_ARB_create_context: -------------------------------------------------------------------------------- 1 | WGL_ARB_create_context 2 | http://www.opengl.org/registry/specs/ARB/wgl_create_context.txt 3 | WGL_ARB_create_context 4 | WGL_CONTEXT_DEBUG_BIT_ARB 0x0001 5 | WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002 6 | WGL_CONTEXT_MAJOR_VERSION_ARB 0x2091 7 | WGL_CONTEXT_MINOR_VERSION_ARB 0x2092 8 | WGL_CONTEXT_LAYER_PLANE_ARB 0x2093 9 | WGL_CONTEXT_FLAGS_ARB 0x2094 10 | ERROR_INVALID_VERSION_ARB 0x2095 11 | ERROR_INVALID_PROFILE_ARB 0x2096 12 | HGLRC wglCreateContextAttribsARB (HDC hDC, HGLRC hShareContext, const int* attribList) 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_ARB_create_context_profile: -------------------------------------------------------------------------------- 1 | WGL_ARB_create_context_profile 2 | http://www.opengl.org/registry/specs/ARB/wgl_create_context.txt 3 | WGL_ARB_create_context_profile 4 | WGL_CONTEXT_CORE_PROFILE_BIT_ARB 0x00000001 5 | WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002 6 | WGL_CONTEXT_PROFILE_MASK_ARB 0x9126 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_ARB_create_context_robustness: -------------------------------------------------------------------------------- 1 | WGL_ARB_create_context_robustness 2 | http://www.opengl.org/registry/specs/ARB/wgl_create_context_robustness.txt 3 | WGL_ARB_create_context_robustness 4 | WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB 0x00000004 5 | WGL_LOSE_CONTEXT_ON_RESET_ARB 0x8252 6 | WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB 0x8256 7 | WGL_NO_RESET_NOTIFICATION_ARB 0x8261 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_ARB_extensions_string: -------------------------------------------------------------------------------- 1 | WGL_ARB_extensions_string 2 | http://www.opengl.org/registry/specs/ARB/wgl_extensions_string.txt 3 | WGL_ARB_extensions_string 4 | const char* wglGetExtensionsStringARB (HDC hdc) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_ARB_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | WGL_ARB_framebuffer_sRGB 2 | http://www.opengl.org/registry/specs/ARB/framebuffer_sRGB.txt 3 | WGL_ARB_framebuffer_sRGB 4 | WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20A9 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_ARB_make_current_read: -------------------------------------------------------------------------------- 1 | WGL_ARB_make_current_read 2 | http://www.opengl.org/registry/specs/ARB/wgl_make_current_read.txt 3 | WGL_ARB_make_current_read 4 | HDC wglGetCurrentReadDCARB (VOID) 5 | BOOL wglMakeContextCurrentARB (HDC hDrawDC, HDC hReadDC, HGLRC hglrc) 6 | ERROR_INVALID_PIXEL_TYPE_ARB 0x2043 7 | ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB 0x2054 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_ARB_multisample: -------------------------------------------------------------------------------- 1 | WGL_ARB_multisample 2 | http://www.opengl.org/registry/specs/ARB/multisample.txt 3 | WGL_ARB_multisample 4 | WGL_SAMPLE_BUFFERS_ARB 0x2041 5 | WGL_SAMPLES_ARB 0x2042 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_ARB_pixel_format_float: -------------------------------------------------------------------------------- 1 | WGL_ARB_pixel_format_float 2 | http://www.opengl.org/registry/specs/ARB/color_buffer_float.txt 3 | WGL_ARB_pixel_format_float 4 | WGL_TYPE_RGBA_FLOAT_ARB 0x21A0 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_ATI_pixel_format_float: -------------------------------------------------------------------------------- 1 | WGL_ATI_pixel_format_float 2 | http://www.opengl.org/registry/specs/ATI/pixel_format_float.txt 3 | WGL_ATI_pixel_format_float 4 | WGL_TYPE_RGBA_FLOAT_ATI 0x21A0 5 | GL_RGBA_FLOAT_MODE_ATI 0x8820 6 | GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_ATI_render_texture_rectangle: -------------------------------------------------------------------------------- 1 | WGL_ATI_render_texture_rectangle 2 | 3 | WGL_ATI_render_texture_rectangle 4 | WGL_TEXTURE_RECTANGLE_ATI 0x21A5 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_create_context_es2_profile: -------------------------------------------------------------------------------- 1 | WGL_EXT_create_context_es2_profile 2 | http://www.opengl.org/registry/specs/EXT/wgl_create_context_es2_profile.txt 3 | WGL_EXT_create_context_es2_profile 4 | WGL_CONTEXT_ES2_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_create_context_es_profile: -------------------------------------------------------------------------------- 1 | WGL_EXT_create_context_es_profile 2 | http://www.opengl.org/registry/specs/EXT/wgl_create_context_es_profile.txt 3 | WGL_EXT_create_context_es_profile 4 | WGL_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_depth_float: -------------------------------------------------------------------------------- 1 | WGL_EXT_depth_float 2 | http://www.opengl.org/registry/specs/EXT/wgl_depth_float.txt 3 | WGL_EXT_depth_float 4 | WGL_DEPTH_FLOAT_EXT 0x2040 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_display_color_table: -------------------------------------------------------------------------------- 1 | WGL_EXT_display_color_table 2 | http://www.opengl.org/registry/specs/EXT/wgl_display_color_table.txt 3 | WGL_EXT_display_color_table 4 | GLboolean wglBindDisplayColorTableEXT (GLushort id) 5 | GLboolean wglCreateDisplayColorTableEXT (GLushort id) 6 | void wglDestroyDisplayColorTableEXT (GLushort id) 7 | GLboolean wglLoadDisplayColorTableEXT (GLushort* table, GLuint length) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_extensions_string: -------------------------------------------------------------------------------- 1 | WGL_EXT_extensions_string 2 | http://www.opengl.org/registry/specs/EXT/wgl_extensions_string.txt 3 | WGL_EXT_extensions_string 4 | const char* wglGetExtensionsStringEXT (void) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- 1 | WGL_EXT_framebuffer_sRGB 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_framebuffer_sRGB.txt 3 | WGL_EXT_framebuffer_sRGB 4 | WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20A9 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_make_current_read: -------------------------------------------------------------------------------- 1 | WGL_EXT_make_current_read 2 | http://www.opengl.org/registry/specs/EXT/wgl_make_current_read.txt 3 | WGL_EXT_make_current_read 4 | HDC wglGetCurrentReadDCEXT (VOID) 5 | BOOL wglMakeContextCurrentEXT (HDC hDrawDC, HDC hReadDC, HGLRC hglrc) 6 | ERROR_INVALID_PIXEL_TYPE_EXT 0x2043 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_multisample: -------------------------------------------------------------------------------- 1 | WGL_EXT_multisample 2 | http://www.opengl.org/registry/specs/EXT/wgl_multisample.txt 3 | WGL_EXT_multisample 4 | WGL_SAMPLE_BUFFERS_EXT 0x2041 5 | WGL_SAMPLES_EXT 0x2042 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_pixel_format_packed_float: -------------------------------------------------------------------------------- 1 | WGL_EXT_pixel_format_packed_float 2 | http://developer.download.nvidia.com/opengl/specs/GL_EXT_packed_float.txt 3 | WGL_EXT_pixel_format_packed_float 4 | WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT 0x20A8 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_swap_control: -------------------------------------------------------------------------------- 1 | WGL_EXT_swap_control 2 | http://www.opengl.org/registry/specs/EXT/wgl_swap_control.txt 3 | WGL_EXT_swap_control 4 | int wglGetSwapIntervalEXT (void) 5 | BOOL wglSwapIntervalEXT (int interval) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_EXT_swap_control_tear: -------------------------------------------------------------------------------- 1 | WGL_EXT_swap_control_tear 2 | http://www.opengl.org/registry/specs/EXT/wgl_swap_control_tear.txt 3 | WGL_EXT_swap_control_tear 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_I3D_digital_video_control: -------------------------------------------------------------------------------- 1 | WGL_I3D_digital_video_control 2 | http://www.opengl.org/registry/specs/I3D/wgl_digital_video_control.txt 3 | WGL_I3D_digital_video_control 4 | WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D 0x2050 5 | WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D 0x2051 6 | WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D 0x2052 7 | WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D 0x2053 8 | BOOL wglGetDigitalVideoParametersI3D (HDC hDC, int iAttribute, int* piValue) 9 | BOOL wglSetDigitalVideoParametersI3D (HDC hDC, int iAttribute, const int* piValue) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_I3D_gamma: -------------------------------------------------------------------------------- 1 | WGL_I3D_gamma 2 | http://www.opengl.org/registry/specs/I3D/wgl_gamma.txt 3 | WGL_I3D_gamma 4 | WGL_GAMMA_TABLE_SIZE_I3D 0x204E 5 | WGL_GAMMA_EXCLUDE_DESKTOP_I3D 0x204F 6 | BOOL wglGetGammaTableI3D (HDC hDC, int iEntries, USHORT* puRed, USHORT *puGreen, USHORT *puBlue) 7 | BOOL wglGetGammaTableParametersI3D (HDC hDC, int iAttribute, int* piValue) 8 | BOOL wglSetGammaTableI3D (HDC hDC, int iEntries, const USHORT* puRed, const USHORT *puGreen, const USHORT *puBlue) 9 | BOOL wglSetGammaTableParametersI3D (HDC hDC, int iAttribute, const int* piValue) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_I3D_image_buffer: -------------------------------------------------------------------------------- 1 | WGL_I3D_image_buffer 2 | http://www.opengl.org/registry/specs/I3D/wgl_image_buffer.txt 3 | WGL_I3D_image_buffer 4 | WGL_IMAGE_BUFFER_MIN_ACCESS_I3D 0x00000001 5 | WGL_IMAGE_BUFFER_LOCK_I3D 0x00000002 6 | BOOL wglAssociateImageBufferEventsI3D (HDC hdc, HANDLE* pEvent, LPVOID *pAddress, DWORD *pSize, UINT count) 7 | LPVOID wglCreateImageBufferI3D (HDC hDC, DWORD dwSize, UINT uFlags) 8 | BOOL wglDestroyImageBufferI3D (HDC hDC, LPVOID pAddress) 9 | BOOL wglReleaseImageBufferEventsI3D (HDC hdc, LPVOID* pAddress, UINT count) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_I3D_swap_frame_lock: -------------------------------------------------------------------------------- 1 | WGL_I3D_swap_frame_lock 2 | http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_lock.txt 3 | WGL_I3D_swap_frame_lock 4 | BOOL wglDisableFrameLockI3D (VOID) 5 | BOOL wglEnableFrameLockI3D (VOID) 6 | BOOL wglIsEnabledFrameLockI3D (BOOL* pFlag) 7 | BOOL wglQueryFrameLockMasterI3D (BOOL* pFlag) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_I3D_swap_frame_usage: -------------------------------------------------------------------------------- 1 | WGL_I3D_swap_frame_usage 2 | http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_usage.txt 3 | WGL_I3D_swap_frame_usage 4 | BOOL wglBeginFrameTrackingI3D (void) 5 | BOOL wglEndFrameTrackingI3D (void) 6 | BOOL wglGetFrameUsageI3D (float* pUsage) 7 | BOOL wglQueryFrameTrackingI3D (DWORD* pFrameCount, DWORD *pMissedFrames, float *pLastMissedUsage) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_NV_DX_interop2: -------------------------------------------------------------------------------- 1 | WGL_NV_DX_interop2 2 | http://www.opengl.org/registry/specs/NV/DX_interop2.txt 3 | WGL_NV_DX_interop2 4 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_NV_copy_image: -------------------------------------------------------------------------------- 1 | WGL_NV_copy_image 2 | http://www.opengl.org/registry/specs/NV/copy_image.txt 3 | WGL_NV_copy_image 4 | BOOL wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth) 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_NV_float_buffer: -------------------------------------------------------------------------------- 1 | WGL_NV_float_buffer 2 | http://www.opengl.org/registry/specs/NV/float_buffer.txt 3 | WGL_NV_float_buffer 4 | WGL_FLOAT_COMPONENTS_NV 0x20B0 5 | WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV 0x20B1 6 | WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV 0x20B2 7 | WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV 0x20B3 8 | WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV 0x20B4 9 | WGL_TEXTURE_FLOAT_R_NV 0x20B5 10 | WGL_TEXTURE_FLOAT_RG_NV 0x20B6 11 | WGL_TEXTURE_FLOAT_RGB_NV 0x20B7 12 | WGL_TEXTURE_FLOAT_RGBA_NV 0x20B8 13 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_NV_multisample_coverage: -------------------------------------------------------------------------------- 1 | WGL_NV_multisample_coverage 2 | http://www.opengl.org/registry/specs/NV/multisample_coverage.txt 3 | WGL_NV_multisample_coverage 4 | WGL_COVERAGE_SAMPLES_NV 0x2042 5 | WGL_COLOR_SAMPLES_NV 0x20B9 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_NV_present_video: -------------------------------------------------------------------------------- 1 | WGL_NV_present_video 2 | http://www.opengl.org/registry/specs/NV/present_video.txt 3 | WGL_NV_present_video 4 | WGL_NUM_VIDEO_SLOTS_NV 0x20F0 5 | BOOL wglBindVideoDeviceNV (HDC hDc, unsigned int uVideoSlot, HVIDEOOUTPUTDEVICENV hVideoDevice, const int* piAttribList) 6 | int wglEnumerateVideoDevicesNV (HDC hDc, HVIDEOOUTPUTDEVICENV* phDeviceList) 7 | BOOL wglQueryCurrentContextNV (int iAttribute, int* piValue) 8 | DECLARE_HANDLE(HVIDEOOUTPUTDEVICENV); 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_NV_render_depth_texture: -------------------------------------------------------------------------------- 1 | WGL_NV_render_depth_texture 2 | http://www.opengl.org/registry/specs/NV/render_depth_texture.txt 3 | WGL_NV_render_depth_texture 4 | WGL_NO_TEXTURE_ARB 0x2077 5 | WGL_BIND_TO_TEXTURE_DEPTH_NV 0x20A3 6 | WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV 0x20A4 7 | WGL_DEPTH_TEXTURE_FORMAT_NV 0x20A5 8 | WGL_TEXTURE_DEPTH_COMPONENT_NV 0x20A6 9 | WGL_DEPTH_COMPONENT_NV 0x20A7 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_NV_render_texture_rectangle: -------------------------------------------------------------------------------- 1 | WGL_NV_render_texture_rectangle 2 | http://www.opengl.org/registry/specs/NV/render_texture_rectangle.txt 3 | WGL_NV_render_texture_rectangle 4 | WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV 0x20A0 5 | WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV 0x20A1 6 | WGL_TEXTURE_RECTANGLE_NV 0x20A2 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_NV_swap_group: -------------------------------------------------------------------------------- 1 | WGL_NV_swap_group 2 | http://www.opengl.org/registry/specs/NV/wgl_swap_group.txt 3 | WGL_NV_swap_group 4 | BOOL wglBindSwapBarrierNV (GLuint group, GLuint barrier) 5 | BOOL wglJoinSwapGroupNV (HDC hDC, GLuint group) 6 | BOOL wglQueryFrameCountNV (HDC hDC, GLuint* count) 7 | BOOL wglQueryMaxSwapGroupsNV (HDC hDC, GLuint* maxGroups, GLuint *maxBarriers) 8 | BOOL wglQuerySwapGroupNV (HDC hDC, GLuint* group, GLuint *barrier) 9 | BOOL wglResetFrameCountNV (HDC hDC) 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/extensions/WGL_NV_vertex_array_range: -------------------------------------------------------------------------------- 1 | WGL_NV_vertex_array_range 2 | http://oss.sgi.com/projects/ogl-sample/registry/NV/vertex_array_range.txt 3 | WGL_NV_vertex_array_range 4 | void * wglAllocateMemoryNV (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority) 5 | void wglFreeMemoryNV (void *pointer) 6 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/auto/src/glew.rc -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/glew_str_head.c: -------------------------------------------------------------------------------- 1 | #ifdef GLEW_MX 2 | GLboolean GLEWAPIENTRY glewContextIsSupported (const GLEWContext* ctx, const char* name) 3 | #else 4 | GLboolean GLEWAPIENTRY glewIsSupported (const char* name) 5 | #endif 6 | { 7 | GLubyte* pos = (GLubyte*)name; 8 | GLuint len = _glewStrLen(pos); 9 | GLboolean ret = GL_TRUE; 10 | while (ret && len > 0) 11 | { 12 | if (_glewStrSame1(&pos, &len, (const GLubyte*)"GL_", 3)) 13 | { 14 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/glew_str_tail.c: -------------------------------------------------------------------------------- 1 | } 2 | ret = (len == 0); 3 | } 4 | return ret; 5 | } 6 | 7 | #endif /* _WIN32 */ 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/glew_str_wgl.c: -------------------------------------------------------------------------------- 1 | } 2 | ret = (len == 0); 3 | } 4 | return ret; 5 | } 6 | 7 | #if defined(_WIN32) 8 | 9 | #if defined(GLEW_MX) 10 | GLboolean GLEWAPIENTRY wglewContextIsSupported (const WGLEWContext* ctx, const char* name) 11 | #else 12 | GLboolean GLEWAPIENTRY wglewIsSupported (const char* name) 13 | #endif 14 | { 15 | GLubyte* pos = (GLubyte*)name; 16 | GLuint len = _glewStrLen(pos); 17 | GLboolean ret = GL_TRUE; 18 | while (ret && len > 0) 19 | { 20 | if (_glewStrSame1(&pos, &len, (const GLubyte*)"WGL_", 4)) 21 | { 22 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/auto/src/glewinfo.rc -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/glewinfo_gl.c: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------------------------------------ */ 2 | 3 | static void glewInfo (void) 4 | { 5 | #ifdef GL_VERSION_1_1 6 | _glewInfo_GL_VERSION_1_1(); 7 | #endif /* GL_VERSION_1_1 */ 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/glewinfo_glx.c: -------------------------------------------------------------------------------- 1 | } 2 | 3 | #else /* _UNIX */ 4 | 5 | static void glxewInfo () 6 | { 7 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/glewinfo_wgl.c: -------------------------------------------------------------------------------- 1 | } 2 | 3 | /* ------------------------------------------------------------------------ */ 4 | 5 | #ifdef _WIN32 6 | 7 | static void wglewInfo () 8 | { 9 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/glxew_mid.h: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------------------------------------- */ 2 | 3 | #ifdef GLEW_MX 4 | #define GLXEW_FUN_EXPORT 5 | #define GLXEW_VAR_EXPORT 6 | #else 7 | #define GLXEW_FUN_EXPORT GLEW_FUN_EXPORT 8 | #define GLXEW_VAR_EXPORT GLEW_VAR_EXPORT 9 | #endif /* GLEW_MX */ 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/visualinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/auto/src/visualinfo.rc -------------------------------------------------------------------------------- /external/glew-1.9.0/auto/src/wglew_mid.h: -------------------------------------------------------------------------------- 1 | /* ------------------------------------------------------------------------- */ 2 | 3 | #ifdef GLEW_MX 4 | #define WGLEW_FUN_EXPORT 5 | #define WGLEW_VAR_EXPORT 6 | #else 7 | #define WGLEW_FUN_EXPORT GLEW_FUN_EXPORT 8 | #define WGLEW_VAR_EXPORT GLEW_VAR_EXPORT 9 | #endif /* GLEW_MX */ 10 | -------------------------------------------------------------------------------- /external/glew-1.9.0/build/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/build/glew.rc -------------------------------------------------------------------------------- /external/glew-1.9.0/build/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/build/glewinfo.rc -------------------------------------------------------------------------------- /external/glew-1.9.0/build/visualinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/build/visualinfo.rc -------------------------------------------------------------------------------- /external/glew-1.9.0/config/Makefile.fedora-mingw32: -------------------------------------------------------------------------------- 1 | # For cross-compiling from Linux to Windows x86 using mingw32 2 | # http://www.mingw.org/ 3 | # 4 | # $ make SYSTEM=fedora-mingw32 5 | # 6 | 7 | include config/Makefile.linux-mingw32 8 | 9 | CC := i686-pc-mingw32-gcc 10 | LD := i686-pc-mingw32-ld 11 | LDFLAGS.GL += -L/usr/i686-pc-mingw32/sys-root/mingw/lib 12 | -------------------------------------------------------------------------------- /external/glew-1.9.0/config/version: -------------------------------------------------------------------------------- 1 | GLEW_MAJOR = 1 2 | GLEW_MINOR = 9 3 | GLEW_MICRO = 0 4 | GLEW_VERSION = $(GLEW_MAJOR).$(GLEW_MINOR).$(GLEW_MICRO) 5 | GLEW_NAME = GLEW 6 | SO_MAJOR = $(GLEW_MAJOR).$(GLEW_MINOR) 7 | SO_VERSION = $(GLEW_VERSION) 8 | -------------------------------------------------------------------------------- /external/glew-1.9.0/doc/glew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/doc/glew.png -------------------------------------------------------------------------------- /external/glew-1.9.0/doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/doc/new.png -------------------------------------------------------------------------------- /external/glew-1.9.0/doc/ogl_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/doc/ogl_sm.jpg -------------------------------------------------------------------------------- /external/glew-1.9.0/glew.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: glew 7 | Description: The OpenGL Extension Wrangler library 8 | Version: @version@ 9 | Cflags: -I${includedir} @cflags@ 10 | Libs: -L${libdir} -l@libname@ 11 | -------------------------------------------------------------------------------- /external/glew-1.9.0/lib/win32-vc/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/lib/win32-vc/glew32s.lib -------------------------------------------------------------------------------- /external/glew-1.9.0/lib/win32-vc/glew32sd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GPUOpen-LibrariesAndSDKs/DirectGMA_P2P/8200c3615be64234de0e72534a60c6e8d8cb2754/external/glew-1.9.0/lib/win32-vc/glew32sd.lib --------------------------------------------------------------------------------