├── .gitignore ├── 3rdParty ├── Corona-1.0.2-Static │ ├── Makefile.am │ ├── bootstrap │ ├── config │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── missing │ │ └── mkinstalldirs │ ├── configure.in │ ├── corona-config.in │ ├── doc │ │ ├── Makefile.am │ │ ├── changelog.txt │ │ ├── code_guidelines.txt │ │ ├── faq.txt │ │ ├── license.txt │ │ ├── literature.txt │ │ ├── readme.txt │ │ ├── release-howto.txt │ │ └── tutorial.txt │ ├── src │ │ ├── Convert.cpp │ │ ├── Corona.cpp │ │ ├── Debug.cpp │ │ ├── Debug.h │ │ ├── DefaultFileSystem.cpp │ │ ├── Makefile.am │ │ ├── MemoryFile.cpp │ │ ├── MemoryFile.h │ │ ├── Open.h │ │ ├── OpenBMP.cpp │ │ ├── OpenGIF.cpp │ │ ├── OpenJPEG.cpp │ │ ├── OpenPCX.cpp │ │ ├── OpenPNG.cpp │ │ ├── OpenTGA.cpp │ │ ├── SConscript │ │ ├── Save.h │ │ ├── SaveJPEG.cpp │ │ ├── SavePNG.cpp │ │ ├── SaveTGA.cpp │ │ ├── SimpleImage.h │ │ ├── Types.h │ │ ├── Utility.h │ │ ├── corona.h │ │ ├── jpeg-6b │ │ │ ├── README │ │ │ ├── change.log │ │ │ ├── filelist.doc │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jchuff.h │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jconfig.h │ │ │ ├── jcparam.c │ │ │ ├── jcphuff.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdatadst.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolor.c │ │ │ ├── jdct.h │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdhuff.h │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdosaobj.doc │ │ │ ├── jdphuff.c │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jerror.h │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jidctred.c │ │ │ ├── jinclude.h │ │ │ ├── jmemmgr.c │ │ │ ├── jmemnobs.c │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ ├── jutils.c │ │ │ ├── jversion.h │ │ │ ├── libjpeg.doc │ │ │ ├── makvms.opt │ │ │ ├── readme.dos │ │ │ ├── structure.doc │ │ │ ├── usage.doc │ │ │ └── wizard.doc │ │ ├── libpng-1.2.1 │ │ │ ├── ANNOUNCE │ │ │ ├── CHANGES │ │ │ ├── INSTALL │ │ │ ├── KNOWNBUG │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── Y2KINFO │ │ │ ├── libpng.txt │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngasmrd.h │ │ │ ├── pngconf.h │ │ │ ├── pngerror.c │ │ │ ├── pnggccrd.c │ │ │ ├── pngget.c │ │ │ ├── pngmem.c │ │ │ ├── pngpread.c │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngtest.c │ │ │ ├── pngtrans.c │ │ │ ├── pngvcrd.c │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ └── pngwutil.c │ │ ├── libungif-4.1.0 │ │ │ ├── Makefile.am │ │ │ ├── SConscript │ │ │ ├── dgif_lib.c │ │ │ ├── gif_err.c │ │ │ ├── gif_lib.h │ │ │ ├── gif_lib_private.h │ │ │ └── gifalloc.c │ │ └── zlib-1.1.4 │ │ │ ├── ChangeLog │ │ │ ├── FAQ │ │ │ ├── INDEX │ │ │ ├── README │ │ │ ├── adler32.c │ │ │ ├── algorithm.txt │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzio.c │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ ├── vc6 │ │ ├── corona.dsw │ │ ├── corona.sln │ │ └── corona │ │ │ ├── CoronaStatic.dsp │ │ │ └── corona.dsp │ ├── vc7 │ │ ├── Corona.snk │ │ ├── ManagedWrapper.cpp │ │ ├── corona.sln │ │ ├── corona.vcproj │ │ └── corona_static.vcproj │ └── vc8 │ │ └── corona │ │ └── CoronaStatic.vcproj ├── HeaderGen │ ├── GLLoadeGenGLI.py │ ├── Readme.txt │ ├── SortFile.py │ ├── XMLGenGLI.py │ ├── egl.xml │ ├── gl.xml │ ├── glx.xml │ └── wgl.xml ├── Install │ ├── Common.iss │ ├── installScript.iss │ └── installScriptx64.iss └── OpenGLCompilerSept202005 │ ├── BuildLinux.sh │ ├── OGLCompilersDLL │ ├── InitializeDll.cpp │ ├── InitializeDll.h │ └── Makefile │ ├── README.txt │ ├── StandAlone.sln │ ├── StandAlone.vcproj │ ├── StandAlone │ ├── Makefile │ ├── StandAlone.cpp │ ├── sample.frag │ ├── sample.frag.out │ ├── sample.vert │ └── sample.vert.out │ ├── glslang.vcproj │ ├── glslang │ ├── GenericCodeGen │ │ ├── CodeGen.cpp │ │ ├── Link.cpp │ │ └── Makefile │ ├── Include │ │ ├── BaseTypes.h │ │ ├── Common.h │ │ ├── ConstantUnion.h │ │ ├── InfoSink.h │ │ ├── InitializeGlobals.h │ │ ├── InitializeParseContext.h │ │ ├── PoolAlloc.h │ │ ├── ResourceLimits.h │ │ ├── ShHandle.h │ │ ├── Types.h │ │ └── intermediate.h │ ├── MachineIndependent │ │ ├── InfoSink.cpp │ │ ├── Initialize.cpp │ │ ├── Initialize.h │ │ ├── IntermTraverse.cpp │ │ ├── Intermediate.cpp │ │ ├── MMap.h │ │ ├── Makefile │ │ ├── ParseHelper.cpp │ │ ├── ParseHelper.h │ │ ├── PoolAlloc.cpp │ │ ├── QualifierAlive.cpp │ │ ├── QualifierAlive.h │ │ ├── RemoveTree.cpp │ │ ├── RemoveTree.h │ │ ├── ShaderLang.cpp │ │ ├── SymbolTable.cpp │ │ ├── SymbolTable.h │ │ ├── glslang.l │ │ ├── glslang.y │ │ ├── intermOut.cpp │ │ ├── localintermediate.h │ │ ├── parseConst.cpp │ │ ├── preprocessor │ │ │ ├── Makefile │ │ │ ├── atom.c │ │ │ ├── atom.h │ │ │ ├── compile.h │ │ │ ├── cpp.c │ │ │ ├── cpp.h │ │ │ ├── cppstruct.c │ │ │ ├── memory.c │ │ │ ├── memory.h │ │ │ ├── parser.h │ │ │ ├── preprocess.h │ │ │ ├── scanner.c │ │ │ ├── scanner.h │ │ │ ├── slglobals.h │ │ │ ├── symbols.c │ │ │ ├── symbols.h │ │ │ ├── tokens.c │ │ │ └── tokens.h │ │ └── unistd.h │ ├── OSDependent │ │ ├── Linux │ │ │ ├── Makefile │ │ │ ├── osinclude.h │ │ │ └── ossource.cpp │ │ └── Windows │ │ │ ├── main.cpp │ │ │ ├── osinclude.h │ │ │ └── ossource.cpp │ └── Public │ │ └── ShaderLang.h │ └── tools │ ├── bison.exe │ ├── bison.hairy │ ├── bison.simple │ └── flex.exe ├── Bin ├── GLFunctions │ ├── ARB │ │ ├── ARB_bindless_texture_Include.h │ │ ├── ARB_cl_event_Include.h │ │ ├── ARB_color_buffer_float_Include.h │ │ ├── ARB_compute_variable_group_size_Include.h │ │ ├── ARB_debug_output_Include.h │ │ ├── ARB_draw_buffers_Include.h │ │ ├── ARB_draw_buffers_blend_Include.h │ │ ├── ARB_draw_instanced_Include.h │ │ ├── ARB_es3_2_compatibility_Include.h │ │ ├── ARB_geometry_shader4_Include.h │ │ ├── ARB_gpu_shader_int64_Include.h │ │ ├── ARB_indirect_parameters_Include.h │ │ ├── ARB_instanced_arrays_Include.h │ │ ├── ARB_matrix_palette_Include.h │ │ ├── ARB_multisample_Include.h │ │ ├── ARB_multitexture_Include.h │ │ ├── ARB_occlusion_query_Include.h │ │ ├── ARB_parallel_shader_compile_Include.h │ │ ├── ARB_pipeline_statistics_query_Include.h │ │ ├── ARB_point_parameters_Include.h │ │ ├── ARB_robustness_Include.h │ │ ├── ARB_sample_locations_Include.h │ │ ├── ARB_sample_shading_Include.h │ │ ├── ARB_shader_objects_Include.h │ │ ├── ARB_shading_language_include_Include.h │ │ ├── ARB_shadow_ambient_Include.h │ │ ├── ARB_sparse_buffer_Include.h │ │ ├── ARB_sparse_texture_Include.h │ │ ├── ARB_texture_buffer_object_Include.h │ │ ├── ARB_texture_compression_Include.h │ │ ├── ARB_texture_filter_minmax_Include.h │ │ ├── ARB_texture_float_Include.h │ │ ├── ARB_texture_storage_Include.h │ │ ├── ARB_transform_feedback_overflow_query_Include.h │ │ ├── ARB_transpose_matrix_Include.h │ │ ├── ARB_vertex_blend_Include.h │ │ ├── ARB_vertex_buffer_object_Include.h │ │ ├── ARB_vertex_fragment_program_Include.h │ │ ├── ARB_vertex_fragment_shader_Include.h │ │ └── ARB_window_pos_Include.h │ ├── ATI │ │ ├── ATI_draw_buffers_Include.h │ │ ├── ATI_envmap_bumpmap_Include.h │ │ ├── ATI_fragment_shader_Include.h │ │ ├── ATI_meminfo_Include.h │ │ ├── ATI_pn_triangles_Include.h │ │ ├── ATI_separate_stencil_Include.h │ │ ├── ATI_text_fragment_shader_Include.h │ │ ├── ATI_texture_compression_3dc_Include.h │ │ ├── ATI_texture_env_combine3_Include.h │ │ ├── ATI_vertex_object_Include.h │ │ └── ATI_vertex_streams_Include.h │ ├── GLCore │ │ ├── GLCore1_1_Include.h │ │ ├── GLCore1_2_Include.h │ │ ├── GLCore1_3_Include.h │ │ ├── GLCore1_4_Include.h │ │ ├── GLCore1_5_Include.h │ │ ├── GLCore2_0_Include.h │ │ ├── GLCore2_1_Include.h │ │ ├── GLCore3_0_Include.h │ │ ├── GLCore3_1_Include.h │ │ ├── GLCore3_2_Include.h │ │ ├── GLCore3_3_Include.h │ │ ├── GLCore4_0_Include.h │ │ ├── GLCore4_1_Include.h │ │ ├── GLCore4_2_Include.h │ │ ├── GLCore4_3_Include.h │ │ ├── GLCore4_4_Include.h │ │ ├── GLCore4_5_Include.h │ │ └── GLES1_0_Include.h │ ├── Misc │ │ ├── 3DFX_multisample_Include.h │ │ ├── 3DFX_tbuffer_Include.h │ │ ├── 3DFX_texture_compression_fxt1_Include.h │ │ ├── AMD_blend_minmax_factor_Include.h │ │ ├── AMD_compressed_3dc_texture_Include.h │ │ ├── AMD_compressed_atc_texture_Include.h │ │ ├── AMD_debug_output_Include.h │ │ ├── AMD_depth_clamp_separate_Include.h │ │ ├── AMD_draw_buffers_blend_Include.h │ │ ├── AMD_interleaved_elements_Include.h │ │ ├── AMD_multi_draw_indirect_Include.h │ │ ├── AMD_name_gen_delete_Include.h │ │ ├── AMD_occlusion_query_event_Include.h │ │ ├── AMD_performance_monitor_Include.h │ │ ├── AMD_pinned_memory_Include.h │ │ ├── AMD_program_binary_z400_Include.h │ │ ├── AMD_sample_positions_Include.h │ │ ├── AMD_sparse_texture_Include.h │ │ ├── AMD_stencil_operation_extended_Include.h │ │ ├── AMD_transform_feedback4_Include.h │ │ ├── AMD_vertex_shader_tessellator_Include.h │ │ ├── ANGLE_framebuffer_blit_Include.h │ │ ├── ANGLE_framebuffer_multisample_Include.h │ │ ├── ANGLE_instanced_arrays_Include.h │ │ ├── ANGLE_pack_reverse_row_order_Include.h │ │ ├── ANGLE_program_binary_Include.h │ │ ├── ANGLE_texture_usage_Include.h │ │ ├── ANGLE_translated_shader_source_Include.h │ │ ├── APPLE_aux_depth_stencil_Include.h │ │ ├── APPLE_client_storage_Include.h │ │ ├── APPLE_copy_texture_levels_Include.h │ │ ├── APPLE_element_array_Include.h │ │ ├── APPLE_fence_Include.h │ │ ├── APPLE_float_pixels_Include.h │ │ ├── APPLE_flush_buffer_range_Include.h │ │ ├── APPLE_framebuffer_multisample_Include.h │ │ ├── APPLE_object_purgeable_Include.h │ │ ├── APPLE_rgb_422_Include.h │ │ ├── APPLE_row_bytes_Include.h │ │ ├── APPLE_specular_vector_Include.h │ │ ├── APPLE_sync_Include.h │ │ ├── APPLE_texture_range_Include.h │ │ ├── APPLE_transform_hint_Include.h │ │ ├── APPLE_vertex_array_object_Include.h │ │ ├── APPLE_vertex_array_range_Include.h │ │ ├── APPLE_vertex_program_evaluators_Include.h │ │ ├── APPLE_ycbcr_422_Include.h │ │ ├── ARM_mali_program_binary_Include.h │ │ ├── ARM_mali_shader_binary_Include.h │ │ ├── ARM_shader_framebuffer_fetch_Include.h │ │ ├── DMP_program_binary_Include.h │ │ ├── DMP_shader_binary_Include.h │ │ ├── EXT_422_pixels_Include.h │ │ ├── EXT_abgr_Include.h │ │ ├── EXT_base_instance_Include.h │ │ ├── EXT_bindable_uniform_Include.h │ │ ├── EXT_blend_Include.h │ │ ├── EXT_blend_func_extended_Include.h │ │ ├── EXT_buffer_storage_Include.h │ │ ├── EXT_clip_volume_hint_Include.h │ │ ├── EXT_cmyka_Include.h │ │ ├── EXT_color_subtable_Include.h │ │ ├── EXT_compiled_vertex_array_Include.h │ │ ├── EXT_convolution_Include.h │ │ ├── EXT_coordinate_frame_Include.h │ │ ├── EXT_copy_image_Include.h │ │ ├── EXT_copy_texture_Include.h │ │ ├── EXT_cull_vertex_Include.h │ │ ├── EXT_debug_label_Include.h │ │ ├── EXT_debug_marker_Include.h │ │ ├── EXT_depth_bounds_test_Include.h │ │ ├── EXT_direct_state_access_Include.h │ │ ├── EXT_discard_framebuffer_Include.h │ │ ├── EXT_disjoint_timer_query_Include.h │ │ ├── EXT_draw_buffers2_Include.h │ │ ├── EXT_draw_buffers_Include.h │ │ ├── EXT_draw_buffers_indexed_Include.h │ │ ├── EXT_draw_elements_base_vertex_Include.h │ │ ├── EXT_draw_instanced_Include.h │ │ ├── EXT_draw_range_elements_Include.h │ │ ├── EXT_fog_coord_Include.h │ │ ├── EXT_frame_buffer_object_Include.h │ │ ├── EXT_framebuffer_blit_Include.h │ │ ├── EXT_framebuffer_multisample_Include.h │ │ ├── EXT_framebuffer_multisample_blit_scaled_Include.h │ │ ├── EXT_framebuffer_sRGB_Include.h │ │ ├── EXT_geometry_shader4_Include.h │ │ ├── EXT_gpu_program_parameters_Include.h │ │ ├── EXT_gpu_shader4_Include.h │ │ ├── EXT_histogram_Include.h │ │ ├── EXT_index_array_formats_Include.h │ │ ├── EXT_index_func_Include.h │ │ ├── EXT_index_material_Include.h │ │ ├── EXT_instanced_arrays_Include.h │ │ ├── EXT_legacy_Include.h │ │ ├── EXT_light_texture_Include.h │ │ ├── EXT_map_buffer_range_Include.h │ │ ├── EXT_multi_draw_arrays_Include.h │ │ ├── EXT_multi_draw_indirect_Include.h │ │ ├── EXT_multisample_Include.h │ │ ├── EXT_multisampled_render_to_texture_Include.h │ │ ├── EXT_multiview_draw_buffers_Include.h │ │ ├── EXT_packed_float_Include.h │ │ ├── EXT_paletted_texture_Include.h │ │ ├── EXT_pixel_transform_Include.h │ │ ├── EXT_point_parameters_Include.h │ │ ├── EXT_polygon_offset_Include.h │ │ ├── EXT_polygon_offset_clamp_Include.h │ │ ├── EXT_primitive_bounding_box_Include.h │ │ ├── EXT_protected_textures_Include.h │ │ ├── EXT_provoking_vertex_Include.h │ │ ├── EXT_pvrtc_srgb_Include.h │ │ ├── EXT_raster_multisample_Include.h │ │ ├── EXT_robustness_Include.h │ │ ├── EXT_secondary_color_Include.h │ │ ├── EXT_separate_shader_objects_Include.h │ │ ├── EXT_shader_framebuffer_fetch_Include.h │ │ ├── EXT_shader_image_load_store_Include.h │ │ ├── EXT_shader_pixel_local_storage2_Include.h │ │ ├── EXT_shader_pixel_local_storage_Include.h │ │ ├── EXT_shared_texture_palette_Include.h │ │ ├── EXT_sparse_texture_Include.h │ │ ├── EXT_stencil_clear_tag_Include.h │ │ ├── EXT_stencil_two_side_Include.h │ │ ├── EXT_subtexture_Include.h │ │ ├── EXT_tessellation_shader_Include.h │ │ ├── EXT_texture3D_Include.h │ │ ├── EXT_texture_border_clamp_Include.h │ │ ├── EXT_texture_buffer_Include.h │ │ ├── EXT_texture_compression_latc_Include.h │ │ ├── EXT_texture_compression_s3tc_Include.h │ │ ├── EXT_texture_filter_anisotropic_Include.h │ │ ├── EXT_texture_integer_Include.h │ │ ├── EXT_texture_mirror_clamp_Include.h │ │ ├── EXT_texture_object_Include.h │ │ ├── EXT_texture_perturb_normal_Include.h │ │ ├── EXT_texture_sRGB_Include.h │ │ ├── EXT_texture_snorm_Include.h │ │ ├── EXT_texture_srgb_decode_Include.h │ │ ├── EXT_texture_srgb_r8_Include.h │ │ ├── EXT_texture_srgb_rg8_Include.h │ │ ├── EXT_texture_storage_Include.h │ │ ├── EXT_texture_view_Include.h │ │ ├── EXT_timer_query_Include.h │ │ ├── EXT_transform_feedback_Include.h │ │ ├── EXT_vertex_array_Include.h │ │ ├── EXT_vertex_attrib_64bit_Include.h │ │ ├── EXT_vertex_shader_Include.h │ │ ├── EXT_vertex_weighting_Include.h │ │ ├── EXT_window_rectangles_Include.h │ │ ├── EXT_x11_sync_object_Include.h │ │ ├── EXT_yuv_target_Include.h │ │ ├── FJ_shader_binary_gccso_Include.h │ │ ├── GREMEDY_frame_terminator_Include.h │ │ ├── GREMEDY_string_marker_Include.h │ │ ├── HP_convolution_border_modes_Include.h │ │ ├── HP_image_transform_Include.h │ │ ├── HP_occlusion_test_Include.h │ │ ├── HP_texture_lighting_Include.h │ │ ├── IBM_cull_vertex_Include.h │ │ ├── IBM_multimode_draw_arrays_Include.h │ │ ├── IBM_rasterpos_clip_Include.h │ │ ├── IBM_static_data_Include.h │ │ ├── IBM_vertex_array_lists_Include.h │ │ ├── IMG_framebuffer_downsample_Include.h │ │ ├── IMG_multisampled_render_to_texture_Include.h │ │ ├── IMG_program_binary_Include.h │ │ ├── IMG_shader_binary_Include.h │ │ ├── IMG_texture_compression_pvrtc2_Include.h │ │ ├── IMG_texture_compression_pvrtc_Include.h │ │ ├── IMG_texture_env_enhanced_fixed_function_Include.h │ │ ├── IMG_texture_filter_cubic_Include.h │ │ ├── IMG_user_clip_plane_Include.h │ │ ├── INGR_blend_func_separate_Include.h │ │ ├── INGR_color_clamp_Include.h │ │ ├── INGR_interlace_read_Include.h │ │ ├── INTEL_conservative_rasterization_Include.h │ │ ├── INTEL_framebuffer_cmaa_Include.h │ │ ├── INTEL_map_texture_Include.h │ │ ├── INTEL_parallel_arrays_Include.h │ │ ├── INTEL_performance_query_Include.h │ │ ├── KHR_blend_equation_advanced_Include.h │ │ ├── KHR_no_error_Include.h │ │ ├── KHR_texture_compression_astc_ldr_Include.h │ │ ├── MESAX_texture_stack_Include.h │ │ ├── MESA_pack_invert_Include.h │ │ ├── MESA_resize_buffers_Include.h │ │ ├── MESA_window_pos_Include.h │ │ ├── MESA_ycbcr_texture_Include.h │ │ ├── OES_blend_equation_separate_Include.h │ │ ├── OES_blend_func_separate_Include.h │ │ ├── OES_blend_subtract_Include.h │ │ ├── OES_byte_coordinates_Include.h │ │ ├── OES_compressed_etc1_rgb8_texture_Include.h │ │ ├── OES_compressed_paletted_texture_Include.h │ │ ├── OES_copy_image_Include.h │ │ ├── OES_draw_buffers_indexed_Include.h │ │ ├── OES_draw_elements_base_vertex_Include.h │ │ ├── OES_draw_texture_Include.h │ │ ├── OES_egl_image_Include.h │ │ ├── OES_egl_image_external_Include.h │ │ ├── OES_fixed_point_Include.h │ │ ├── OES_framebuffer_object_Include.h │ │ ├── OES_geometry_shader_Include.h │ │ ├── OES_get_program_binary_Include.h │ │ ├── OES_mapbuffer_Include.h │ │ ├── OES_matrix_get_Include.h │ │ ├── OES_matrix_palette_Include.h │ │ ├── OES_point_size_array_Include.h │ │ ├── OES_primitive_bounding_box_Include.h │ │ ├── OES_query_matrix_Include.h │ │ ├── OES_sample_shading_Include.h │ │ ├── OES_single_precision_Include.h │ │ ├── OES_tessellation_shader_Include.h │ │ ├── OES_texture_3d_Include.h │ │ ├── OES_texture_border_clamp_Include.h │ │ ├── OES_texture_buffer_Include.h │ │ ├── OES_texture_compression_astc_Include.h │ │ ├── OES_texture_cube_map_Include.h │ │ ├── OES_texture_half_float_Include.h │ │ ├── OES_texture_storage_multisample_2d_array_Include.h │ │ ├── OES_texture_view_Include.h │ │ ├── OES_vertex_array_object_Include.h │ │ ├── OES_vertex_type_10_10_10_2_Include.h │ │ ├── OML_interlace_Include.h │ │ ├── OML_resample_Include.h │ │ ├── OML_subsample_Include.h │ │ ├── OVR_multiview_Include.h │ │ ├── OVR_multiview_multisampled_render_to_texture_Include.h │ │ ├── PGI_misc_hints_Include.h │ │ ├── PGI_vertex_hints_Include.h │ │ ├── QCOM_alpha_test_Include.h │ │ ├── QCOM_binning_control_Include.h │ │ ├── QCOM_driver_control_Include.h │ │ ├── QCOM_extended_get2_Include.h │ │ ├── QCOM_extended_get_Include.h │ │ ├── QCOM_perfmon_global_mode_Include.h │ │ ├── QCOM_tiled_rendering_Include.h │ │ ├── QCOM_writeonly_rendering_Include.h │ │ ├── REND_screen_coordinates_Include.h │ │ ├── S3_s3tc_Include.h │ │ ├── SGIS_detail_texture_Include.h │ │ ├── SGIS_fog_function_Include.h │ │ ├── SGIS_multisample_Include.h │ │ ├── SGIS_pixel_texture_Include.h │ │ ├── SGIS_point_line_texgen_Include.h │ │ ├── SGIS_point_parameters_Include.h │ │ ├── SGIS_sharpen_texture_Include.h │ │ ├── SGIS_texture4d_Include.h │ │ ├── SGIS_texture_color_mask_Include.h │ │ ├── SGIS_texture_filter4_Include.h │ │ ├── SGIS_texture_select_Include.h │ │ ├── SGIX_async_Include.h │ │ ├── SGIX_async_histogram_Include.h │ │ ├── SGIX_async_pixel_Include.h │ │ ├── SGIX_blend_alpha_minmax_Include.h │ │ ├── SGIX_calligraphic_fragment_Include.h │ │ ├── SGIX_clipmap_Include.h │ │ ├── SGIX_convolution_accuracy_Include.h │ │ ├── SGIX_flush_raster_Include.h │ │ ├── SGIX_fog_offset_Include.h │ │ ├── SGIX_fog_scale_Include.h │ │ ├── SGIX_fragment_lighting_Include.h │ │ ├── SGIX_framezoom_Include.h │ │ ├── SGIX_igloo_interface_Include.h │ │ ├── SGIX_impact_pixel_texture_Include.h │ │ ├── SGIX_instruments_Include.h │ │ ├── SGIX_interlace_Include.h │ │ ├── SGIX_ir_instrument1_Include.h │ │ ├── SGIX_list_priority_Include.h │ │ ├── SGIX_pixel_texture_Include.h │ │ ├── SGIX_pixel_tiles_Include.h │ │ ├── SGIX_polynomial_ffd_Include.h │ │ ├── SGIX_reference_plane_Include.h │ │ ├── SGIX_resample_Include.h │ │ ├── SGIX_scalebias_hint_Include.h │ │ ├── SGIX_shadow_Include.h │ │ ├── SGIX_sprite_Include.h │ │ ├── SGIX_subsample_Include.h │ │ ├── SGIX_tag_sample_buffer_Include.h │ │ ├── SGIX_texture_add_env_Include.h │ │ ├── SGIX_texture_coordinate_clamp_Include.h │ │ ├── SGIX_texture_lod_bias_Include.h │ │ ├── SGIX_texture_multi_buffer_Include.h │ │ ├── SGIX_texture_range_Include.h │ │ ├── SGIX_texture_scale_bias_Include.h │ │ ├── SGIX_vertex_preclip_Include.h │ │ ├── SGIX_ycrcb_Include.h │ │ ├── SGIX_ycrcba_Include.h │ │ ├── SGI_color_table_Include.h │ │ ├── SGI_depth_pass_instrument_Include.h │ │ ├── SGI_texture_color_table_Include.h │ │ ├── SUNX_constant_data_Include.h │ │ ├── SUN_convolution_border_modes_Include.h │ │ ├── SUN_global_alpha_Include.h │ │ ├── SUN_mesh_array_Include.h │ │ ├── SUN_slice_accum_Include.h │ │ ├── SUN_triangle_list_Include.h │ │ ├── SUN_vertex_Include.h │ │ ├── VIV_shader_binary_Include.h │ │ ├── WIN_phong_shading_Include.h │ │ └── WIN_specular_fog_Include.h │ ├── NV │ │ ├── NVX_conditional_render_Include.h │ │ ├── NVX_gpu_memory_info_Include.h │ │ ├── NV_bindless_multi_draw_indirect_Include.h │ │ ├── NV_bindless_multi_draw_indirect_count_Include.h │ │ ├── NV_bindless_texture_Include.h │ │ ├── NV_blend_equation_advanced_Include.h │ │ ├── NV_blend_equation_advanced_coherent_Include.h │ │ ├── NV_clip_space_w_scaling_Include.h │ │ ├── NV_command_list_Include.h │ │ ├── NV_compute_program5_Include.h │ │ ├── NV_conditional_render_Include.h │ │ ├── NV_conservative_raster_Include.h │ │ ├── NV_conservative_raster_dilate_Include.h │ │ ├── NV_conservative_raster_pre_snap_triangles_Include.h │ │ ├── NV_copy_buffer_Include.h │ │ ├── NV_copy_depth_to_color_Include.h │ │ ├── NV_copy_image_Include.h │ │ ├── NV_coverage_sample_Include.h │ │ ├── NV_deep_texture3d_Include.h │ │ ├── NV_depth_buffer_float_Include.h │ │ ├── NV_depth_nonlinear_Include.h │ │ ├── NV_draw_buffers_Include.h │ │ ├── NV_draw_instanced_Include.h │ │ ├── NV_draw_texture_Include.h │ │ ├── NV_evaluators_Include.h │ │ ├── NV_explicit_multisample_Include.h │ │ ├── NV_fence_Include.h │ │ ├── NV_fill_rectangle_Include.h │ │ ├── NV_float_buffer_Include.h │ │ ├── NV_fog_distance_Include.h │ │ ├── NV_fragment_coverage_to_color_Include.h │ │ ├── NV_fragment_program2_Include.h │ │ ├── NV_framebuffer_blit_Include.h │ │ ├── NV_framebuffer_mixed_samples_Include.h │ │ ├── NV_framebuffer_multisample_Include.h │ │ ├── NV_framebuffer_multisample_coverage_Include.h │ │ ├── NV_geometry_program4_Include.h │ │ ├── NV_gpu_program4_Include.h │ │ ├── NV_gpu_program5_Include.h │ │ ├── NV_gpu_shader5_Include.h │ │ ├── NV_half_float_Include.h │ │ ├── NV_instanced_arrays_Include.h │ │ ├── NV_internalformat_sample_query_Include.h │ │ ├── NV_light_max_exponent_Include.h │ │ ├── NV_multisample_coverage_Include.h │ │ ├── NV_multisample_filter_hint_Include.h │ │ ├── NV_non_square_matrices_Include.h │ │ ├── NV_occlusion_query_Include.h │ │ ├── NV_parameter_buffer_object_Include.h │ │ ├── NV_path_rendering_Include.h │ │ ├── NV_path_rendering_shared_edge_Include.h │ │ ├── NV_pixel_data_range_Include.h │ │ ├── NV_point_sprite_Include.h │ │ ├── NV_polygon_mode_Include.h │ │ ├── NV_present_video_Include.h │ │ ├── NV_primitive_restart_Include.h │ │ ├── NV_read_buffer_Include.h │ │ ├── NV_register_combiners_Include.h │ │ ├── NV_robustness_video_memory_purge_Include.h │ │ ├── NV_sample_locations_Include.h │ │ ├── NV_shader_buffer_load_Include.h │ │ ├── NV_shader_buffer_store_Include.h │ │ ├── NV_shader_thread_group_Include.h │ │ ├── NV_srgb_formats_Include.h │ │ ├── NV_tessellation_program5_Include.h │ │ ├── NV_texgen_emboss_Include.h │ │ ├── NV_texture_barrier_Include.h │ │ ├── NV_texture_env_combine4_Include.h │ │ ├── NV_texture_expand_normal_Include.h │ │ ├── NV_texture_multisample_Include.h │ │ ├── NV_texture_shader_Include.h │ │ ├── NV_transform_feedback2_Include.h │ │ ├── NV_transform_feedback_Include.h │ │ ├── NV_uniform_buffer_unified_memory_Include.h │ │ ├── NV_vdpau_interop_Include.h │ │ ├── NV_vertex_array_range_Include.h │ │ ├── NV_vertex_attrib_integer_64bit_Include.h │ │ ├── NV_vertex_buffer_unified_memory_Include.h │ │ ├── NV_vertex_fragment_program_Include.h │ │ ├── NV_video_capture_Include.h │ │ ├── NV_viewport_array_Include.h │ │ └── NV_viewport_swizzle_Include.h │ ├── WGL │ │ ├── WGLCore_Include.h │ │ ├── WGL_3DFX_multisample_Include.h │ │ ├── WGL_3DL_stereo_control_Include.h │ │ ├── WGL_AMD_gpu_association_Include.h │ │ ├── WGL_ARB_buffer_region_Include.h │ │ ├── WGL_ARB_create_context_Include.h │ │ ├── WGL_ARB_create_context_profile_Include.h │ │ ├── WGL_ARB_extensions_string_Include.h │ │ ├── WGL_ARB_framebuffer_srgb_Include.h │ │ ├── WGL_ARB_make_current_read_Include.h │ │ ├── WGL_ARB_multisample_Include.h │ │ ├── WGL_ARB_pbuffer_Include.h │ │ ├── WGL_ARB_pixel_format_Include.h │ │ ├── WGL_ARB_pixel_format_float_Include.h │ │ ├── WGL_ARB_render_texture_Include.h │ │ ├── WGL_ATI_pixel_format_float_Include.h │ │ ├── WGL_EXT_depth_float_Include.h │ │ ├── WGL_EXT_display_color_table_Include.h │ │ ├── WGL_EXT_pixel_format_packed_float_Include.h │ │ ├── WGL_EXT_swap_control_Include.h │ │ ├── WGL_I3D_digital_video_control_Include.h │ │ ├── WGL_I3D_gamma_Include.h │ │ ├── WGL_I3D_genlock_Include.h │ │ ├── WGL_I3D_image_buffer_Include.h │ │ ├── WGL_I3D_swap_frame_lock_Include.h │ │ ├── WGL_I3D_swap_frame_usage_Include.h │ │ ├── WGL_NV_copy_image_Include.h │ │ ├── WGL_NV_delay_before_swap_Include.h │ │ ├── WGL_NV_dx_interop_Include.h │ │ ├── WGL_NV_float_buffer_Include.h │ │ ├── WGL_NV_gpu_affinity_Include.h │ │ ├── WGL_NV_multisample_coverage_Include.h │ │ ├── WGL_NV_present_video_Include.h │ │ ├── WGL_NV_render_depth_texture_Include.h │ │ ├── WGL_NV_render_texture_rectangle_Include.h │ │ ├── WGL_NV_swap_group_Include.h │ │ ├── WGL_NV_video_capture_Include.h │ │ ├── WGL_NV_video_output_Include.h │ │ └── WGL_OML_sync_control_Include.h │ ├── XGL │ │ ├── XGLCore_Include.h │ │ ├── XGL_EXT_import_context_Include.h │ │ ├── XGL_EXT_texture_from_pixmap_Include.h │ │ ├── XGL_SGI_swap_control_Include.h │ │ └── XGL_SGI_video_sync_Include.h │ └── gliIncludes.h ├── MainLib │ ├── gliConfig.ini │ └── gliConfig_Definition.ini ├── Plugins │ ├── GLCStrike │ │ ├── config.ini │ │ └── config_Definition.ini │ ├── GLDebugContext │ │ └── config.ini │ ├── GLExtOverride │ │ ├── config.ini │ │ └── config_Definition.ini │ ├── GLFramePing │ │ ├── config.ini │ │ └── config_Definition.ini │ ├── GLFreeCam │ │ ├── config.ini │ │ └── config_Definition.ini │ ├── GLFuncStats │ │ ├── config.ini │ │ └── config_Definition.ini │ ├── GLShaderEdit │ │ ├── SciTEGlobal.properties │ │ ├── config.ini │ │ ├── config_Definition.ini │ │ ├── glasm.properties │ │ ├── glsl.properties │ │ └── glslapi.api │ └── TestPlugin │ │ └── config_Definition.ini ├── Profiles │ ├── gliConfig.xni │ ├── gliConfig_AuthorStd.xni │ ├── gliConfig_DebugContext.xni │ ├── gliConfig_ExtOverride.xni │ ├── gliConfig_FreeCam.xni │ ├── gliConfig_FullDebug.xni │ ├── gliConfig_ShaderEdit.xni │ ├── gliConfig_XMLFrame.xni │ ├── test.xni │ ├── test2.xni │ └── test3.xni └── XSL │ ├── IEViewLog.hta │ ├── gliIntercept_Basic.xsl │ └── gliIntercept_DHTML2.xsl ├── Docs ├── Images │ ├── ARB_debug_output.png │ ├── GLicon.png │ ├── errorTypes.gif │ ├── extoverride.png │ ├── freecam.png │ ├── glixmlshot.gif │ └── shaderedit.png ├── Screenshots.md ├── licence_corona.txt ├── licence_glsl.txt ├── licence_scite.txt ├── license.txt ├── readme.txt ├── readme_src.txt └── version_info.txt ├── Include └── corona.h ├── README.md └── Src ├── Common ├── AutoReferenceCount.h ├── ConfigParser.cpp ├── ConfigParser.h ├── ErrorLog.cpp ├── ErrorLog.h ├── FileUtils.cpp ├── FileUtils.h ├── InputUtils.cpp ├── InputUtils.h ├── Makefile ├── MiscUtils.cpp ├── MiscUtils.h ├── NetworkUtils.cpp ├── NetworkUtils.h ├── OSDefines.h ├── PluginCommon.cpp ├── ReferenceCount.h ├── prefix.cpp └── prefix.h ├── GLIConfig ├── CommonErrorLog.h ├── ConfigOptionsDialog.cpp ├── ConfigOptionsDialog.h ├── GLIConfig.dsp ├── GLIConfig.plg ├── GLIConfig.rc ├── GLIConfigApp.cpp ├── GLIConfigApp.h ├── GLIcon.ico ├── GLIcon16.xpm ├── MainDialog.cpp ├── MainDialog.h └── RCa01368 ├── MainLib ├── BuiltInFunction.cpp ├── BuiltInFunction.h ├── CommonErrorLog.h ├── ConfigData.cpp ├── ConfigData.h ├── DLLLoader.cpp ├── DLLLoader.h ├── DisplayListManager.cpp ├── DisplayListManager.h ├── DisplayListSaveManager.cpp ├── DisplayListSaveManager.h ├── EnumData.cpp ├── EnumData.h ├── ExtensionFunction.cpp ├── ExtensionFunction.h ├── ExtensionFunctionStubs.cpp ├── ExtensionFunctionStubs_64.asm ├── ExtensionFunctionWrapper.cpp ├── ExtensionFunctionWrapper.h ├── FunctionArgs.h ├── FunctionData.cpp ├── FunctionData.h ├── FunctionParamStore.h ├── FunctionParser.cpp ├── FunctionParser.h ├── FunctionRetValue.h ├── FunctionTable.cpp ├── FunctionTable.h ├── GLContext.cpp ├── GLContext.h ├── GLCore1_1.cpp ├── GLCore1_1.h ├── GLCore1_2.cpp ├── GLCore1_2.h ├── GLDefines.h ├── GLDriver.cpp ├── GLDriver.h ├── GLFunctions.h ├── GLIntercept.cpp ├── GLIntercept.h ├── GLIntercept.plg ├── GLIntercept.vcproj ├── GLInterceptConfig.h ├── GLStubs.cpp ├── GLStubs.h ├── GLStubsWGL.cpp ├── GLStubsWGL.h ├── GLWindows.cpp ├── GLWindows.h ├── ImageManager.cpp ├── ImageManager.h ├── ImageSaveManager.cpp ├── ImageSaveManager.h ├── InterceptData.cpp ├── InterceptData.h ├── InterceptDataManager.h ├── InterceptDisplayList.cpp ├── InterceptDisplayList.h ├── InterceptFrame.cpp ├── InterceptFrame.h ├── InterceptImage.cpp ├── InterceptImage.h ├── InterceptLog.cpp ├── InterceptLog.h ├── InterceptLogText.cpp ├── InterceptLogText.h ├── InterceptLogXML.cpp ├── InterceptLogXML.h ├── InterceptPluginDLLInstance.cpp ├── InterceptPluginDLLInstance.h ├── InterceptPluginInstance.cpp ├── InterceptPluginInstance.h ├── InterceptPluginInterface.h ├── InterceptPluginManager.cpp ├── InterceptPluginManager.h ├── InterceptShader.cpp ├── InterceptShader.h ├── InterceptShaderGLSL.cpp ├── InterceptShaderGLSL.h ├── Makefile ├── Makefile.config ├── MovieMaker.cpp ├── MovieMaker.h ├── ParameterData.cpp ├── ParameterData.h ├── ShaderGLSLManager.cpp ├── ShaderGLSLManager.h ├── ShaderGLSLSaveManager.cpp ├── ShaderGLSLSaveManager.h ├── ShaderManager.cpp ├── ShaderManager.h ├── ShaderSaveManager.cpp ├── ShaderSaveManager.h ├── generate_64b_asm_stubs.py ├── glIntercept.def └── glInterceptx64.def ├── Plugins ├── GLCStrike │ ├── CommonErrorLog.h │ ├── GLCStrike.cpp │ ├── GLCStrike.def │ ├── GLCStrike.vcproj │ ├── OpenGLCStrike.cpp │ └── OpenGLCStrike.h ├── GLDebugContext │ ├── CommonErrorLog.h │ ├── DebugContext.cpp │ ├── DebugContext.h │ ├── GLDebugContext.cpp │ ├── GLDebugContext.def │ └── GLDebugContext.vcproj ├── GLExtOverride │ ├── CommonErrorLog.h │ ├── ExtensionOverride.cpp │ ├── ExtensionOverride.h │ ├── GLExtOverride.cpp │ ├── GLExtOverride.def │ ├── GLExtOverride.plg │ └── GLExtOverride.vcproj ├── GLFramePing │ ├── CommonErrorLog.h │ ├── GLFramePing.cpp │ ├── GLFramePing.def │ ├── GLFramePing.plg │ ├── GLFramePing.vcproj │ ├── PingPlugin.cpp │ └── PingPlugin.h ├── GLFreeCam │ ├── CommonErrorLog.h │ ├── FCConfigData.cpp │ ├── FCConfigData.h │ ├── FCViewCam.cpp │ ├── FCViewCam.h │ ├── FCamInput.cpp │ ├── FCamInput.h │ ├── GLFreeCam.cpp │ ├── GLFreeCam.def │ ├── GLFreeCam.plg │ ├── GLFreeCam.vcproj │ ├── OpenGLFreeCamera.cpp │ ├── OpenGLFreeCamera.h │ ├── Vector.cpp │ ├── Vector.h │ └── project.cpp ├── GLFuncStats │ ├── CommonErrorLog.h │ ├── FuncStatsPlugin.cpp │ ├── FuncStatsPlugin.h │ ├── GLFuncStats.cpp │ ├── GLFuncStats.def │ ├── GLFuncStats.plg │ └── GLFuncStats.vcproj ├── GLShaderEdit │ ├── CommonErrorLog.h │ ├── GLFrameBufferCache.cpp │ ├── GLFrameBufferCache.h │ ├── GLRenderCallCache.cpp │ ├── GLRenderCallCache.h │ ├── GLShaderEdit.cpp │ ├── GLShaderEdit.def │ ├── GLShaderEdit.plg │ ├── GLShaderEdit.vcproj │ ├── PreProcessor │ │ ├── Makefile │ │ ├── atom.c │ │ ├── atom.h │ │ ├── compile.h │ │ ├── cpp.c │ │ ├── cpp.h │ │ ├── cppstruct.c │ │ ├── memory.c │ │ ├── memory.h │ │ ├── parser.h │ │ ├── preprocess.h │ │ ├── scanner.c │ │ ├── scanner.h │ │ ├── slglobals.h │ │ ├── symbols.c │ │ ├── symbols.h │ │ ├── tokens.c │ │ └── tokens.h │ ├── SEContext.cpp │ ├── SEContext.h │ ├── SEInterface.cpp │ ├── SEInterface.h │ ├── SEInterfaceCommands.h │ ├── ShaderDebugGLSL.cpp │ ├── ShaderDebugGLSL.h │ ├── ShaderEditASM.cpp │ ├── ShaderEditASM.h │ ├── ShaderEditGLSL.cpp │ ├── ShaderEditGLSL.h │ ├── ShaderEditManager.cpp │ ├── ShaderEditManager.h │ ├── ShaderManager.h │ ├── ShaderManagerASM.cpp │ ├── ShaderManagerASM.h │ ├── ShaderManagerGLSL.cpp │ ├── ShaderManagerGLSL.h │ ├── ShaderParserGLSL.cpp │ ├── ShaderParserGLSL.h │ ├── ShaderUtilsGLSL.cpp │ ├── ShaderUtilsGLSL.h │ ├── SubstituteShaderGLSL.cpp │ ├── SubstituteShaderGLSL.h │ ├── UniformBugManager.h │ ├── UniqueShaderID.cpp │ ├── UniqueShaderID.h │ ├── scintilla │ │ ├── License.txt │ │ ├── README │ │ ├── bin │ │ │ └── empty.txt │ │ ├── delbin.bat │ │ ├── delcvs.bat │ │ ├── gtk │ │ │ ├── Converter.h │ │ │ ├── PlatGTK.cxx │ │ │ ├── ScintillaGTK.cxx │ │ │ ├── deps.mak │ │ │ ├── makefile │ │ │ ├── scintilla-marshal.c │ │ │ ├── scintilla-marshal.h │ │ │ ├── scintilla-marshal.list │ │ │ └── scintilla.mak │ │ ├── include │ │ │ ├── Accessor.h │ │ │ ├── Face.py │ │ │ ├── HFacer.py │ │ │ ├── KeyWords.h │ │ │ ├── Platform.h │ │ │ ├── PropSet.h │ │ │ ├── SString.h │ │ │ ├── SciLexer.h │ │ │ ├── Scintilla.h │ │ │ ├── Scintilla.iface │ │ │ ├── ScintillaWidget.h │ │ │ └── WindowAccessor.h │ │ ├── src │ │ │ ├── AutoComplete.cxx │ │ │ ├── AutoComplete.h │ │ │ ├── CallTip.cxx │ │ │ ├── CallTip.h │ │ │ ├── CellBuffer.cxx │ │ │ ├── CellBuffer.h │ │ │ ├── ContractionState.cxx │ │ │ ├── ContractionState.h │ │ │ ├── Document.cxx │ │ │ ├── Document.h │ │ │ ├── DocumentAccessor.cxx │ │ │ ├── DocumentAccessor.h │ │ │ ├── Editor.cxx │ │ │ ├── Editor.h │ │ │ ├── ExternalLexer.cxx │ │ │ ├── ExternalLexer.h │ │ │ ├── Indicator.cxx │ │ │ ├── Indicator.h │ │ │ ├── KeyMap.cxx │ │ │ ├── KeyMap.h │ │ │ ├── KeyWords.cxx │ │ │ ├── LexAPDL.cxx │ │ │ ├── LexAU3.cxx │ │ │ ├── LexAVE.cxx │ │ │ ├── LexAda.cxx │ │ │ ├── LexAsm.cxx │ │ │ ├── LexAsn1.cxx │ │ │ ├── LexBaan.cxx │ │ │ ├── LexBash.cxx │ │ │ ├── LexBasic.cxx │ │ │ ├── LexBullant.cxx │ │ │ ├── LexCLW.cxx │ │ │ ├── LexCPP.cxx │ │ │ ├── LexCSS.cxx │ │ │ ├── LexCaml.cxx │ │ │ ├── LexConf.cxx │ │ │ ├── LexCrontab.cxx │ │ │ ├── LexCsound.cxx │ │ │ ├── LexEScript.cxx │ │ │ ├── LexEiffel.cxx │ │ │ ├── LexErlang.cxx │ │ │ ├── LexFlagship.cxx │ │ │ ├── LexForth.cxx │ │ │ ├── LexFortran.cxx │ │ │ ├── LexGen.py │ │ │ ├── LexGui4Cli.cxx │ │ │ ├── LexHTML.cxx │ │ │ ├── LexHaskell.cxx │ │ │ ├── LexKix.cxx │ │ │ ├── LexLisp.cxx │ │ │ ├── LexLout.cxx │ │ │ ├── LexLua.cxx │ │ │ ├── LexMMIXAL.cxx │ │ │ ├── LexMPT.cxx │ │ │ ├── LexMSSQL.cxx │ │ │ ├── LexMatlab.cxx │ │ │ ├── LexMetapost.cxx │ │ │ ├── LexNsis.cxx │ │ │ ├── LexOthers.cxx │ │ │ ├── LexPB.cxx │ │ │ ├── LexPOV.cxx │ │ │ ├── LexPS.cxx │ │ │ ├── LexPascal.cxx │ │ │ ├── LexPerl.cxx │ │ │ ├── LexPython.cxx │ │ │ ├── LexRebol.cxx │ │ │ ├── LexRuby.cxx │ │ │ ├── LexSQL.cxx │ │ │ ├── LexScriptol.cxx │ │ │ ├── LexSmalltalk.cxx │ │ │ ├── LexSpecman.cxx │ │ │ ├── LexTADS3.cxx │ │ │ ├── LexTeX.cxx │ │ │ ├── LexVB.cxx │ │ │ ├── LexVHDL.cxx │ │ │ ├── LexVerilog.cxx │ │ │ ├── LexYAML.cxx │ │ │ ├── LineMarker.cxx │ │ │ ├── LineMarker.h │ │ │ ├── PropSet.cxx │ │ │ ├── RESearch.cxx │ │ │ ├── RESearch.h │ │ │ ├── SVector.h │ │ │ ├── SciTE.properties │ │ │ ├── ScintillaBase.cxx │ │ │ ├── ScintillaBase.h │ │ │ ├── Style.cxx │ │ │ ├── Style.h │ │ │ ├── StyleContext.cxx │ │ │ ├── StyleContext.h │ │ │ ├── UniConversion.cxx │ │ │ ├── UniConversion.h │ │ │ ├── ViewStyle.cxx │ │ │ ├── ViewStyle.h │ │ │ ├── WindowAccessor.cxx │ │ │ ├── XPM.cxx │ │ │ └── XPM.h │ │ ├── tgzsrc │ │ ├── vcbuild │ │ │ ├── SciLexer.sln │ │ │ └── SciLexer.vcproj │ │ ├── version.txt │ │ ├── win32 │ │ │ ├── Margin.cur │ │ │ ├── PlatWin.cxx │ │ │ ├── PlatformRes.h │ │ │ ├── SciTE.properties │ │ │ ├── ScintRes.rc │ │ │ ├── Scintilla.def │ │ │ ├── ScintillaWin.cxx │ │ │ ├── deps.mak │ │ │ ├── makefile │ │ │ ├── scintilla.mak │ │ │ └── scintilla_vc6.mak │ │ └── zipsrc.bat │ ├── scite │ │ ├── License.txt │ │ ├── README │ │ ├── bin │ │ │ └── empty.txt │ │ ├── delbin.bat │ │ ├── delcvs.bat │ │ ├── gtk │ │ │ ├── DirectorExtension.cxx │ │ │ ├── DirectorExtension.h │ │ │ ├── Sci48M.png │ │ │ ├── SciIcon.h │ │ │ ├── SciTE.desktop │ │ │ ├── SciTEGTK.cxx │ │ │ ├── deps.mak │ │ │ ├── makefile │ │ │ └── pixmapsGNOME.h │ │ ├── scripts │ │ │ ├── CheckMentioned.py │ │ │ ├── CheckPropsDoc.py │ │ │ ├── Fixer.py │ │ │ ├── IFaceTableGen.py │ │ │ ├── ba │ │ │ ├── ba.bat │ │ │ ├── checkbuilds.bat │ │ │ ├── clearboth.bat │ │ │ ├── makerpms.py │ │ │ ├── scite.spec │ │ │ └── tags2api.py │ │ ├── src │ │ │ ├── Embedded.properties │ │ │ ├── Exporters.cxx │ │ │ ├── Extender.h │ │ │ ├── FilePath.cxx │ │ │ ├── FilePath.h │ │ │ ├── IFaceTable.cxx │ │ │ ├── IFaceTable.h │ │ │ ├── LuaExtension.cxx │ │ │ ├── LuaExtension.h │ │ │ ├── MultiplexExtension.cxx │ │ │ ├── MultiplexExtension.h │ │ │ ├── SciTE.h │ │ │ ├── SciTE.properties │ │ │ ├── SciTEBase.cxx │ │ │ ├── SciTEBase.h │ │ │ ├── SciTEBuffers.cxx │ │ │ ├── SciTEGlobal.properties │ │ │ ├── SciTEIO.cxx │ │ │ ├── SciTEKeys.h │ │ │ ├── SciTEProps.cxx │ │ │ ├── Utf8_16.cxx │ │ │ ├── Utf8_16.h │ │ │ ├── abbrev.properties │ │ │ ├── ada.properties │ │ │ ├── asm.properties │ │ │ ├── asn1.properties │ │ │ ├── au3.properties │ │ │ ├── ave.properties │ │ │ ├── baan.properties │ │ │ ├── blitzbasic.properties │ │ │ ├── bullant.properties │ │ │ ├── caml.properties │ │ │ ├── conf.properties │ │ │ ├── cpp.properties │ │ │ ├── csound.properties │ │ │ ├── css.properties │ │ │ ├── eiffel.properties │ │ │ ├── erlang.properties │ │ │ ├── escript.properties │ │ │ ├── flagship.properties │ │ │ ├── forth.properties │ │ │ ├── fortran.properties │ │ │ ├── freebasic.properties │ │ │ ├── html.properties │ │ │ ├── kix.properties │ │ │ ├── latex.properties │ │ │ ├── lisp.properties │ │ │ ├── lot.properties │ │ │ ├── lout.properties │ │ │ ├── lua.properties │ │ │ ├── matlab.properties │ │ │ ├── metapost.properties │ │ │ ├── mmixal.properties │ │ │ ├── nncrontab.properties │ │ │ ├── nsis.properties │ │ │ ├── others.properties │ │ │ ├── pascal.properties │ │ │ ├── perl.properties │ │ │ ├── pov.properties │ │ │ ├── ps.properties │ │ │ ├── purebasic.properties │ │ │ ├── python.properties │ │ │ ├── rebol.properties │ │ │ ├── ruby.properties │ │ │ ├── scriptol.properties │ │ │ ├── smalltalk.properties │ │ │ ├── specman.properties │ │ │ ├── sql.properties │ │ │ ├── tcl.properties │ │ │ ├── tex.properties │ │ │ ├── vb.properties │ │ │ ├── verilog.properties │ │ │ ├── vhdl.properties │ │ │ └── yaml.properties │ │ ├── tgzgscite │ │ ├── tgzsrc │ │ ├── upxsc1.bat │ │ ├── vcbuild │ │ │ └── SciTE.vcproj │ │ ├── win32 │ │ │ ├── DirectorExtension.cxx │ │ │ ├── DirectorExtension.h │ │ │ ├── GLIBitmapView.cpp │ │ │ ├── GLIBitmapView.h │ │ │ ├── GLIShaderData.cpp │ │ │ ├── GLIShaderData.h │ │ │ ├── GLIShaderDebug.cpp │ │ │ ├── GLIShaderDebug.h │ │ │ ├── GLIToolTip.cpp │ │ │ ├── GLITooltip.h │ │ │ ├── PropTree │ │ │ │ ├── PropTree.cpp │ │ │ │ ├── PropTree.h │ │ │ │ ├── PropTreeInfo.cpp │ │ │ │ ├── PropTreeInfo.h │ │ │ │ ├── PropTreeItem.cpp │ │ │ │ ├── PropTreeItem.h │ │ │ │ ├── PropTreeItemColor.cpp │ │ │ │ ├── PropTreeItemColor.h │ │ │ │ ├── PropTreeItemCombo.cpp │ │ │ │ ├── PropTreeItemCombo.h │ │ │ │ ├── PropTreeItemEdit.cpp │ │ │ │ ├── PropTreeItemEdit.h │ │ │ │ ├── PropTreeItemGLI.cpp │ │ │ │ ├── PropTreeItemGLI.h │ │ │ │ ├── PropTreeItemStatic.cpp │ │ │ │ ├── PropTreeItemStatic.h │ │ │ │ ├── PropTreeList.cpp │ │ │ │ ├── PropTreeList.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── res │ │ │ │ │ ├── fpoint.cur │ │ │ │ │ └── spliter.cur │ │ │ │ └── resource.h │ │ │ ├── SciBall.ico │ │ │ ├── SciTE.exe.manifest │ │ │ ├── SciTERes.aps │ │ │ ├── SciTERes.rc │ │ │ ├── SciTEWin.cxx │ │ │ ├── SciTEWin.h │ │ │ ├── SciTEWinBar.cxx │ │ │ ├── SciTEWinDlg.cxx │ │ │ ├── SingleThreadExtension.cxx │ │ │ ├── SingleThreadExtension.h │ │ │ ├── UniqueInstance.cxx │ │ │ ├── UniqueInstance.h │ │ │ ├── closefile.bmp │ │ │ ├── compile.bmp │ │ │ ├── deps.mak │ │ │ ├── locale.properties │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ ├── resource.hm │ │ │ ├── resrc1.h │ │ │ └── scite.mak │ │ ├── zipsrc.bat │ │ ├── zipwscite.bat │ │ └── zipwscited.bat │ └── wxstedit │ │ ├── Makefile.in │ │ ├── art │ │ ├── A.xpm │ │ ├── B.xpm │ │ ├── DebugDialog.xpm │ │ ├── DiffImage.xpm │ │ ├── G.xpm │ │ ├── GLIcon.ico │ │ ├── GLIcon16.xpm │ │ ├── IntScale.xpm │ │ ├── NextRender.xpm │ │ ├── Normalize.xpm │ │ ├── PostImage.xpm │ │ ├── PreImage.xpm │ │ ├── R.xpm │ │ ├── RGB.xpm │ │ ├── Thumbs.db │ │ ├── closefile.xpm │ │ ├── compile.xpm │ │ ├── copy.xpm │ │ ├── cut.xpm │ │ ├── find.xpm │ │ ├── finddown.xpm │ │ ├── findnext.xpm │ │ ├── findup.xpm │ │ ├── new.xpm │ │ ├── open.xpm │ │ ├── paste.xpm │ │ ├── pencil.ico │ │ ├── pencil16.xpm │ │ ├── pencil32.xpm │ │ ├── print.xpm │ │ ├── print_page_setup.xpm │ │ ├── print_preview.xpm │ │ ├── print_setup.xpm │ │ ├── redo.xpm │ │ ├── replace.xpm │ │ ├── save.xpm │ │ ├── saveall.xpm │ │ ├── saveas.xpm │ │ ├── selection.xpm │ │ ├── undo.xpm │ │ ├── x_red.xpm │ │ └── zoom.xpm │ │ ├── build │ │ ├── Bakefiles.bkgen │ │ ├── GNUmakefile │ │ ├── aclocal.m4 │ │ ├── acregen.sh │ │ ├── autoconf_inc.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure.ac │ │ ├── install.sh │ │ ├── makefile.bcc │ │ ├── makefile.gcc │ │ ├── makefile.vc │ │ ├── makefile.wat │ │ ├── readme.txt │ │ ├── wxstedit.bkl │ │ ├── wxstedit.dsw │ │ ├── wxstedit_stedit.dsp │ │ └── wxstedit_wxstedit.dsp │ │ ├── configure │ │ ├── docs │ │ ├── ChangeLog.txt │ │ ├── doxygen.cfg │ │ ├── doxygen │ │ │ └── dummy.txt │ │ ├── readme.htm │ │ ├── readme.txt │ │ └── readme.txt_ │ │ ├── include │ │ ├── ResourceLimits.h │ │ ├── ShaderLang.h │ │ └── wx │ │ │ └── stedit │ │ │ ├── pairarr.h │ │ │ ├── setup.h │ │ │ ├── setup0.h │ │ │ ├── stedefs.h │ │ │ ├── stedit.h │ │ │ ├── stedlgs.h │ │ │ ├── steexprt.h │ │ │ ├── stefindr.h │ │ │ ├── steframe.h │ │ │ ├── stelangs.h │ │ │ ├── stemenum.h │ │ │ ├── stenoteb.h │ │ │ ├── steopts.h │ │ │ ├── steprefs.h │ │ │ ├── steprint.h │ │ │ ├── steshell.h │ │ │ ├── stesplit.h │ │ │ ├── stestyls.h │ │ │ └── wx24defs.h │ │ ├── lib │ │ ├── Readme.txt │ │ └── glslang.lib │ │ ├── samples │ │ └── stedit │ │ │ ├── Makefile │ │ │ ├── RCa02164 │ │ │ ├── wxStEdit.aps │ │ │ ├── wxstedit.cpp │ │ │ ├── wxstedit.rc │ │ │ ├── wxstedit_wx26.dsp │ │ │ ├── wxstedit_wx26.dsw │ │ │ ├── wxstedit_wx26.plg │ │ │ └── wxstedit_wx26.positions │ │ ├── src │ │ ├── GLIBitmapNotebook.cpp │ │ ├── GLIBitmapNotebook.h │ │ ├── GLIBitmapView.cpp │ │ ├── GLIBitmapView.h │ │ ├── GLIDebugVariableGrid.cpp │ │ ├── GLIDebugVariableGrid.h │ │ ├── GLIShaderData.cpp │ │ ├── GLIShaderData.h │ │ ├── GLIShaderDebug.cpp │ │ ├── GLIShaderDebug.h │ │ ├── GLIShaders.cpp │ │ ├── GLIShaders.h │ │ ├── Makefile │ │ ├── stedit.cpp │ │ ├── steditlib_wx26.dsp │ │ ├── steditlib_wx26.plg │ │ ├── stedlgs.cpp │ │ ├── stedlgs.wdr │ │ ├── stedlgs_wdr.cpp │ │ ├── stedlgs_wdr.h │ │ ├── steexprt.cpp │ │ ├── stefindr.cpp │ │ ├── steframe.cpp │ │ ├── steframe.cpp.bak │ │ ├── stelangs.cpp │ │ ├── stemenum.cpp │ │ ├── stenoteb.cpp │ │ ├── steopts.cpp │ │ ├── steprefs.cpp │ │ ├── steprint.cpp │ │ ├── steshell.cpp │ │ ├── stesplit.cpp │ │ └── stestyls.cpp │ │ └── website │ │ ├── image.png │ │ └── index.html └── TestPlugin │ ├── CommonErrorLog.h │ ├── LogPlugin.cpp │ ├── LogPlugin.h │ ├── TestPlugin.cpp │ ├── TestPlugin.def │ ├── TestPlugin.plg │ └── TestPlugin.vcproj └── WorkSpaces ├── CMakeLists.txt ├── GLI Plugins.sln ├── GLIConfig.dsw ├── GLIntercept.sln ├── SciTE.sln └── wxstedit_wx26.dsw /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/Makefile.am -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/bootstrap -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/config/config.guess -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/config/config.sub -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/config/depcomp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/config/install-sh -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/config/missing -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/config/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/config/mkinstalldirs -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/configure.in -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/corona-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/corona-config.in -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/doc/Makefile.am -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/doc/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/doc/changelog.txt -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/doc/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/doc/faq.txt -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/doc/license.txt -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/doc/literature.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/doc/literature.txt -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/doc/readme.txt -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/doc/release-howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/doc/release-howto.txt -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/doc/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/doc/tutorial.txt -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/Convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/Convert.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/Corona.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/Corona.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/Debug.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/Debug.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/Makefile.am -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/MemoryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/MemoryFile.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/MemoryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/MemoryFile.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/Open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/Open.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/OpenBMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/OpenBMP.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/OpenGIF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/OpenGIF.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/OpenJPEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/OpenJPEG.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/OpenPCX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/OpenPCX.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/OpenPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/OpenPNG.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/OpenTGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/OpenTGA.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/SConscript -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/Save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/Save.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/SaveJPEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/SaveJPEG.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/SavePNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/SavePNG.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/SaveTGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/SaveTGA.cpp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/SimpleImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/SimpleImage.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/Types.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/Utility.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/corona.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/corona.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/README -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jccolor.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jchuff.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jchuff.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jcinit.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jcomapi.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jconfig.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jcparam.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jcphuff.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jctrans.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdcolor.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdct.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdhuff.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdhuff.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdinput.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdmerge.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdphuff.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jdtrans.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jerror.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jerror.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jmemmgr.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jmemsys.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jpegint.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jpeglib.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jquant1.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jquant2.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/jutils.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/jpeg-6b/usage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/jpeg-6b/usage.doc -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/libpng-1.2.1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/libpng-1.2.1/TODO -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/zlib-1.1.4/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/zlib-1.1.4/FAQ -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/zlib-1.1.4/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/zlib-1.1.4/INDEX -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/zlib-1.1.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/zlib-1.1.4/README -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/zlib-1.1.4/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/zlib-1.1.4/gzio.c -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/src/zlib-1.1.4/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/src/zlib-1.1.4/zlib.h -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/vc6/corona.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/vc6/corona.dsw -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/vc6/corona.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/vc6/corona.sln -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/vc6/corona/corona.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/vc6/corona/corona.dsp -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/vc7/Corona.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/vc7/Corona.snk -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/vc7/corona.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/vc7/corona.sln -------------------------------------------------------------------------------- /3rdParty/Corona-1.0.2-Static/vc7/corona.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Corona-1.0.2-Static/vc7/corona.vcproj -------------------------------------------------------------------------------- /3rdParty/HeaderGen/GLLoadeGenGLI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/HeaderGen/GLLoadeGenGLI.py -------------------------------------------------------------------------------- /3rdParty/HeaderGen/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/HeaderGen/Readme.txt -------------------------------------------------------------------------------- /3rdParty/HeaderGen/SortFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/HeaderGen/SortFile.py -------------------------------------------------------------------------------- /3rdParty/HeaderGen/XMLGenGLI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/HeaderGen/XMLGenGLI.py -------------------------------------------------------------------------------- /3rdParty/HeaderGen/egl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/HeaderGen/egl.xml -------------------------------------------------------------------------------- /3rdParty/HeaderGen/gl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/HeaderGen/gl.xml -------------------------------------------------------------------------------- /3rdParty/HeaderGen/glx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/HeaderGen/glx.xml -------------------------------------------------------------------------------- /3rdParty/HeaderGen/wgl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/HeaderGen/wgl.xml -------------------------------------------------------------------------------- /3rdParty/Install/Common.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Install/Common.iss -------------------------------------------------------------------------------- /3rdParty/Install/installScript.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Install/installScript.iss -------------------------------------------------------------------------------- /3rdParty/Install/installScriptx64.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/Install/installScriptx64.iss -------------------------------------------------------------------------------- /3rdParty/OpenGLCompilerSept202005/BuildLinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/OpenGLCompilerSept202005/BuildLinux.sh -------------------------------------------------------------------------------- /3rdParty/OpenGLCompilerSept202005/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/OpenGLCompilerSept202005/README.txt -------------------------------------------------------------------------------- /3rdParty/OpenGLCompilerSept202005/StandAlone.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/OpenGLCompilerSept202005/StandAlone.sln -------------------------------------------------------------------------------- /3rdParty/OpenGLCompilerSept202005/glslang.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/OpenGLCompilerSept202005/glslang.vcproj -------------------------------------------------------------------------------- /3rdParty/OpenGLCompilerSept202005/tools/bison.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/OpenGLCompilerSept202005/tools/bison.exe -------------------------------------------------------------------------------- /3rdParty/OpenGLCompilerSept202005/tools/flex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/3rdParty/OpenGLCompilerSept202005/tools/flex.exe -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_bindless_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_bindless_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_cl_event_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_cl_event_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_debug_output_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_debug_output_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_draw_buffers_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_draw_buffers_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_draw_instanced_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_draw_instanced_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_geometry_shader4_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_geometry_shader4_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_gpu_shader_int64_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_gpu_shader_int64_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_instanced_arrays_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_instanced_arrays_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_matrix_palette_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_matrix_palette_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_multisample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_multisample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_multitexture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_multitexture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_occlusion_query_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_occlusion_query_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_point_parameters_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_point_parameters_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_robustness_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_robustness_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_sample_locations_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_sample_locations_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_sample_shading_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_sample_shading_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_shader_objects_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_shader_objects_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_shadow_ambient_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_shadow_ambient_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_sparse_buffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_sparse_buffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_sparse_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_sparse_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_texture_float_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_texture_float_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_texture_storage_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_texture_storage_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_transpose_matrix_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_transpose_matrix_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_vertex_blend_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_vertex_blend_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ARB/ARB_window_pos_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ARB/ARB_window_pos_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ATI/ATI_draw_buffers_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ATI/ATI_draw_buffers_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ATI/ATI_envmap_bumpmap_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ATI/ATI_envmap_bumpmap_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ATI/ATI_fragment_shader_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ATI/ATI_fragment_shader_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ATI/ATI_meminfo_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ATI/ATI_meminfo_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ATI/ATI_pn_triangles_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ATI/ATI_pn_triangles_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ATI/ATI_separate_stencil_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ATI/ATI_separate_stencil_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ATI/ATI_vertex_object_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ATI/ATI_vertex_object_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/ATI/ATI_vertex_streams_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/ATI/ATI_vertex_streams_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore1_1_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore1_1_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore1_2_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore1_2_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore1_3_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore1_3_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore1_4_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore1_4_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore1_5_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore1_5_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore2_0_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore2_0_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore2_1_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore2_1_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore3_0_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore3_0_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore3_1_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore3_1_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore3_2_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore3_2_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore3_3_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore3_3_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore4_0_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore4_0_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore4_1_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore4_1_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore4_2_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore4_2_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore4_3_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore4_3_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore4_4_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore4_4_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLCore4_5_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLCore4_5_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/GLCore/GLES1_0_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/GLCore/GLES1_0_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/3DFX_multisample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/3DFX_multisample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/3DFX_tbuffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/3DFX_tbuffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/AMD_debug_output_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/AMD_debug_output_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/AMD_name_gen_delete_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/AMD_name_gen_delete_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/AMD_pinned_memory_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/AMD_pinned_memory_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/AMD_sparse_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/AMD_sparse_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/ANGLE_texture_usage_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/ANGLE_texture_usage_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/APPLE_element_array_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/APPLE_element_array_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/APPLE_fence_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/APPLE_fence_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/APPLE_float_pixels_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/APPLE_float_pixels_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/APPLE_rgb_422_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/APPLE_rgb_422_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/APPLE_row_bytes_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/APPLE_row_bytes_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/APPLE_sync_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/APPLE_sync_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/APPLE_texture_range_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/APPLE_texture_range_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/APPLE_ycbcr_422_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/APPLE_ycbcr_422_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/DMP_program_binary_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/DMP_program_binary_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/DMP_shader_binary_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/DMP_shader_binary_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_422_pixels_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_422_pixels_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_abgr_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_abgr_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_base_instance_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_base_instance_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_blend_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_blend_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_buffer_storage_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_buffer_storage_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_cmyka_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_cmyka_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_color_subtable_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_color_subtable_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_convolution_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_convolution_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_copy_image_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_copy_image_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_copy_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_copy_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_cull_vertex_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_cull_vertex_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_debug_label_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_debug_label_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_debug_marker_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_debug_marker_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_draw_buffers2_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_draw_buffers2_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_draw_buffers_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_draw_buffers_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_draw_instanced_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_draw_instanced_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_fog_coord_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_fog_coord_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_gpu_shader4_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_gpu_shader4_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_histogram_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_histogram_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_index_func_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_index_func_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_index_material_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_index_material_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_legacy_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_legacy_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_light_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_light_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_multisample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_multisample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_packed_float_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_packed_float_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_pixel_transform_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_pixel_transform_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_polygon_offset_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_polygon_offset_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_pvrtc_srgb_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_pvrtc_srgb_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_robustness_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_robustness_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_secondary_color_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_secondary_color_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_sparse_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_sparse_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_subtexture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_subtexture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_texture3D_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_texture3D_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_texture_buffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_texture_buffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_texture_integer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_texture_integer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_texture_object_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_texture_object_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_texture_sRGB_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_texture_sRGB_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_texture_snorm_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_texture_snorm_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_texture_srgb_r8_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_texture_srgb_r8_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_texture_storage_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_texture_storage_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_texture_view_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_texture_view_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_timer_query_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_timer_query_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_vertex_array_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_vertex_array_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_vertex_shader_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_vertex_shader_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_x11_sync_object_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_x11_sync_object_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/EXT_yuv_target_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/EXT_yuv_target_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/HP_image_transform_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/HP_image_transform_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/HP_occlusion_test_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/HP_occlusion_test_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/HP_texture_lighting_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/HP_texture_lighting_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/IBM_cull_vertex_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/IBM_cull_vertex_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/IBM_rasterpos_clip_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/IBM_rasterpos_clip_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/IBM_static_data_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/IBM_static_data_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/IMG_program_binary_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/IMG_program_binary_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/IMG_shader_binary_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/IMG_shader_binary_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/IMG_user_clip_plane_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/IMG_user_clip_plane_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/INGR_color_clamp_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/INGR_color_clamp_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/INGR_interlace_read_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/INGR_interlace_read_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/INTEL_map_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/INTEL_map_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/KHR_no_error_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/KHR_no_error_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/MESAX_texture_stack_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/MESAX_texture_stack_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/MESA_pack_invert_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/MESA_pack_invert_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/MESA_resize_buffers_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/MESA_resize_buffers_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/MESA_window_pos_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/MESA_window_pos_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/MESA_ycbcr_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/MESA_ycbcr_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_blend_subtract_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_blend_subtract_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_copy_image_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_copy_image_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_draw_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_draw_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_egl_image_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_egl_image_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_fixed_point_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_fixed_point_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_geometry_shader_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_geometry_shader_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_mapbuffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_mapbuffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_matrix_get_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_matrix_get_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_matrix_palette_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_matrix_palette_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_sample_shading_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_sample_shading_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_texture_3d_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_texture_3d_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_texture_buffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_texture_buffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OES_texture_view_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OES_texture_view_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OML_interlace_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OML_interlace_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OML_resample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OML_resample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OML_subsample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OML_subsample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/OVR_multiview_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/OVR_multiview_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/PGI_misc_hints_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/PGI_misc_hints_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/PGI_vertex_hints_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/PGI_vertex_hints_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/QCOM_alpha_test_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/QCOM_alpha_test_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/QCOM_driver_control_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/QCOM_driver_control_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/QCOM_extended_get2_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/QCOM_extended_get2_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/QCOM_extended_get_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/QCOM_extended_get_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/S3_s3tc_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/S3_s3tc_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIS_detail_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIS_detail_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIS_fog_function_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIS_fog_function_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIS_multisample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIS_multisample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIS_pixel_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIS_pixel_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIS_texture4d_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIS_texture4d_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIS_texture_select_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIS_texture_select_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_async_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_async_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_async_pixel_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_async_pixel_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_clipmap_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_clipmap_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_flush_raster_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_flush_raster_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_fog_offset_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_fog_offset_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_fog_scale_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_fog_scale_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_framezoom_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_framezoom_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_instruments_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_instruments_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_interlace_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_interlace_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_ir_instrument1_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_ir_instrument1_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_list_priority_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_list_priority_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_pixel_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_pixel_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_pixel_tiles_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_pixel_tiles_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_polynomial_ffd_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_polynomial_ffd_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_resample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_resample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_scalebias_hint_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_scalebias_hint_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_shadow_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_shadow_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_sprite_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_sprite_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_subsample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_subsample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_texture_range_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_texture_range_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_vertex_preclip_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_vertex_preclip_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_ycrcb_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_ycrcb_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGIX_ycrcba_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGIX_ycrcba_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SGI_color_table_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SGI_color_table_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SUNX_constant_data_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SUNX_constant_data_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SUN_global_alpha_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SUN_global_alpha_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SUN_mesh_array_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SUN_mesh_array_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SUN_slice_accum_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SUN_slice_accum_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SUN_triangle_list_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SUN_triangle_list_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/SUN_vertex_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/SUN_vertex_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/VIV_shader_binary_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/VIV_shader_binary_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/WIN_phong_shading_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/WIN_phong_shading_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/Misc/WIN_specular_fog_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/Misc/WIN_specular_fog_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NVX_gpu_memory_info_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NVX_gpu_memory_info_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_bindless_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_bindless_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_command_list_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_command_list_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_compute_program5_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_compute_program5_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_conditional_render_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_conditional_render_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_copy_buffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_copy_buffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_copy_image_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_copy_image_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_coverage_sample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_coverage_sample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_deep_texture3d_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_deep_texture3d_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_depth_buffer_float_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_depth_buffer_float_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_depth_nonlinear_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_depth_nonlinear_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_draw_buffers_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_draw_buffers_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_draw_instanced_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_draw_instanced_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_draw_texture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_draw_texture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_evaluators_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_evaluators_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_fence_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_fence_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_fill_rectangle_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_fill_rectangle_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_float_buffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_float_buffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_fog_distance_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_fog_distance_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_fragment_program2_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_fragment_program2_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_framebuffer_blit_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_framebuffer_blit_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_geometry_program4_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_geometry_program4_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_gpu_program4_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_gpu_program4_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_gpu_program5_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_gpu_program5_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_gpu_shader5_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_gpu_shader5_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_half_float_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_half_float_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_instanced_arrays_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_instanced_arrays_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_light_max_exponent_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_light_max_exponent_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_occlusion_query_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_occlusion_query_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_path_rendering_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_path_rendering_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_pixel_data_range_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_pixel_data_range_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_point_sprite_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_point_sprite_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_polygon_mode_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_polygon_mode_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_present_video_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_present_video_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_primitive_restart_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_primitive_restart_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_read_buffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_read_buffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_register_combiners_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_register_combiners_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_sample_locations_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_sample_locations_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_shader_buffer_load_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_shader_buffer_load_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_srgb_formats_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_srgb_formats_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_texgen_emboss_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_texgen_emboss_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_texture_barrier_Include.h: -------------------------------------------------------------------------------- 1 | #define GLI_INCLUDE_GL_NV_TEXTURE_BARRIER 2 | 3 | void glTextureBarrierNV(void); 4 | -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_texture_shader_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_texture_shader_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_transform_feedback_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_transform_feedback_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_vdpau_interop_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_vdpau_interop_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_vertex_array_range_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_vertex_array_range_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_video_capture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_video_capture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_viewport_array_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_viewport_array_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/NV/NV_viewport_swizzle_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/NV/NV_viewport_swizzle_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGLCore_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGLCore_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_3DFX_multisample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_3DFX_multisample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_ARB_multisample_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_ARB_multisample_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_ARB_pbuffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_ARB_pbuffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_ARB_pixel_format_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_ARB_pixel_format_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_EXT_depth_float_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_EXT_depth_float_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_EXT_swap_control_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_EXT_swap_control_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_I3D_gamma_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_I3D_gamma_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_I3D_genlock_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_I3D_genlock_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_I3D_image_buffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_I3D_image_buffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_NV_copy_image_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_NV_copy_image_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_NV_dx_interop_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_NV_dx_interop_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_NV_float_buffer_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_NV_float_buffer_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_NV_gpu_affinity_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_NV_gpu_affinity_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_NV_present_video_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_NV_present_video_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_NV_swap_group_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_NV_swap_group_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_NV_video_capture_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_NV_video_capture_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_NV_video_output_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_NV_video_output_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/WGL/WGL_OML_sync_control_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/WGL/WGL_OML_sync_control_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/XGL/XGLCore_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/XGL/XGLCore_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/XGL/XGL_SGI_swap_control_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/XGL/XGL_SGI_swap_control_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/XGL/XGL_SGI_video_sync_Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/XGL/XGL_SGI_video_sync_Include.h -------------------------------------------------------------------------------- /Bin/GLFunctions/gliIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/GLFunctions/gliIncludes.h -------------------------------------------------------------------------------- /Bin/MainLib/gliConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/MainLib/gliConfig.ini -------------------------------------------------------------------------------- /Bin/MainLib/gliConfig_Definition.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/MainLib/gliConfig_Definition.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLCStrike/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLCStrike/config.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLCStrike/config_Definition.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLCStrike/config_Definition.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLDebugContext/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLDebugContext/config.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLExtOverride/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLExtOverride/config.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLExtOverride/config_Definition.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLExtOverride/config_Definition.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLFramePing/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLFramePing/config.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLFramePing/config_Definition.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLFramePing/config_Definition.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLFreeCam/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLFreeCam/config.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLFreeCam/config_Definition.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLFreeCam/config_Definition.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLFuncStats/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLFuncStats/config.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLFuncStats/config_Definition.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLFuncStats/config_Definition.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLShaderEdit/SciTEGlobal.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLShaderEdit/SciTEGlobal.properties -------------------------------------------------------------------------------- /Bin/Plugins/GLShaderEdit/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLShaderEdit/config.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLShaderEdit/config_Definition.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLShaderEdit/config_Definition.ini -------------------------------------------------------------------------------- /Bin/Plugins/GLShaderEdit/glasm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLShaderEdit/glasm.properties -------------------------------------------------------------------------------- /Bin/Plugins/GLShaderEdit/glsl.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLShaderEdit/glsl.properties -------------------------------------------------------------------------------- /Bin/Plugins/GLShaderEdit/glslapi.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/GLShaderEdit/glslapi.api -------------------------------------------------------------------------------- /Bin/Plugins/TestPlugin/config_Definition.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Plugins/TestPlugin/config_Definition.ini -------------------------------------------------------------------------------- /Bin/Profiles/gliConfig.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/gliConfig.xni -------------------------------------------------------------------------------- /Bin/Profiles/gliConfig_AuthorStd.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/gliConfig_AuthorStd.xni -------------------------------------------------------------------------------- /Bin/Profiles/gliConfig_DebugContext.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/gliConfig_DebugContext.xni -------------------------------------------------------------------------------- /Bin/Profiles/gliConfig_ExtOverride.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/gliConfig_ExtOverride.xni -------------------------------------------------------------------------------- /Bin/Profiles/gliConfig_FreeCam.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/gliConfig_FreeCam.xni -------------------------------------------------------------------------------- /Bin/Profiles/gliConfig_FullDebug.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/gliConfig_FullDebug.xni -------------------------------------------------------------------------------- /Bin/Profiles/gliConfig_ShaderEdit.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/gliConfig_ShaderEdit.xni -------------------------------------------------------------------------------- /Bin/Profiles/gliConfig_XMLFrame.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/gliConfig_XMLFrame.xni -------------------------------------------------------------------------------- /Bin/Profiles/test.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/test.xni -------------------------------------------------------------------------------- /Bin/Profiles/test2.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/test2.xni -------------------------------------------------------------------------------- /Bin/Profiles/test3.xni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/Profiles/test3.xni -------------------------------------------------------------------------------- /Bin/XSL/IEViewLog.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/XSL/IEViewLog.hta -------------------------------------------------------------------------------- /Bin/XSL/gliIntercept_Basic.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/XSL/gliIntercept_Basic.xsl -------------------------------------------------------------------------------- /Bin/XSL/gliIntercept_DHTML2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Bin/XSL/gliIntercept_DHTML2.xsl -------------------------------------------------------------------------------- /Docs/Images/ARB_debug_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/Images/ARB_debug_output.png -------------------------------------------------------------------------------- /Docs/Images/GLicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/Images/GLicon.png -------------------------------------------------------------------------------- /Docs/Images/errorTypes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/Images/errorTypes.gif -------------------------------------------------------------------------------- /Docs/Images/extoverride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/Images/extoverride.png -------------------------------------------------------------------------------- /Docs/Images/freecam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/Images/freecam.png -------------------------------------------------------------------------------- /Docs/Images/glixmlshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/Images/glixmlshot.gif -------------------------------------------------------------------------------- /Docs/Images/shaderedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/Images/shaderedit.png -------------------------------------------------------------------------------- /Docs/Screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/Screenshots.md -------------------------------------------------------------------------------- /Docs/licence_corona.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/licence_corona.txt -------------------------------------------------------------------------------- /Docs/licence_glsl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/licence_glsl.txt -------------------------------------------------------------------------------- /Docs/licence_scite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/licence_scite.txt -------------------------------------------------------------------------------- /Docs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/license.txt -------------------------------------------------------------------------------- /Docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/readme.txt -------------------------------------------------------------------------------- /Docs/readme_src.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/readme_src.txt -------------------------------------------------------------------------------- /Docs/version_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Docs/version_info.txt -------------------------------------------------------------------------------- /Include/corona.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Include/corona.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/README.md -------------------------------------------------------------------------------- /Src/Common/AutoReferenceCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/AutoReferenceCount.h -------------------------------------------------------------------------------- /Src/Common/ConfigParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/ConfigParser.cpp -------------------------------------------------------------------------------- /Src/Common/ConfigParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/ConfigParser.h -------------------------------------------------------------------------------- /Src/Common/ErrorLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/ErrorLog.cpp -------------------------------------------------------------------------------- /Src/Common/ErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/ErrorLog.h -------------------------------------------------------------------------------- /Src/Common/FileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/FileUtils.cpp -------------------------------------------------------------------------------- /Src/Common/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/FileUtils.h -------------------------------------------------------------------------------- /Src/Common/InputUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/InputUtils.cpp -------------------------------------------------------------------------------- /Src/Common/InputUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/InputUtils.h -------------------------------------------------------------------------------- /Src/Common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/Makefile -------------------------------------------------------------------------------- /Src/Common/MiscUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/MiscUtils.cpp -------------------------------------------------------------------------------- /Src/Common/MiscUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/MiscUtils.h -------------------------------------------------------------------------------- /Src/Common/NetworkUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/NetworkUtils.cpp -------------------------------------------------------------------------------- /Src/Common/NetworkUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/NetworkUtils.h -------------------------------------------------------------------------------- /Src/Common/OSDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/OSDefines.h -------------------------------------------------------------------------------- /Src/Common/PluginCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/PluginCommon.cpp -------------------------------------------------------------------------------- /Src/Common/ReferenceCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/ReferenceCount.h -------------------------------------------------------------------------------- /Src/Common/prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/prefix.cpp -------------------------------------------------------------------------------- /Src/Common/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Common/prefix.h -------------------------------------------------------------------------------- /Src/GLIConfig/CommonErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/CommonErrorLog.h -------------------------------------------------------------------------------- /Src/GLIConfig/ConfigOptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/ConfigOptionsDialog.cpp -------------------------------------------------------------------------------- /Src/GLIConfig/ConfigOptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/ConfigOptionsDialog.h -------------------------------------------------------------------------------- /Src/GLIConfig/GLIConfig.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/GLIConfig.dsp -------------------------------------------------------------------------------- /Src/GLIConfig/GLIConfig.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/GLIConfig.plg -------------------------------------------------------------------------------- /Src/GLIConfig/GLIConfig.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/GLIConfig.rc -------------------------------------------------------------------------------- /Src/GLIConfig/GLIConfigApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/GLIConfigApp.cpp -------------------------------------------------------------------------------- /Src/GLIConfig/GLIConfigApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/GLIConfigApp.h -------------------------------------------------------------------------------- /Src/GLIConfig/GLIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/GLIcon.ico -------------------------------------------------------------------------------- /Src/GLIConfig/GLIcon16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/GLIcon16.xpm -------------------------------------------------------------------------------- /Src/GLIConfig/MainDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/MainDialog.cpp -------------------------------------------------------------------------------- /Src/GLIConfig/MainDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/MainDialog.h -------------------------------------------------------------------------------- /Src/GLIConfig/RCa01368: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/GLIConfig/RCa01368 -------------------------------------------------------------------------------- /Src/MainLib/BuiltInFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/BuiltInFunction.cpp -------------------------------------------------------------------------------- /Src/MainLib/BuiltInFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/BuiltInFunction.h -------------------------------------------------------------------------------- /Src/MainLib/CommonErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/CommonErrorLog.h -------------------------------------------------------------------------------- /Src/MainLib/ConfigData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ConfigData.cpp -------------------------------------------------------------------------------- /Src/MainLib/ConfigData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ConfigData.h -------------------------------------------------------------------------------- /Src/MainLib/DLLLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/DLLLoader.cpp -------------------------------------------------------------------------------- /Src/MainLib/DLLLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/DLLLoader.h -------------------------------------------------------------------------------- /Src/MainLib/DisplayListManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/DisplayListManager.cpp -------------------------------------------------------------------------------- /Src/MainLib/DisplayListManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/DisplayListManager.h -------------------------------------------------------------------------------- /Src/MainLib/DisplayListSaveManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/DisplayListSaveManager.cpp -------------------------------------------------------------------------------- /Src/MainLib/DisplayListSaveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/DisplayListSaveManager.h -------------------------------------------------------------------------------- /Src/MainLib/EnumData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/EnumData.cpp -------------------------------------------------------------------------------- /Src/MainLib/EnumData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/EnumData.h -------------------------------------------------------------------------------- /Src/MainLib/ExtensionFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ExtensionFunction.cpp -------------------------------------------------------------------------------- /Src/MainLib/ExtensionFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ExtensionFunction.h -------------------------------------------------------------------------------- /Src/MainLib/ExtensionFunctionStubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ExtensionFunctionStubs.cpp -------------------------------------------------------------------------------- /Src/MainLib/ExtensionFunctionStubs_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ExtensionFunctionStubs_64.asm -------------------------------------------------------------------------------- /Src/MainLib/ExtensionFunctionWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ExtensionFunctionWrapper.cpp -------------------------------------------------------------------------------- /Src/MainLib/ExtensionFunctionWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ExtensionFunctionWrapper.h -------------------------------------------------------------------------------- /Src/MainLib/FunctionArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/FunctionArgs.h -------------------------------------------------------------------------------- /Src/MainLib/FunctionData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/FunctionData.cpp -------------------------------------------------------------------------------- /Src/MainLib/FunctionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/FunctionData.h -------------------------------------------------------------------------------- /Src/MainLib/FunctionParamStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/FunctionParamStore.h -------------------------------------------------------------------------------- /Src/MainLib/FunctionParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/FunctionParser.cpp -------------------------------------------------------------------------------- /Src/MainLib/FunctionParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/FunctionParser.h -------------------------------------------------------------------------------- /Src/MainLib/FunctionRetValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/FunctionRetValue.h -------------------------------------------------------------------------------- /Src/MainLib/FunctionTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/FunctionTable.cpp -------------------------------------------------------------------------------- /Src/MainLib/FunctionTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/FunctionTable.h -------------------------------------------------------------------------------- /Src/MainLib/GLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLContext.cpp -------------------------------------------------------------------------------- /Src/MainLib/GLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLContext.h -------------------------------------------------------------------------------- /Src/MainLib/GLCore1_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLCore1_1.cpp -------------------------------------------------------------------------------- /Src/MainLib/GLCore1_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLCore1_1.h -------------------------------------------------------------------------------- /Src/MainLib/GLCore1_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLCore1_2.cpp -------------------------------------------------------------------------------- /Src/MainLib/GLCore1_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLCore1_2.h -------------------------------------------------------------------------------- /Src/MainLib/GLDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLDefines.h -------------------------------------------------------------------------------- /Src/MainLib/GLDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLDriver.cpp -------------------------------------------------------------------------------- /Src/MainLib/GLDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLDriver.h -------------------------------------------------------------------------------- /Src/MainLib/GLFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLFunctions.h -------------------------------------------------------------------------------- /Src/MainLib/GLIntercept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLIntercept.cpp -------------------------------------------------------------------------------- /Src/MainLib/GLIntercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLIntercept.h -------------------------------------------------------------------------------- /Src/MainLib/GLIntercept.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLIntercept.plg -------------------------------------------------------------------------------- /Src/MainLib/GLIntercept.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLIntercept.vcproj -------------------------------------------------------------------------------- /Src/MainLib/GLInterceptConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLInterceptConfig.h -------------------------------------------------------------------------------- /Src/MainLib/GLStubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLStubs.cpp -------------------------------------------------------------------------------- /Src/MainLib/GLStubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLStubs.h -------------------------------------------------------------------------------- /Src/MainLib/GLStubsWGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLStubsWGL.cpp -------------------------------------------------------------------------------- /Src/MainLib/GLStubsWGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLStubsWGL.h -------------------------------------------------------------------------------- /Src/MainLib/GLWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLWindows.cpp -------------------------------------------------------------------------------- /Src/MainLib/GLWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/GLWindows.h -------------------------------------------------------------------------------- /Src/MainLib/ImageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ImageManager.cpp -------------------------------------------------------------------------------- /Src/MainLib/ImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ImageManager.h -------------------------------------------------------------------------------- /Src/MainLib/ImageSaveManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ImageSaveManager.cpp -------------------------------------------------------------------------------- /Src/MainLib/ImageSaveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ImageSaveManager.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptData.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptData.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptDataManager.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptDisplayList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptDisplayList.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptDisplayList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptDisplayList.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptFrame.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptFrame.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptImage.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptImage.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptLog.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptLog.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptLogText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptLogText.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptLogText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptLogText.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptLogXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptLogXML.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptLogXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptLogXML.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptPluginDLLInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptPluginDLLInstance.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptPluginDLLInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptPluginDLLInstance.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptPluginInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptPluginInstance.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptPluginInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptPluginInstance.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptPluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptPluginInterface.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptPluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptPluginManager.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptPluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptPluginManager.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptShader.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptShader.h -------------------------------------------------------------------------------- /Src/MainLib/InterceptShaderGLSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptShaderGLSL.cpp -------------------------------------------------------------------------------- /Src/MainLib/InterceptShaderGLSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/InterceptShaderGLSL.h -------------------------------------------------------------------------------- /Src/MainLib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/Makefile -------------------------------------------------------------------------------- /Src/MainLib/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/Makefile.config -------------------------------------------------------------------------------- /Src/MainLib/MovieMaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/MovieMaker.cpp -------------------------------------------------------------------------------- /Src/MainLib/MovieMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/MovieMaker.h -------------------------------------------------------------------------------- /Src/MainLib/ParameterData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ParameterData.cpp -------------------------------------------------------------------------------- /Src/MainLib/ParameterData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ParameterData.h -------------------------------------------------------------------------------- /Src/MainLib/ShaderGLSLManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ShaderGLSLManager.cpp -------------------------------------------------------------------------------- /Src/MainLib/ShaderGLSLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ShaderGLSLManager.h -------------------------------------------------------------------------------- /Src/MainLib/ShaderGLSLSaveManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ShaderGLSLSaveManager.cpp -------------------------------------------------------------------------------- /Src/MainLib/ShaderGLSLSaveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ShaderGLSLSaveManager.h -------------------------------------------------------------------------------- /Src/MainLib/ShaderManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ShaderManager.cpp -------------------------------------------------------------------------------- /Src/MainLib/ShaderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ShaderManager.h -------------------------------------------------------------------------------- /Src/MainLib/ShaderSaveManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ShaderSaveManager.cpp -------------------------------------------------------------------------------- /Src/MainLib/ShaderSaveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/ShaderSaveManager.h -------------------------------------------------------------------------------- /Src/MainLib/generate_64b_asm_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/generate_64b_asm_stubs.py -------------------------------------------------------------------------------- /Src/MainLib/glIntercept.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/glIntercept.def -------------------------------------------------------------------------------- /Src/MainLib/glInterceptx64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/MainLib/glInterceptx64.def -------------------------------------------------------------------------------- /Src/Plugins/GLCStrike/CommonErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLCStrike/CommonErrorLog.h -------------------------------------------------------------------------------- /Src/Plugins/GLCStrike/GLCStrike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLCStrike/GLCStrike.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLCStrike/GLCStrike.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLCStrike/GLCStrike.def -------------------------------------------------------------------------------- /Src/Plugins/GLCStrike/GLCStrike.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLCStrike/GLCStrike.vcproj -------------------------------------------------------------------------------- /Src/Plugins/GLCStrike/OpenGLCStrike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLCStrike/OpenGLCStrike.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLCStrike/OpenGLCStrike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLCStrike/OpenGLCStrike.h -------------------------------------------------------------------------------- /Src/Plugins/GLDebugContext/CommonErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLDebugContext/CommonErrorLog.h -------------------------------------------------------------------------------- /Src/Plugins/GLDebugContext/DebugContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLDebugContext/DebugContext.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLDebugContext/DebugContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLDebugContext/DebugContext.h -------------------------------------------------------------------------------- /Src/Plugins/GLDebugContext/GLDebugContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLDebugContext/GLDebugContext.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLDebugContext/GLDebugContext.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLDebugContext/GLDebugContext.def -------------------------------------------------------------------------------- /Src/Plugins/GLDebugContext/GLDebugContext.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLDebugContext/GLDebugContext.vcproj -------------------------------------------------------------------------------- /Src/Plugins/GLExtOverride/CommonErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLExtOverride/CommonErrorLog.h -------------------------------------------------------------------------------- /Src/Plugins/GLExtOverride/ExtensionOverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLExtOverride/ExtensionOverride.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLExtOverride/ExtensionOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLExtOverride/ExtensionOverride.h -------------------------------------------------------------------------------- /Src/Plugins/GLExtOverride/GLExtOverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLExtOverride/GLExtOverride.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLExtOverride/GLExtOverride.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLExtOverride/GLExtOverride.def -------------------------------------------------------------------------------- /Src/Plugins/GLExtOverride/GLExtOverride.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLExtOverride/GLExtOverride.plg -------------------------------------------------------------------------------- /Src/Plugins/GLExtOverride/GLExtOverride.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLExtOverride/GLExtOverride.vcproj -------------------------------------------------------------------------------- /Src/Plugins/GLFramePing/CommonErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFramePing/CommonErrorLog.h -------------------------------------------------------------------------------- /Src/Plugins/GLFramePing/GLFramePing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFramePing/GLFramePing.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFramePing/GLFramePing.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFramePing/GLFramePing.def -------------------------------------------------------------------------------- /Src/Plugins/GLFramePing/GLFramePing.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFramePing/GLFramePing.plg -------------------------------------------------------------------------------- /Src/Plugins/GLFramePing/GLFramePing.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFramePing/GLFramePing.vcproj -------------------------------------------------------------------------------- /Src/Plugins/GLFramePing/PingPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFramePing/PingPlugin.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFramePing/PingPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFramePing/PingPlugin.h -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/CommonErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/CommonErrorLog.h -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/FCConfigData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/FCConfigData.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/FCConfigData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/FCConfigData.h -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/FCViewCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/FCViewCam.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/FCViewCam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/FCViewCam.h -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/FCamInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/FCamInput.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/FCamInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/FCamInput.h -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/GLFreeCam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/GLFreeCam.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/GLFreeCam.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/GLFreeCam.def -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/GLFreeCam.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/GLFreeCam.plg -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/GLFreeCam.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/GLFreeCam.vcproj -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/OpenGLFreeCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/OpenGLFreeCamera.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/OpenGLFreeCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/OpenGLFreeCamera.h -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/Vector.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/Vector.h -------------------------------------------------------------------------------- /Src/Plugins/GLFreeCam/project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFreeCam/project.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFuncStats/CommonErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFuncStats/CommonErrorLog.h -------------------------------------------------------------------------------- /Src/Plugins/GLFuncStats/FuncStatsPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFuncStats/FuncStatsPlugin.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFuncStats/FuncStatsPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFuncStats/FuncStatsPlugin.h -------------------------------------------------------------------------------- /Src/Plugins/GLFuncStats/GLFuncStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFuncStats/GLFuncStats.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLFuncStats/GLFuncStats.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFuncStats/GLFuncStats.def -------------------------------------------------------------------------------- /Src/Plugins/GLFuncStats/GLFuncStats.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFuncStats/GLFuncStats.plg -------------------------------------------------------------------------------- /Src/Plugins/GLFuncStats/GLFuncStats.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLFuncStats/GLFuncStats.vcproj -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/CommonErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/CommonErrorLog.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/GLFrameBufferCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/GLFrameBufferCache.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/GLFrameBufferCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/GLFrameBufferCache.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/GLRenderCallCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/GLRenderCallCache.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/GLRenderCallCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/GLRenderCallCache.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/GLShaderEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/GLShaderEdit.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/GLShaderEdit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/GLShaderEdit.def -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/GLShaderEdit.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/GLShaderEdit.plg -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/GLShaderEdit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/GLShaderEdit.vcproj -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/Makefile -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/atom.c -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/atom.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/compile.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/cpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/cpp.c -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/cpp.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/cppstruct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/cppstruct.c -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/memory.c -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/memory.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/parser.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/preprocess.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/scanner.c -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/scanner.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/slglobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/slglobals.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/symbols.c -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/symbols.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/tokens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/tokens.c -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/PreProcessor/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/PreProcessor/tokens.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/SEContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/SEContext.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/SEContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/SEContext.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/SEInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/SEInterface.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/SEInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/SEInterface.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/SEInterfaceCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/SEInterfaceCommands.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderDebugGLSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderDebugGLSL.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderDebugGLSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderDebugGLSL.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderEditASM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderEditASM.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderEditASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderEditASM.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderEditGLSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderEditGLSL.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderEditGLSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderEditGLSL.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderEditManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderEditManager.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderEditManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderEditManager.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderManager.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderManagerASM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderManagerASM.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderManagerASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderManagerASM.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderManagerGLSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderManagerGLSL.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderManagerGLSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderManagerGLSL.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderParserGLSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderParserGLSL.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderParserGLSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderParserGLSL.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderUtilsGLSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderUtilsGLSL.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/ShaderUtilsGLSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/ShaderUtilsGLSL.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/SubstituteShaderGLSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/SubstituteShaderGLSL.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/SubstituteShaderGLSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/SubstituteShaderGLSL.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/UniformBugManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/UniformBugManager.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/UniqueShaderID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/UniqueShaderID.cpp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/UniqueShaderID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/UniqueShaderID.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/License.txt -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/README -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/bin/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/bin/empty.txt -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/delbin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/delbin.bat -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/delcvs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/delcvs.bat -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/gtk/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/gtk/Converter.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/gtk/PlatGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/gtk/PlatGTK.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/gtk/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/gtk/deps.mak -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/gtk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/gtk/makefile -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/gtk/scintilla-marshal.list: -------------------------------------------------------------------------------- 1 | NONE:INT,POINTER 2 | -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/include/Face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/include/Face.py -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/CallTip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/CallTip.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/CallTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/CallTip.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/Document.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/Editor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/Editor.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/Editor.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/Indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/Indicator.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/KeyMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/KeyMap.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/KeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/KeyMap.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexAPDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexAPDL.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexAU3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexAU3.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexAVE.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexAVE.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexAda.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexAda.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexAsm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexAsm.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexAsn1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexAsn1.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexBaan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexBaan.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexBash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexBash.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexCLW.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexCLW.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexCPP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexCPP.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexCSS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexCSS.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexCaml.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexCaml.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexConf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexConf.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexGen.py -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexHTML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexHTML.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexKix.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexKix.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexLisp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexLisp.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexLout.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexLout.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexLua.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexLua.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexMPT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexMPT.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexNsis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexNsis.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexPB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexPB.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexPOV.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexPOV.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexPS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexPS.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexPerl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexPerl.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexRuby.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexRuby.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexSQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexSQL.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexTeX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexTeX.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexVB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexVB.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexVHDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexVHDL.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/LexYAML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/LexYAML.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/PropSet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/PropSet.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/RESearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/RESearch.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/SVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/SVector.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/Style.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/Style.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/Style.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/ViewStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/ViewStyle.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/XPM.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/XPM.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/src/XPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/src/XPM.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/tgzsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/tgzsrc -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 165 2 | -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/win32/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/win32/deps.mak -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/win32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/win32/makefile -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scintilla/zipsrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scintilla/zipsrc.bat -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/License.txt -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/README -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/bin/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/bin/empty.txt -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/delbin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/delbin.bat -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/delcvs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/delcvs.bat -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/gtk/Sci48M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/gtk/Sci48M.png -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/gtk/SciIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/gtk/SciIcon.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/gtk/SciTE.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/gtk/SciTE.desktop -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/gtk/SciTEGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/gtk/SciTEGTK.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/gtk/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/gtk/deps.mak -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/gtk/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/gtk/makefile -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/scripts/Fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/scripts/Fixer.py -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/scripts/ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/scripts/ba -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/scripts/ba.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/scripts/ba.bat -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/Exporters.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/Exporters.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/Extender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/Extender.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/FilePath.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/FilePath.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/FilePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/FilePath.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/IFaceTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/IFaceTable.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/SciTE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/SciTE.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/SciTEBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/SciTEBase.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/SciTEBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/SciTEBase.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/SciTEIO.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/SciTEIO.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/SciTEKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/SciTEKeys.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/Utf8_16.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/Utf8_16.cxx -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/Utf8_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/Utf8_16.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/ps.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/ps.properties -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/src/vb.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/src/vb.properties -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/tgzgscite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/tgzgscite -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/tgzsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/tgzsrc -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/upxsc1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/upxsc1.bat -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/win32/SciBall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/win32/SciBall.ico -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/win32/SciTERes.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/win32/SciTERes.rc -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/win32/SciTEWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/win32/SciTEWin.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/win32/compile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/win32/compile.bmp -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/win32/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/win32/deps.mak -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/win32/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/win32/makefile -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/win32/resource.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/win32/resource.hm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/win32/resource.hm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/win32/resrc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/win32/resrc1.h -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/win32/scite.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/win32/scite.mak -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/zipsrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/zipsrc.bat -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/zipwscite.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/zipwscite.bat -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/scite/zipwscited.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/scite/zipwscited.bat -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/Makefile.in -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/A.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/A.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/B.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/B.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/G.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/G.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/GLIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/GLIcon.ico -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/R.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/R.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/RGB.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/RGB.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/Thumbs.db -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/copy.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/copy.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/cut.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/cut.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/find.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/find.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/findup.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/findup.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/new.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/new.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/open.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/open.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/paste.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/paste.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/pencil.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/pencil.ico -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/print.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/print.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/redo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/redo.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/save.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/save.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/saveas.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/saveas.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/undo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/undo.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/x_red.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/x_red.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/art/zoom.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/art/zoom.xpm -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/build/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/configure -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/lib/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/lib/Readme.txt -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/src/Makefile -------------------------------------------------------------------------------- /Src/Plugins/GLShaderEdit/wxstedit/src/stedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/GLShaderEdit/wxstedit/src/stedit.cpp -------------------------------------------------------------------------------- /Src/Plugins/TestPlugin/CommonErrorLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/TestPlugin/CommonErrorLog.h -------------------------------------------------------------------------------- /Src/Plugins/TestPlugin/LogPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/TestPlugin/LogPlugin.cpp -------------------------------------------------------------------------------- /Src/Plugins/TestPlugin/LogPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/TestPlugin/LogPlugin.h -------------------------------------------------------------------------------- /Src/Plugins/TestPlugin/TestPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/TestPlugin/TestPlugin.cpp -------------------------------------------------------------------------------- /Src/Plugins/TestPlugin/TestPlugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/TestPlugin/TestPlugin.def -------------------------------------------------------------------------------- /Src/Plugins/TestPlugin/TestPlugin.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/TestPlugin/TestPlugin.plg -------------------------------------------------------------------------------- /Src/Plugins/TestPlugin/TestPlugin.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/Plugins/TestPlugin/TestPlugin.vcproj -------------------------------------------------------------------------------- /Src/WorkSpaces/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/WorkSpaces/CMakeLists.txt -------------------------------------------------------------------------------- /Src/WorkSpaces/GLI Plugins.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/WorkSpaces/GLI Plugins.sln -------------------------------------------------------------------------------- /Src/WorkSpaces/GLIConfig.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/WorkSpaces/GLIConfig.dsw -------------------------------------------------------------------------------- /Src/WorkSpaces/GLIntercept.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/WorkSpaces/GLIntercept.sln -------------------------------------------------------------------------------- /Src/WorkSpaces/SciTE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/WorkSpaces/SciTE.sln -------------------------------------------------------------------------------- /Src/WorkSpaces/wxstedit_wx26.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtrebilco/glintercept/HEAD/Src/WorkSpaces/wxstedit_wx26.dsw --------------------------------------------------------------------------------