├── .gitattributes ├── .gitea └── workflows │ ├── linux-clang.yaml │ ├── linux-cmake.yaml │ ├── linux-gcc.yaml │ └── linux-mingw.yaml ├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── .lgtm.yml ├── CMakeLists.txt ├── GeneratePkgConfig.cmake ├── LICENSE.txt ├── Makefile ├── README.md ├── README_glew.md ├── auto ├── Makefile ├── bin │ ├── filter_gl_ext.sh │ ├── filter_gles_ext.sh │ ├── filter_spec.py │ ├── make.pl │ ├── make_def_fun.pl │ ├── make_def_var.pl │ ├── make_enable_index.pl │ ├── make_header.pl │ ├── make_html.pl │ ├── make_index.pl │ ├── make_info.pl │ ├── make_info_list.pl │ ├── make_init.pl │ ├── make_initd.pl │ ├── make_list.pl │ ├── make_list2.pl │ ├── make_str.pl │ ├── make_struct_fun.pl │ ├── make_struct_var.pl │ ├── parse_spec.pl │ ├── parse_xml.py │ └── update_ext.sh ├── blacklist ├── core │ └── gl │ │ ├── EGL_EXT_device_base │ │ ├── EGL_KHR_fence_sync │ │ ├── EGL_KHR_image_base │ │ ├── EGL_KHR_lock_surface3 │ │ ├── EGL_VERSION_1_0 │ │ ├── EGL_VERSION_1_1 │ │ ├── EGL_VERSION_1_2 │ │ ├── EGL_VERSION_1_3 │ │ ├── EGL_VERSION_1_4 │ │ ├── EGL_VERSION_1_5 │ │ ├── GLX_ARB_get_proc_address │ │ ├── GLX_ATI_pixel_format_float │ │ ├── GLX_ATI_render_texture │ │ ├── GLX_EXT_scene_marker │ │ ├── GLX_NV_vertex_array_range │ │ ├── GLX_SGIS_color_range │ │ ├── GLX_SGIX_hyperpipe │ │ ├── GLX_SUN_video_resize │ │ ├── GLX_VERSION_1_2 │ │ ├── GLX_VERSION_1_3 │ │ ├── GLX_VERSION_1_4 │ │ ├── GL_APPLE_float_pixels │ │ ├── GL_APPLE_pixel_buffer │ │ ├── GL_APPLE_texture_range │ │ ├── GL_ARB_draw_instanced │ │ ├── GL_ARB_imaging │ │ ├── GL_ARB_instanced_arrays │ │ ├── GL_ARB_internalformat_query2 │ │ ├── GL_ARB_matrix_palette │ │ ├── GL_ARB_multitexture │ │ ├── GL_ARB_robustness │ │ ├── GL_ARB_separate_shader_objects │ │ ├── GL_ARB_vertex_attrib_64bit │ │ ├── GL_ARB_vertex_blend │ │ ├── GL_ATIX_point_sprites │ │ ├── GL_ATIX_texture_env_combine3 │ │ ├── GL_ATIX_texture_env_route │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ ├── GL_ATI_envmap_bumpmap │ │ ├── GL_ATI_map_object_buffer │ │ ├── GL_ATI_pn_triangles │ │ ├── GL_ATI_separate_stencil │ │ ├── GL_ATI_shader_texture_lod │ │ ├── GL_ATI_texture_compression_3dc │ │ ├── GL_ATI_vertex_streams │ │ ├── GL_EXT_Cg_shader │ │ ├── GL_EXT_bindable_uniform │ │ ├── GL_EXT_debug_marker │ │ ├── GL_EXT_depth_bounds_test │ │ ├── GL_EXT_draw_instanced │ │ ├── GL_EXT_draw_range_elements │ │ ├── GL_EXT_external_buffer │ │ ├── GL_EXT_fog_coord │ │ ├── GL_EXT_framebuffer_sRGB │ │ ├── GL_EXT_geometry_shader4 │ │ ├── GL_EXT_gpu_program_parameters │ │ ├── GL_EXT_gpu_shader4 │ │ ├── GL_EXT_memory_object │ │ ├── GL_EXT_memory_object_fd │ │ ├── GL_EXT_memory_object_win32 │ │ ├── GL_EXT_packed_float │ │ ├── GL_EXT_pixel_buffer_object │ │ ├── GL_EXT_scene_marker │ │ ├── GL_EXT_secondary_color │ │ ├── GL_EXT_semaphore │ │ ├── GL_EXT_semaphore_fd │ │ ├── GL_EXT_semaphore_win32 │ │ ├── GL_EXT_texture_array │ │ ├── GL_EXT_texture_buffer_object │ │ ├── GL_EXT_texture_compression_latc │ │ ├── GL_EXT_texture_compression_rgtc │ │ ├── GL_EXT_texture_cube_map │ │ ├── GL_EXT_texture_edge_clamp │ │ ├── GL_EXT_texture_integer │ │ ├── GL_EXT_texture_rectangle │ │ ├── GL_EXT_texture_shared_exponent │ │ ├── GL_EXT_timer_query │ │ ├── GL_EXT_vertex_shader │ │ ├── GL_KHR_context_flush_control │ │ ├── GL_KTX_buffer_region │ │ ├── GL_NVX_gpu_memory_info │ │ ├── GL_NV_depth_buffer_float │ │ ├── GL_NV_depth_range_unclamped │ │ ├── GL_NV_fragment_program2 │ │ ├── GL_NV_fragment_program4 │ │ ├── GL_NV_fragment_program_option │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ ├── GL_NV_geometry_program4 │ │ ├── GL_NV_geometry_shader4 │ │ ├── GL_NV_gpu_program4 │ │ ├── GL_NV_gpu_program5 │ │ ├── GL_NV_parameter_buffer_object │ │ ├── GL_NV_present_video │ │ ├── GL_NV_sample_locations │ │ ├── GL_NV_tessellation_program5 │ │ ├── GL_NV_transform_feedback │ │ ├── GL_NV_vdpau_interop │ │ ├── GL_NV_vertex_program2_option │ │ ├── GL_NV_vertex_program3 │ │ ├── GL_NV_vertex_program4 │ │ ├── GL_SGIX_shadow │ │ ├── GL_SUN_read_video_pixels │ │ ├── GL_VERSION_1_2 │ │ ├── GL_VERSION_1_2_1 │ │ ├── GL_VERSION_1_3 │ │ ├── GL_VERSION_1_4 │ │ ├── GL_VERSION_1_5 │ │ ├── GL_VERSION_2_0 │ │ ├── GL_VERSION_2_1 │ │ ├── GL_VERSION_3_0 │ │ ├── GL_VERSION_3_1 │ │ ├── GL_VERSION_3_2 │ │ ├── GL_VERSION_3_3 │ │ ├── GL_VERSION_4_0 │ │ ├── GL_VERSION_4_1 │ │ ├── GL_VERSION_4_2 │ │ ├── GL_VERSION_4_3 │ │ ├── GL_VERSION_4_4 │ │ ├── GL_VERSION_4_5 │ │ ├── GL_VERSION_4_6 │ │ ├── GL_WIN_swap_hint │ │ └── WGL_NV_gpu_affinity ├── custom.txt ├── doc │ ├── advanced.html │ ├── basic.html │ ├── build.html │ ├── credits.html │ ├── index.html │ ├── install.html │ └── log.html └── src │ ├── eglew_head.h │ ├── eglew_mid.h │ ├── eglew_tail.h │ ├── footer.html │ ├── glew.rc │ ├── glew_head.c │ ├── glew_head.h │ ├── glew_init_egl.c │ ├── glew_init_gl.c │ ├── glew_init_glx.c │ ├── glew_init_tail.c │ ├── glew_init_wgl.c │ ├── glew_license.h │ ├── glew_str_egl.c │ ├── glew_str_glx.c │ ├── glew_str_head.c │ ├── glew_str_tail.c │ ├── glew_str_wgl.c │ ├── glew_tail.h │ ├── glewinfo.rc │ ├── glewinfo_egl.c │ ├── glewinfo_gl.c │ ├── glewinfo_glx.c │ ├── glewinfo_head.c │ ├── glewinfo_tail.c │ ├── glewinfo_wgl.c │ ├── glxew_head.h │ ├── glxew_mid.h │ ├── glxew_tail.h │ ├── header.html │ ├── khronos_license.h │ ├── mesa_license.h │ ├── visualinfo.rc │ ├── wglew_head.h │ ├── wglew_mid.h │ └── wglew_tail.h ├── azure-pipelines.yml ├── cmake-testbuild.sh ├── config ├── Makefile.cygming ├── Makefile.cygwin ├── Makefile.cygwin-x11 ├── Makefile.darwin ├── Makefile.darwin-arm64 ├── Makefile.darwin-gcc6 ├── Makefile.darwin-ppc ├── Makefile.darwin-universal ├── Makefile.darwin-x86_64 ├── Makefile.fedora-mingw32 ├── Makefile.flatpak-32 ├── Makefile.freebsd ├── Makefile.gnu ├── Makefile.haiku ├── Makefile.irix ├── Makefile.kfreebsd ├── Makefile.linux ├── Makefile.linux-clang ├── Makefile.linux-clang-egl ├── Makefile.linux-egl ├── Makefile.linux-egl-glvnd ├── Makefile.linux-mingw32 ├── Makefile.linux-mingw64 ├── Makefile.linux-mingw64-clang ├── Makefile.linux-osmesa ├── Makefile.mingw ├── Makefile.mingw-win32 ├── Makefile.msys ├── Makefile.msys-win32 ├── Makefile.msys-win64 ├── Makefile.nacl-32 ├── Makefile.nacl-64 ├── Makefile.netbsd ├── Makefile.openbsd ├── Makefile.solaris ├── Makefile.solaris-gcc ├── config.guess └── version ├── doc ├── advanced.html ├── basic.html ├── build.html ├── credits.html ├── eglew.html ├── github.png ├── glew.css ├── glew.html ├── glew.png ├── glew.txt ├── glxew.html ├── gpl.txt ├── index.html ├── install.html ├── khronos.txt ├── log.html ├── mesa.txt ├── new.png ├── ogl_sm.jpg ├── travis.png └── wglew.html ├── glew-cmake ├── Dockerfile ├── cmake-install-test.cmake ├── fetch-content.cmake ├── maintain.sh ├── mingw.cmake └── sub-directory-test.cmake ├── glew.pc.in ├── include └── GL │ ├── eglew.h │ ├── glew.h │ ├── glxew.h │ └── wglew.h └── src ├── glew.c ├── glewinfo.c └── visualinfo.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitea/workflows/linux-clang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/.gitea/workflows/linux-clang.yaml -------------------------------------------------------------------------------- /.gitea/workflows/linux-cmake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/.gitea/workflows/linux-cmake.yaml -------------------------------------------------------------------------------- /.gitea/workflows/linux-gcc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/.gitea/workflows/linux-gcc.yaml -------------------------------------------------------------------------------- /.gitea/workflows/linux-mingw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/.gitea/workflows/linux-mingw.yaml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/.gitignore -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /GeneratePkgConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/GeneratePkgConfig.cmake -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/README.md -------------------------------------------------------------------------------- /README_glew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/README_glew.md -------------------------------------------------------------------------------- /auto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/Makefile -------------------------------------------------------------------------------- /auto/bin/filter_gl_ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/filter_gl_ext.sh -------------------------------------------------------------------------------- /auto/bin/filter_gles_ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/filter_gles_ext.sh -------------------------------------------------------------------------------- /auto/bin/filter_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/filter_spec.py -------------------------------------------------------------------------------- /auto/bin/make.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make.pl -------------------------------------------------------------------------------- /auto/bin/make_def_fun.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_def_fun.pl -------------------------------------------------------------------------------- /auto/bin/make_def_var.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_def_var.pl -------------------------------------------------------------------------------- /auto/bin/make_enable_index.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_enable_index.pl -------------------------------------------------------------------------------- /auto/bin/make_header.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_header.pl -------------------------------------------------------------------------------- /auto/bin/make_html.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_html.pl -------------------------------------------------------------------------------- /auto/bin/make_index.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_index.pl -------------------------------------------------------------------------------- /auto/bin/make_info.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_info.pl -------------------------------------------------------------------------------- /auto/bin/make_info_list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_info_list.pl -------------------------------------------------------------------------------- /auto/bin/make_init.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_init.pl -------------------------------------------------------------------------------- /auto/bin/make_initd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_initd.pl -------------------------------------------------------------------------------- /auto/bin/make_list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_list.pl -------------------------------------------------------------------------------- /auto/bin/make_list2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_list2.pl -------------------------------------------------------------------------------- /auto/bin/make_str.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_str.pl -------------------------------------------------------------------------------- /auto/bin/make_struct_fun.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_struct_fun.pl -------------------------------------------------------------------------------- /auto/bin/make_struct_var.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/make_struct_var.pl -------------------------------------------------------------------------------- /auto/bin/parse_spec.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/parse_spec.pl -------------------------------------------------------------------------------- /auto/bin/parse_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/parse_xml.py -------------------------------------------------------------------------------- /auto/bin/update_ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/bin/update_ext.sh -------------------------------------------------------------------------------- /auto/blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/blacklist -------------------------------------------------------------------------------- /auto/core/gl/EGL_EXT_device_base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/EGL_EXT_device_base -------------------------------------------------------------------------------- /auto/core/gl/EGL_KHR_fence_sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/EGL_KHR_fence_sync -------------------------------------------------------------------------------- /auto/core/gl/EGL_KHR_image_base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/EGL_KHR_image_base -------------------------------------------------------------------------------- /auto/core/gl/EGL_KHR_lock_surface3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/EGL_KHR_lock_surface3 -------------------------------------------------------------------------------- /auto/core/gl/EGL_VERSION_1_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/EGL_VERSION_1_0 -------------------------------------------------------------------------------- /auto/core/gl/EGL_VERSION_1_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/EGL_VERSION_1_1 -------------------------------------------------------------------------------- /auto/core/gl/EGL_VERSION_1_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/EGL_VERSION_1_2 -------------------------------------------------------------------------------- /auto/core/gl/EGL_VERSION_1_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/EGL_VERSION_1_3 -------------------------------------------------------------------------------- /auto/core/gl/EGL_VERSION_1_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/EGL_VERSION_1_4 -------------------------------------------------------------------------------- /auto/core/gl/EGL_VERSION_1_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/EGL_VERSION_1_5 -------------------------------------------------------------------------------- /auto/core/gl/GLX_ARB_get_proc_address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_ARB_get_proc_address -------------------------------------------------------------------------------- /auto/core/gl/GLX_ATI_pixel_format_float: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_ATI_pixel_format_float -------------------------------------------------------------------------------- /auto/core/gl/GLX_ATI_render_texture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_ATI_render_texture -------------------------------------------------------------------------------- /auto/core/gl/GLX_EXT_scene_marker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_EXT_scene_marker -------------------------------------------------------------------------------- /auto/core/gl/GLX_NV_vertex_array_range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_NV_vertex_array_range -------------------------------------------------------------------------------- /auto/core/gl/GLX_SGIS_color_range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_SGIS_color_range -------------------------------------------------------------------------------- /auto/core/gl/GLX_SGIX_hyperpipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_SGIX_hyperpipe -------------------------------------------------------------------------------- /auto/core/gl/GLX_SUN_video_resize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_SUN_video_resize -------------------------------------------------------------------------------- /auto/core/gl/GLX_VERSION_1_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_VERSION_1_2 -------------------------------------------------------------------------------- /auto/core/gl/GLX_VERSION_1_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_VERSION_1_3 -------------------------------------------------------------------------------- /auto/core/gl/GLX_VERSION_1_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GLX_VERSION_1_4 -------------------------------------------------------------------------------- /auto/core/gl/GL_APPLE_float_pixels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_APPLE_float_pixels -------------------------------------------------------------------------------- /auto/core/gl/GL_APPLE_pixel_buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_APPLE_pixel_buffer -------------------------------------------------------------------------------- /auto/core/gl/GL_APPLE_texture_range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_APPLE_texture_range -------------------------------------------------------------------------------- /auto/core/gl/GL_ARB_draw_instanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ARB_draw_instanced -------------------------------------------------------------------------------- /auto/core/gl/GL_ARB_imaging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ARB_imaging -------------------------------------------------------------------------------- /auto/core/gl/GL_ARB_instanced_arrays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ARB_instanced_arrays -------------------------------------------------------------------------------- /auto/core/gl/GL_ARB_internalformat_query2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ARB_internalformat_query2 -------------------------------------------------------------------------------- /auto/core/gl/GL_ARB_matrix_palette: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ARB_matrix_palette -------------------------------------------------------------------------------- /auto/core/gl/GL_ARB_multitexture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ARB_multitexture -------------------------------------------------------------------------------- /auto/core/gl/GL_ARB_robustness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ARB_robustness -------------------------------------------------------------------------------- /auto/core/gl/GL_ARB_separate_shader_objects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ARB_separate_shader_objects -------------------------------------------------------------------------------- /auto/core/gl/GL_ARB_vertex_attrib_64bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ARB_vertex_attrib_64bit -------------------------------------------------------------------------------- /auto/core/gl/GL_ARB_vertex_blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ARB_vertex_blend -------------------------------------------------------------------------------- /auto/core/gl/GL_ATIX_point_sprites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATIX_point_sprites -------------------------------------------------------------------------------- /auto/core/gl/GL_ATIX_texture_env_combine3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATIX_texture_env_combine3 -------------------------------------------------------------------------------- /auto/core/gl/GL_ATIX_texture_env_route: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATIX_texture_env_route -------------------------------------------------------------------------------- /auto/core/gl/GL_ATIX_vertex_shader_output_point_size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATIX_vertex_shader_output_point_size -------------------------------------------------------------------------------- /auto/core/gl/GL_ATI_envmap_bumpmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATI_envmap_bumpmap -------------------------------------------------------------------------------- /auto/core/gl/GL_ATI_map_object_buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATI_map_object_buffer -------------------------------------------------------------------------------- /auto/core/gl/GL_ATI_pn_triangles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATI_pn_triangles -------------------------------------------------------------------------------- /auto/core/gl/GL_ATI_separate_stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATI_separate_stencil -------------------------------------------------------------------------------- /auto/core/gl/GL_ATI_shader_texture_lod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATI_shader_texture_lod -------------------------------------------------------------------------------- /auto/core/gl/GL_ATI_texture_compression_3dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATI_texture_compression_3dc -------------------------------------------------------------------------------- /auto/core/gl/GL_ATI_vertex_streams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_ATI_vertex_streams -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_Cg_shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_Cg_shader -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_bindable_uniform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_bindable_uniform -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_debug_marker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_debug_marker -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_depth_bounds_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_depth_bounds_test -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_draw_instanced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_draw_instanced -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_draw_range_elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_draw_range_elements -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_external_buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_external_buffer -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_fog_coord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_fog_coord -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_framebuffer_sRGB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_framebuffer_sRGB -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_geometry_shader4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_geometry_shader4 -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_gpu_program_parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_gpu_program_parameters -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_gpu_shader4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_gpu_shader4 -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_memory_object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_memory_object -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_memory_object_fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_memory_object_fd -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_memory_object_win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_memory_object_win32 -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_packed_float: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_packed_float -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_pixel_buffer_object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_pixel_buffer_object -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_scene_marker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_scene_marker -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_secondary_color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_secondary_color -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_semaphore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_semaphore -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_semaphore_fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_semaphore_fd -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_semaphore_win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_semaphore_win32 -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_texture_array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_texture_array -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_texture_buffer_object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_texture_buffer_object -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_texture_compression_latc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_texture_compression_latc -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_texture_compression_rgtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_texture_compression_rgtc -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_texture_cube_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_texture_cube_map -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_texture_edge_clamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_texture_edge_clamp -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_texture_integer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_texture_integer -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_texture_rectangle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_texture_rectangle -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_texture_shared_exponent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_texture_shared_exponent -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_timer_query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_timer_query -------------------------------------------------------------------------------- /auto/core/gl/GL_EXT_vertex_shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_EXT_vertex_shader -------------------------------------------------------------------------------- /auto/core/gl/GL_KHR_context_flush_control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_KHR_context_flush_control -------------------------------------------------------------------------------- /auto/core/gl/GL_KTX_buffer_region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_KTX_buffer_region -------------------------------------------------------------------------------- /auto/core/gl/GL_NVX_gpu_memory_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NVX_gpu_memory_info -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_depth_buffer_float: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_depth_buffer_float -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_depth_range_unclamped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_depth_range_unclamped -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_fragment_program2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_fragment_program2 -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_fragment_program4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_fragment_program4 -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_fragment_program_option: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_fragment_program_option -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_framebuffer_multisample_coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_framebuffer_multisample_coverage -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_geometry_program4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_geometry_program4 -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_geometry_shader4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_geometry_shader4 -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_gpu_program4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_gpu_program4 -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_gpu_program5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_gpu_program5 -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_parameter_buffer_object: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_parameter_buffer_object -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_present_video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_present_video -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_sample_locations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_sample_locations -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_tessellation_program5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_tessellation_program5 -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_transform_feedback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_transform_feedback -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_vdpau_interop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_vdpau_interop -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_vertex_program2_option: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_vertex_program2_option -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_vertex_program3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_vertex_program3 -------------------------------------------------------------------------------- /auto/core/gl/GL_NV_vertex_program4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_NV_vertex_program4 -------------------------------------------------------------------------------- /auto/core/gl/GL_SGIX_shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_SGIX_shadow -------------------------------------------------------------------------------- /auto/core/gl/GL_SUN_read_video_pixels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_SUN_read_video_pixels -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_1_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_1_2 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_1_2_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_1_2_1 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_1_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_1_3 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_1_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_1_4 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_1_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_1_5 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_2_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_2_0 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_2_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_2_1 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_3_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_3_0 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_3_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_3_1 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_3_2 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_3_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_3_3 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_4_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_4_0 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_4_1: -------------------------------------------------------------------------------- 1 | GL_VERSION_4_1 2 | https://www.opengl.org/registry/doc/glspec41.compatibility.20100725.pdf 3 | 4 | -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_4_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_4_2 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_4_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_4_3 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_4_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_4_4 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_4_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_4_5 -------------------------------------------------------------------------------- /auto/core/gl/GL_VERSION_4_6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_VERSION_4_6 -------------------------------------------------------------------------------- /auto/core/gl/GL_WIN_swap_hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/GL_WIN_swap_hint -------------------------------------------------------------------------------- /auto/core/gl/WGL_NV_gpu_affinity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/core/gl/WGL_NV_gpu_affinity -------------------------------------------------------------------------------- /auto/custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/custom.txt -------------------------------------------------------------------------------- /auto/doc/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/doc/advanced.html -------------------------------------------------------------------------------- /auto/doc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/doc/basic.html -------------------------------------------------------------------------------- /auto/doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/doc/build.html -------------------------------------------------------------------------------- /auto/doc/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/doc/credits.html -------------------------------------------------------------------------------- /auto/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/doc/index.html -------------------------------------------------------------------------------- /auto/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/doc/install.html -------------------------------------------------------------------------------- /auto/doc/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/doc/log.html -------------------------------------------------------------------------------- /auto/src/eglew_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/eglew_head.h -------------------------------------------------------------------------------- /auto/src/eglew_mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/eglew_mid.h -------------------------------------------------------------------------------- /auto/src/eglew_tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/eglew_tail.h -------------------------------------------------------------------------------- /auto/src/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/footer.html -------------------------------------------------------------------------------- /auto/src/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew.rc -------------------------------------------------------------------------------- /auto/src/glew_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_head.c -------------------------------------------------------------------------------- /auto/src/glew_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_head.h -------------------------------------------------------------------------------- /auto/src/glew_init_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_init_egl.c -------------------------------------------------------------------------------- /auto/src/glew_init_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_init_gl.c -------------------------------------------------------------------------------- /auto/src/glew_init_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_init_glx.c -------------------------------------------------------------------------------- /auto/src/glew_init_tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_init_tail.c -------------------------------------------------------------------------------- /auto/src/glew_init_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_init_wgl.c -------------------------------------------------------------------------------- /auto/src/glew_license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_license.h -------------------------------------------------------------------------------- /auto/src/glew_str_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_str_egl.c -------------------------------------------------------------------------------- /auto/src/glew_str_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_str_glx.c -------------------------------------------------------------------------------- /auto/src/glew_str_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_str_head.c -------------------------------------------------------------------------------- /auto/src/glew_str_tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_str_tail.c -------------------------------------------------------------------------------- /auto/src/glew_str_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_str_wgl.c -------------------------------------------------------------------------------- /auto/src/glew_tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glew_tail.h -------------------------------------------------------------------------------- /auto/src/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glewinfo.rc -------------------------------------------------------------------------------- /auto/src/glewinfo_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glewinfo_egl.c -------------------------------------------------------------------------------- /auto/src/glewinfo_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glewinfo_gl.c -------------------------------------------------------------------------------- /auto/src/glewinfo_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glewinfo_glx.c -------------------------------------------------------------------------------- /auto/src/glewinfo_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glewinfo_head.c -------------------------------------------------------------------------------- /auto/src/glewinfo_tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glewinfo_tail.c -------------------------------------------------------------------------------- /auto/src/glewinfo_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glewinfo_wgl.c -------------------------------------------------------------------------------- /auto/src/glxew_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glxew_head.h -------------------------------------------------------------------------------- /auto/src/glxew_mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glxew_mid.h -------------------------------------------------------------------------------- /auto/src/glxew_tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/glxew_tail.h -------------------------------------------------------------------------------- /auto/src/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/header.html -------------------------------------------------------------------------------- /auto/src/khronos_license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/khronos_license.h -------------------------------------------------------------------------------- /auto/src/mesa_license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/mesa_license.h -------------------------------------------------------------------------------- /auto/src/visualinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/visualinfo.rc -------------------------------------------------------------------------------- /auto/src/wglew_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/wglew_head.h -------------------------------------------------------------------------------- /auto/src/wglew_mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/wglew_mid.h -------------------------------------------------------------------------------- /auto/src/wglew_tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/auto/src/wglew_tail.h -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /cmake-testbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/cmake-testbuild.sh -------------------------------------------------------------------------------- /config/Makefile.cygming: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.cygming -------------------------------------------------------------------------------- /config/Makefile.cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.cygwin -------------------------------------------------------------------------------- /config/Makefile.cygwin-x11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.cygwin-x11 -------------------------------------------------------------------------------- /config/Makefile.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.darwin -------------------------------------------------------------------------------- /config/Makefile.darwin-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.darwin-arm64 -------------------------------------------------------------------------------- /config/Makefile.darwin-gcc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.darwin-gcc6 -------------------------------------------------------------------------------- /config/Makefile.darwin-ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.darwin-ppc -------------------------------------------------------------------------------- /config/Makefile.darwin-universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.darwin-universal -------------------------------------------------------------------------------- /config/Makefile.darwin-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.darwin-x86_64 -------------------------------------------------------------------------------- /config/Makefile.fedora-mingw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.fedora-mingw32 -------------------------------------------------------------------------------- /config/Makefile.flatpak-32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.flatpak-32 -------------------------------------------------------------------------------- /config/Makefile.freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.freebsd -------------------------------------------------------------------------------- /config/Makefile.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.gnu -------------------------------------------------------------------------------- /config/Makefile.haiku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.haiku -------------------------------------------------------------------------------- /config/Makefile.irix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.irix -------------------------------------------------------------------------------- /config/Makefile.kfreebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.kfreebsd -------------------------------------------------------------------------------- /config/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.linux -------------------------------------------------------------------------------- /config/Makefile.linux-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.linux-clang -------------------------------------------------------------------------------- /config/Makefile.linux-clang-egl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.linux-clang-egl -------------------------------------------------------------------------------- /config/Makefile.linux-egl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.linux-egl -------------------------------------------------------------------------------- /config/Makefile.linux-egl-glvnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.linux-egl-glvnd -------------------------------------------------------------------------------- /config/Makefile.linux-mingw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.linux-mingw32 -------------------------------------------------------------------------------- /config/Makefile.linux-mingw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.linux-mingw64 -------------------------------------------------------------------------------- /config/Makefile.linux-mingw64-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.linux-mingw64-clang -------------------------------------------------------------------------------- /config/Makefile.linux-osmesa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.linux-osmesa -------------------------------------------------------------------------------- /config/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.mingw -------------------------------------------------------------------------------- /config/Makefile.mingw-win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.mingw-win32 -------------------------------------------------------------------------------- /config/Makefile.msys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.msys -------------------------------------------------------------------------------- /config/Makefile.msys-win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.msys-win32 -------------------------------------------------------------------------------- /config/Makefile.msys-win64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.msys-win64 -------------------------------------------------------------------------------- /config/Makefile.nacl-32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.nacl-32 -------------------------------------------------------------------------------- /config/Makefile.nacl-64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.nacl-64 -------------------------------------------------------------------------------- /config/Makefile.netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.netbsd -------------------------------------------------------------------------------- /config/Makefile.openbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.openbsd -------------------------------------------------------------------------------- /config/Makefile.solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.solaris -------------------------------------------------------------------------------- /config/Makefile.solaris-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/Makefile.solaris-gcc -------------------------------------------------------------------------------- /config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/config.guess -------------------------------------------------------------------------------- /config/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/config/version -------------------------------------------------------------------------------- /doc/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/advanced.html -------------------------------------------------------------------------------- /doc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/basic.html -------------------------------------------------------------------------------- /doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/build.html -------------------------------------------------------------------------------- /doc/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/credits.html -------------------------------------------------------------------------------- /doc/eglew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/eglew.html -------------------------------------------------------------------------------- /doc/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/github.png -------------------------------------------------------------------------------- /doc/glew.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/glew.css -------------------------------------------------------------------------------- /doc/glew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/glew.html -------------------------------------------------------------------------------- /doc/glew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/glew.png -------------------------------------------------------------------------------- /doc/glew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/glew.txt -------------------------------------------------------------------------------- /doc/glxew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/glxew.html -------------------------------------------------------------------------------- /doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/gpl.txt -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/install.html -------------------------------------------------------------------------------- /doc/khronos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/khronos.txt -------------------------------------------------------------------------------- /doc/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/log.html -------------------------------------------------------------------------------- /doc/mesa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/mesa.txt -------------------------------------------------------------------------------- /doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/new.png -------------------------------------------------------------------------------- /doc/ogl_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/ogl_sm.jpg -------------------------------------------------------------------------------- /doc/travis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/travis.png -------------------------------------------------------------------------------- /doc/wglew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/doc/wglew.html -------------------------------------------------------------------------------- /glew-cmake/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/glew-cmake/Dockerfile -------------------------------------------------------------------------------- /glew-cmake/cmake-install-test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/glew-cmake/cmake-install-test.cmake -------------------------------------------------------------------------------- /glew-cmake/fetch-content.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/glew-cmake/fetch-content.cmake -------------------------------------------------------------------------------- /glew-cmake/maintain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/glew-cmake/maintain.sh -------------------------------------------------------------------------------- /glew-cmake/mingw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/glew-cmake/mingw.cmake -------------------------------------------------------------------------------- /glew-cmake/sub-directory-test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/glew-cmake/sub-directory-test.cmake -------------------------------------------------------------------------------- /glew.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/glew.pc.in -------------------------------------------------------------------------------- /include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/include/GL/eglew.h -------------------------------------------------------------------------------- /include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/include/GL/glew.h -------------------------------------------------------------------------------- /include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/include/GL/glxew.h -------------------------------------------------------------------------------- /include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/include/GL/wglew.h -------------------------------------------------------------------------------- /src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/src/glew.c -------------------------------------------------------------------------------- /src/glewinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/src/glewinfo.c -------------------------------------------------------------------------------- /src/visualinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Perlmint/glew-cmake/HEAD/src/visualinfo.c --------------------------------------------------------------------------------