├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── templates │ ├── VisualStudioUserFile.vcproj.user.in │ └── VisualStudioUserFile.vcxproj.user.in ├── cross-build ├── .gitignore └── .gitkeep ├── doc ├── .gitignore └── Doxyfile ├── framework ├── CMakeLists.txt ├── include │ └── framework │ │ ├── config.h.in │ │ ├── events.h │ │ ├── game.h │ │ ├── log.h │ │ ├── main_loop.h │ │ ├── plugin.h │ │ ├── plugin_api.h │ │ ├── plugin_manager.h │ │ ├── se_api.h │ │ └── services.h └── src │ ├── events.c │ ├── game.c │ ├── log.c │ ├── main_loop.c │ ├── plugin.c │ ├── plugin_manager.c │ ├── se_api.c │ └── services.c ├── lightship ├── CMakeLists.txt ├── cfg │ ├── settings.yml │ └── settings_d.yml ├── include │ └── lightship │ │ ├── argv.h │ │ ├── config.h.in │ │ ├── init.h │ │ ├── lightship.h │ │ └── thread_test.h ├── python │ └── Main.py └── src │ ├── argv.c │ ├── init.c │ └── main.c ├── lightship_version ├── plugins ├── CMakeLists.txt ├── core │ ├── CMakeLists.txt │ ├── input │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── plugin_input │ │ │ │ ├── config.h.in │ │ │ │ ├── context.h │ │ │ │ ├── events.h │ │ │ │ ├── keyboard.h │ │ │ │ ├── mouse.h │ │ │ │ └── services.h │ │ └── src │ │ │ ├── context.c │ │ │ ├── events.c │ │ │ ├── keyboard.c │ │ │ ├── mouse.c │ │ │ ├── plugin_input.c │ │ │ └── services.c │ ├── menu │ │ ├── CMakeLists.txt │ │ ├── cfg │ │ │ └── menu.yml │ │ ├── include │ │ │ └── plugin_menu │ │ │ │ ├── button.h │ │ │ │ ├── config.h.in │ │ │ │ ├── context.h │ │ │ │ ├── element.h │ │ │ │ ├── events.h │ │ │ │ ├── menu.h │ │ │ │ ├── screen.h │ │ │ │ └── services.h │ │ ├── src │ │ │ ├── button.c │ │ │ ├── context.c │ │ │ ├── element.c │ │ │ ├── events.c │ │ │ ├── menu.c │ │ │ ├── plugin_menu.c │ │ │ ├── screen.c │ │ │ └── services.c │ │ └── ttf │ │ │ └── DejaVuSans.ttf │ ├── python │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── plugin_python │ │ │ │ ├── config.h.in │ │ │ │ ├── context.h │ │ │ │ ├── events.h │ │ │ │ ├── interpreter.h │ │ │ │ ├── lightship_module.h │ │ │ │ ├── lightship_module_events.h │ │ │ │ ├── lightship_module_exceptions.h │ │ │ │ ├── lightship_module_game.h │ │ │ │ ├── lightship_module_services.h │ │ │ │ └── services.h │ │ └── src │ │ │ ├── context.c │ │ │ ├── events.c │ │ │ ├── interpreter.c │ │ │ ├── lightship_module.c │ │ │ ├── lightship_module_events.c │ │ │ ├── lightship_module_exceptions.c │ │ │ ├── lightship_module_game.c │ │ │ ├── lightship_module_services.c │ │ │ ├── plugin_python.c │ │ │ └── services.c │ └── renderer_gl │ │ ├── CMakeLists.txt │ │ ├── ext │ │ ├── CMakeLists.txt │ │ ├── GL │ │ │ ├── CMakeLists.txt │ │ │ ├── glew-1.9.0 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ ├── TODO.txt │ │ │ │ ├── auto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── make.pl │ │ │ │ │ │ ├── make_def_fun.pl │ │ │ │ │ │ ├── make_def_var.pl │ │ │ │ │ │ ├── make_header.pl │ │ │ │ │ │ ├── make_html.pl │ │ │ │ │ │ ├── make_info.pl │ │ │ │ │ │ ├── make_info_list.pl │ │ │ │ │ │ ├── make_init.pl │ │ │ │ │ │ ├── make_list.pl │ │ │ │ │ │ ├── make_str.pl │ │ │ │ │ │ ├── make_struct_fun.pl │ │ │ │ │ │ ├── make_struct_var.pl │ │ │ │ │ │ ├── parse_spec.pl │ │ │ │ │ │ ├── update_ext.sh │ │ │ │ │ │ └── update_registry.sh │ │ │ │ │ ├── blacklist │ │ │ │ │ ├── core │ │ │ │ │ │ ├── GLX_AMD_gpu_association │ │ │ │ │ │ ├── GLX_ARB_get_proc_address │ │ │ │ │ │ ├── GLX_ATI_pixel_format_float │ │ │ │ │ │ ├── GLX_ATI_render_texture │ │ │ │ │ │ ├── GLX_EXT_create_context_es2_profile │ │ │ │ │ │ ├── GLX_EXT_create_context_es_profile │ │ │ │ │ │ ├── GLX_EXT_fbconfig_packed_float │ │ │ │ │ │ ├── GLX_EXT_framebuffer_sRGB │ │ │ │ │ │ ├── GLX_MESA_swap_control │ │ │ │ │ │ ├── GLX_NV_float_buffer │ │ │ │ │ │ ├── GLX_NV_vertex_array_range │ │ │ │ │ │ ├── GLX_SGIS_shared_multisample │ │ │ │ │ │ ├── GLX_SGIX_hyperpipe │ │ │ │ │ │ ├── GLX_SGIX_swap_barrier │ │ │ │ │ │ ├── GLX_SGIX_swap_group │ │ │ │ │ │ ├── GLX_SGI_video_sync │ │ │ │ │ │ ├── GLX_SUN_video_resize │ │ │ │ │ │ ├── GLX_VERSION_1_2 │ │ │ │ │ │ ├── GLX_VERSION_1_3 │ │ │ │ │ │ ├── GLX_VERSION_1_4 │ │ │ │ │ │ ├── GL_APPLE_float_pixels │ │ │ │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ │ │ │ ├── GL_APPLE_texture_range │ │ │ │ │ │ ├── GL_ARB_draw_instanced │ │ │ │ │ │ ├── GL_ARB_imaging │ │ │ │ │ │ ├── GL_ARB_instanced_arrays │ │ │ │ │ │ ├── GL_ARB_internalformat_query2 │ │ │ │ │ │ ├── GL_ARB_matrix_palette │ │ │ │ │ │ ├── GL_ARB_multitexture │ │ │ │ │ │ ├── GL_ARB_robustness │ │ │ │ │ │ ├── GL_ARB_separate_shader_objects │ │ │ │ │ │ ├── GL_ARB_vertex_attrib_64bit │ │ │ │ │ │ ├── GL_ARB_vertex_blend │ │ │ │ │ │ ├── GL_ATIX_point_sprites │ │ │ │ │ │ ├── GL_ATIX_texture_env_combine3 │ │ │ │ │ │ ├── GL_ATIX_texture_env_route │ │ │ │ │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ │ │ │ │ ├── GL_ATI_envmap_bumpmap │ │ │ │ │ │ ├── GL_ATI_map_object_buffer │ │ │ │ │ │ ├── GL_ATI_pn_triangles │ │ │ │ │ │ ├── GL_ATI_separate_stencil │ │ │ │ │ │ ├── GL_ATI_shader_texture_lod │ │ │ │ │ │ ├── GL_ATI_texture_compression_3dc │ │ │ │ │ │ ├── GL_ATI_vertex_streams │ │ │ │ │ │ ├── GL_EXT_Cg_shader │ │ │ │ │ │ ├── GL_EXT_bindable_uniform │ │ │ │ │ │ ├── GL_EXT_debug_marker │ │ │ │ │ │ ├── GL_EXT_depth_bounds_test │ │ │ │ │ │ ├── GL_EXT_draw_instanced │ │ │ │ │ │ ├── GL_EXT_draw_range_elements │ │ │ │ │ │ ├── GL_EXT_fog_coord │ │ │ │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ │ │ │ ├── GL_EXT_packed_float │ │ │ │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ │ │ │ ├── GL_EXT_secondary_color │ │ │ │ │ │ ├── GL_EXT_texture_array │ │ │ │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ │ │ │ ├── GL_EXT_texture_cube_map │ │ │ │ │ │ ├── GL_EXT_texture_edge_clamp │ │ │ │ │ │ ├── GL_EXT_texture_integer │ │ │ │ │ │ ├── GL_EXT_texture_rectangle │ │ │ │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ │ │ │ ├── GL_EXT_timer_query │ │ │ │ │ │ ├── GL_EXT_vertex_shader │ │ │ │ │ │ ├── GL_KTX_buffer_region │ │ │ │ │ │ ├── GL_NVX_gpu_memory_info │ │ │ │ │ │ ├── GL_NV_depth_buffer_float │ │ │ │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ │ │ │ ├── GL_NV_fragment_program2 │ │ │ │ │ │ ├── GL_NV_fragment_program4 │ │ │ │ │ │ ├── GL_NV_fragment_program_option │ │ │ │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ │ │ │ ├── GL_NV_geometry_program4 │ │ │ │ │ │ ├── GL_NV_geometry_shader4 │ │ │ │ │ │ ├── GL_NV_gpu_program4 │ │ │ │ │ │ ├── GL_NV_gpu_program5 │ │ │ │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ │ │ │ ├── GL_NV_path_rendering │ │ │ │ │ │ ├── GL_NV_present_video │ │ │ │ │ │ ├── GL_NV_tessellation_program5 │ │ │ │ │ │ ├── GL_NV_transform_feedback │ │ │ │ │ │ ├── GL_NV_vdpau_interop │ │ │ │ │ │ ├── GL_NV_vertex_program2_option │ │ │ │ │ │ ├── GL_NV_vertex_program3 │ │ │ │ │ │ ├── GL_NV_vertex_program4 │ │ │ │ │ │ ├── GL_REGAL_error_string │ │ │ │ │ │ ├── GL_REGAL_extension_query │ │ │ │ │ │ ├── GL_REGAL_log │ │ │ │ │ │ ├── GL_SGIX_shadow │ │ │ │ │ │ ├── GL_SUN_read_video_pixels │ │ │ │ │ │ ├── GL_VERSION_1_2 │ │ │ │ │ │ ├── GL_VERSION_1_2_1 │ │ │ │ │ │ ├── GL_VERSION_1_3 │ │ │ │ │ │ ├── GL_VERSION_1_4 │ │ │ │ │ │ ├── GL_VERSION_1_5 │ │ │ │ │ │ ├── GL_VERSION_2_0 │ │ │ │ │ │ ├── GL_VERSION_2_1 │ │ │ │ │ │ ├── GL_VERSION_3_0 │ │ │ │ │ │ ├── GL_VERSION_3_1 │ │ │ │ │ │ ├── GL_VERSION_3_2 │ │ │ │ │ │ ├── GL_VERSION_3_3 │ │ │ │ │ │ ├── GL_VERSION_4_0 │ │ │ │ │ │ ├── GL_VERSION_4_1 │ │ │ │ │ │ ├── GL_VERSION_4_2 │ │ │ │ │ │ ├── GL_VERSION_4_3 │ │ │ │ │ │ ├── GL_WIN_swap_hint │ │ │ │ │ │ ├── WGL_ARB_create_context │ │ │ │ │ │ ├── WGL_ATI_render_texture_rectangle │ │ │ │ │ │ ├── WGL_EXT_create_context_es2_profile │ │ │ │ │ │ ├── WGL_EXT_create_context_es_profile │ │ │ │ │ │ ├── WGL_EXT_framebuffer_sRGB │ │ │ │ │ │ ├── WGL_EXT_pixel_format_packed_float │ │ │ │ │ │ ├── WGL_NV_gpu_affinity │ │ │ │ │ │ └── WGL_NV_vertex_array_range │ │ │ │ │ ├── custom.txt │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── advanced.html │ │ │ │ │ │ ├── basic.html │ │ │ │ │ │ ├── build.html │ │ │ │ │ │ ├── credits.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── install.html │ │ │ │ │ │ └── log.html │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── .dummy │ │ │ │ │ │ ├── GLX_3DFX_multisample │ │ │ │ │ │ ├── GLX_AMD_gpu_association │ │ │ │ │ │ ├── GLX_ARB_create_context │ │ │ │ │ │ ├── GLX_ARB_create_context_profile │ │ │ │ │ │ ├── GLX_ARB_create_context_robustness │ │ │ │ │ │ ├── GLX_ARB_fbconfig_float │ │ │ │ │ │ ├── GLX_ARB_framebuffer_sRGB │ │ │ │ │ │ ├── GLX_ARB_get_proc_address │ │ │ │ │ │ ├── GLX_ARB_multisample │ │ │ │ │ │ ├── GLX_ARB_robustness_application_isolation │ │ │ │ │ │ ├── GLX_ARB_robustness_share_group_isolation │ │ │ │ │ │ ├── GLX_ARB_vertex_buffer_object │ │ │ │ │ │ ├── GLX_ATI_pixel_format_float │ │ │ │ │ │ ├── GLX_ATI_render_texture │ │ │ │ │ │ ├── GLX_EXT_create_context_es2_profile │ │ │ │ │ │ ├── GLX_EXT_create_context_es_profile │ │ │ │ │ │ ├── GLX_EXT_fbconfig_packed_float │ │ │ │ │ │ ├── GLX_EXT_framebuffer_sRGB │ │ │ │ │ │ ├── GLX_EXT_import_context │ │ │ │ │ │ ├── GLX_EXT_scene_marker │ │ │ │ │ │ ├── GLX_EXT_swap_control │ │ │ │ │ │ ├── GLX_EXT_swap_control_tear │ │ │ │ │ │ ├── GLX_EXT_texture_from_pixmap │ │ │ │ │ │ ├── GLX_EXT_visual_info │ │ │ │ │ │ ├── GLX_EXT_visual_rating │ │ │ │ │ │ ├── GLX_INTEL_swap_event │ │ │ │ │ │ ├── GLX_MESA_agp_offset │ │ │ │ │ │ ├── GLX_MESA_copy_sub_buffer │ │ │ │ │ │ ├── GLX_MESA_pixmap_colormap │ │ │ │ │ │ ├── GLX_MESA_release_buffers │ │ │ │ │ │ ├── GLX_MESA_set_3dfx_mode │ │ │ │ │ │ ├── GLX_MESA_swap_control │ │ │ │ │ │ ├── GLX_NV_copy_image │ │ │ │ │ │ ├── GLX_NV_float_buffer │ │ │ │ │ │ ├── GLX_NV_multisample_coverage │ │ │ │ │ │ ├── GLX_NV_present_video │ │ │ │ │ │ ├── GLX_NV_swap_group │ │ │ │ │ │ ├── GLX_NV_vertex_array_range │ │ │ │ │ │ ├── GLX_NV_video_capture │ │ │ │ │ │ ├── GLX_NV_video_out │ │ │ │ │ │ ├── GLX_OML_swap_method │ │ │ │ │ │ ├── GLX_OML_sync_control │ │ │ │ │ │ ├── GLX_SGIS_blended_overlay │ │ │ │ │ │ ├── GLX_SGIS_color_range │ │ │ │ │ │ ├── GLX_SGIS_multisample │ │ │ │ │ │ ├── GLX_SGIS_shared_multisample │ │ │ │ │ │ ├── GLX_SGIX_fbconfig │ │ │ │ │ │ ├── GLX_SGIX_hyperpipe │ │ │ │ │ │ ├── GLX_SGIX_pbuffer │ │ │ │ │ │ ├── GLX_SGIX_swap_barrier │ │ │ │ │ │ ├── GLX_SGIX_swap_group │ │ │ │ │ │ ├── GLX_SGIX_video_resize │ │ │ │ │ │ ├── GLX_SGIX_visual_select_group │ │ │ │ │ │ ├── GLX_SGI_cushion │ │ │ │ │ │ ├── GLX_SGI_make_current_read │ │ │ │ │ │ ├── GLX_SGI_swap_control │ │ │ │ │ │ ├── GLX_SGI_video_sync │ │ │ │ │ │ ├── GLX_SUN_get_transparent_index │ │ │ │ │ │ ├── GLX_SUN_video_resize │ │ │ │ │ │ ├── GL_3DFX_multisample │ │ │ │ │ │ ├── GL_3DFX_tbuffer │ │ │ │ │ │ ├── GL_3DFX_texture_compression_FXT1 │ │ │ │ │ │ ├── GL_AMD_blend_minmax_factor │ │ │ │ │ │ ├── GL_AMD_conservative_depth │ │ │ │ │ │ ├── GL_AMD_debug_output │ │ │ │ │ │ ├── GL_AMD_depth_clamp_separate │ │ │ │ │ │ ├── GL_AMD_draw_buffers_blend │ │ │ │ │ │ ├── GL_AMD_multi_draw_indirect │ │ │ │ │ │ ├── GL_AMD_name_gen_delete │ │ │ │ │ │ ├── GL_AMD_performance_monitor │ │ │ │ │ │ ├── GL_AMD_pinned_memory │ │ │ │ │ │ ├── GL_AMD_query_buffer_object │ │ │ │ │ │ ├── GL_AMD_sample_positions │ │ │ │ │ │ ├── GL_AMD_seamless_cubemap_per_texture │ │ │ │ │ │ ├── GL_AMD_shader_stencil_export │ │ │ │ │ │ ├── GL_AMD_stencil_operation_extended │ │ │ │ │ │ ├── GL_AMD_texture_texture4 │ │ │ │ │ │ ├── GL_AMD_transform_feedback3_lines_triangles │ │ │ │ │ │ ├── GL_AMD_vertex_shader_layer │ │ │ │ │ │ ├── GL_AMD_vertex_shader_tessellator │ │ │ │ │ │ ├── GL_AMD_vertex_shader_viewport_index │ │ │ │ │ │ ├── GL_APPLE_aux_depth_stencil │ │ │ │ │ │ ├── GL_APPLE_client_storage │ │ │ │ │ │ ├── GL_APPLE_element_array │ │ │ │ │ │ ├── GL_APPLE_fence │ │ │ │ │ │ ├── GL_APPLE_float_pixels │ │ │ │ │ │ ├── GL_APPLE_flush_buffer_range │ │ │ │ │ │ ├── GL_APPLE_object_purgeable │ │ │ │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ │ │ │ ├── GL_APPLE_rgb_422 │ │ │ │ │ │ ├── GL_APPLE_row_bytes │ │ │ │ │ │ ├── GL_APPLE_specular_vector │ │ │ │ │ │ ├── GL_APPLE_texture_range │ │ │ │ │ │ ├── GL_APPLE_transform_hint │ │ │ │ │ │ ├── GL_APPLE_vertex_array_object │ │ │ │ │ │ ├── GL_APPLE_vertex_array_range │ │ │ │ │ │ ├── GL_APPLE_vertex_program_evaluators │ │ │ │ │ │ ├── GL_APPLE_ycbcr_422 │ │ │ │ │ │ ├── GL_ARB_ES2_compatibility │ │ │ │ │ │ ├── GL_ARB_ES3_compatibility │ │ │ │ │ │ ├── GL_ARB_arrays_of_arrays │ │ │ │ │ │ ├── GL_ARB_base_instance │ │ │ │ │ │ ├── GL_ARB_blend_func_extended │ │ │ │ │ │ ├── GL_ARB_cl_event │ │ │ │ │ │ ├── GL_ARB_clear_buffer_object │ │ │ │ │ │ ├── GL_ARB_color_buffer_float │ │ │ │ │ │ ├── GL_ARB_compatibility │ │ │ │ │ │ ├── GL_ARB_compressed_texture_pixel_storage │ │ │ │ │ │ ├── GL_ARB_compute_shader │ │ │ │ │ │ ├── GL_ARB_conservative_depth │ │ │ │ │ │ ├── GL_ARB_copy_buffer │ │ │ │ │ │ ├── GL_ARB_copy_image │ │ │ │ │ │ ├── GL_ARB_debug_output │ │ │ │ │ │ ├── GL_ARB_depth_buffer_float │ │ │ │ │ │ ├── GL_ARB_depth_clamp │ │ │ │ │ │ ├── GL_ARB_depth_texture │ │ │ │ │ │ ├── GL_ARB_draw_buffers │ │ │ │ │ │ ├── GL_ARB_draw_buffers_blend │ │ │ │ │ │ ├── GL_ARB_draw_elements_base_vertex │ │ │ │ │ │ ├── GL_ARB_draw_indirect │ │ │ │ │ │ ├── GL_ARB_draw_instanced │ │ │ │ │ │ ├── GL_ARB_explicit_attrib_location │ │ │ │ │ │ ├── GL_ARB_explicit_uniform_location │ │ │ │ │ │ ├── GL_ARB_fragment_coord_conventions │ │ │ │ │ │ ├── GL_ARB_fragment_layer_viewport │ │ │ │ │ │ ├── GL_ARB_fragment_program │ │ │ │ │ │ ├── GL_ARB_fragment_program_shadow │ │ │ │ │ │ ├── GL_ARB_fragment_shader │ │ │ │ │ │ ├── GL_ARB_framebuffer_no_attachments │ │ │ │ │ │ ├── GL_ARB_framebuffer_object │ │ │ │ │ │ ├── GL_ARB_framebuffer_sRGB │ │ │ │ │ │ ├── GL_ARB_geometry_shader4 │ │ │ │ │ │ ├── GL_ARB_get_program_binary │ │ │ │ │ │ ├── GL_ARB_gpu_shader5 │ │ │ │ │ │ ├── GL_ARB_gpu_shader_fp64 │ │ │ │ │ │ ├── GL_ARB_half_float_pixel │ │ │ │ │ │ ├── GL_ARB_half_float_vertex │ │ │ │ │ │ ├── GL_ARB_imaging │ │ │ │ │ │ ├── GL_ARB_instanced_arrays │ │ │ │ │ │ ├── GL_ARB_internalformat_query │ │ │ │ │ │ ├── GL_ARB_internalformat_query2 │ │ │ │ │ │ ├── GL_ARB_invalidate_subdata │ │ │ │ │ │ ├── GL_ARB_map_buffer_alignment │ │ │ │ │ │ ├── GL_ARB_map_buffer_range │ │ │ │ │ │ ├── GL_ARB_matrix_palette │ │ │ │ │ │ ├── GL_ARB_multi_draw_indirect │ │ │ │ │ │ ├── GL_ARB_multisample │ │ │ │ │ │ ├── GL_ARB_multitexture │ │ │ │ │ │ ├── GL_ARB_occlusion_query │ │ │ │ │ │ ├── GL_ARB_occlusion_query2 │ │ │ │ │ │ ├── GL_ARB_pixel_buffer_object │ │ │ │ │ │ ├── GL_ARB_point_parameters │ │ │ │ │ │ ├── GL_ARB_point_sprite │ │ │ │ │ │ ├── GL_ARB_program_interface_query │ │ │ │ │ │ ├── GL_ARB_provoking_vertex │ │ │ │ │ │ ├── GL_ARB_robust_buffer_access_behavior │ │ │ │ │ │ ├── GL_ARB_robustness │ │ │ │ │ │ ├── GL_ARB_robustness_application_isolation │ │ │ │ │ │ ├── GL_ARB_robustness_share_group_isolation │ │ │ │ │ │ ├── GL_ARB_sample_shading │ │ │ │ │ │ ├── GL_ARB_sampler_objects │ │ │ │ │ │ ├── GL_ARB_seamless_cube_map │ │ │ │ │ │ ├── GL_ARB_separate_shader_objects │ │ │ │ │ │ ├── GL_ARB_shader_atomic_counters │ │ │ │ │ │ ├── GL_ARB_shader_bit_encoding │ │ │ │ │ │ ├── GL_ARB_shader_image_load_store │ │ │ │ │ │ ├── GL_ARB_shader_image_size │ │ │ │ │ │ ├── GL_ARB_shader_objects │ │ │ │ │ │ ├── GL_ARB_shader_precision │ │ │ │ │ │ ├── GL_ARB_shader_stencil_export │ │ │ │ │ │ ├── GL_ARB_shader_storage_buffer_object │ │ │ │ │ │ ├── GL_ARB_shader_subroutine │ │ │ │ │ │ ├── GL_ARB_shader_texture_lod │ │ │ │ │ │ ├── GL_ARB_shading_language_100 │ │ │ │ │ │ ├── GL_ARB_shading_language_420pack │ │ │ │ │ │ ├── GL_ARB_shading_language_include │ │ │ │ │ │ ├── GL_ARB_shading_language_packing │ │ │ │ │ │ ├── GL_ARB_shadow │ │ │ │ │ │ ├── GL_ARB_shadow_ambient │ │ │ │ │ │ ├── GL_ARB_stencil_texturing │ │ │ │ │ │ ├── GL_ARB_sync │ │ │ │ │ │ ├── GL_ARB_tessellation_shader │ │ │ │ │ │ ├── GL_ARB_texture_border_clamp │ │ │ │ │ │ ├── GL_ARB_texture_buffer_object │ │ │ │ │ │ ├── GL_ARB_texture_buffer_object_rgb32 │ │ │ │ │ │ ├── GL_ARB_texture_buffer_range │ │ │ │ │ │ ├── GL_ARB_texture_compression │ │ │ │ │ │ ├── GL_ARB_texture_compression_bptc │ │ │ │ │ │ ├── GL_ARB_texture_compression_rgtc │ │ │ │ │ │ ├── GL_ARB_texture_cube_map │ │ │ │ │ │ ├── GL_ARB_texture_cube_map_array │ │ │ │ │ │ ├── GL_ARB_texture_env_add │ │ │ │ │ │ ├── GL_ARB_texture_env_combine │ │ │ │ │ │ ├── GL_ARB_texture_env_crossbar │ │ │ │ │ │ ├── GL_ARB_texture_env_dot3 │ │ │ │ │ │ ├── GL_ARB_texture_float │ │ │ │ │ │ ├── GL_ARB_texture_gather │ │ │ │ │ │ ├── GL_ARB_texture_mirrored_repeat │ │ │ │ │ │ ├── GL_ARB_texture_multisample │ │ │ │ │ │ ├── GL_ARB_texture_non_power_of_two │ │ │ │ │ │ ├── GL_ARB_texture_query_levels │ │ │ │ │ │ ├── GL_ARB_texture_query_lod │ │ │ │ │ │ ├── GL_ARB_texture_rectangle │ │ │ │ │ │ ├── GL_ARB_texture_rg │ │ │ │ │ │ ├── GL_ARB_texture_rgb10_a2ui │ │ │ │ │ │ ├── GL_ARB_texture_storage │ │ │ │ │ │ ├── GL_ARB_texture_storage_multisample │ │ │ │ │ │ ├── GL_ARB_texture_swizzle │ │ │ │ │ │ ├── GL_ARB_texture_view │ │ │ │ │ │ ├── GL_ARB_timer_query │ │ │ │ │ │ ├── GL_ARB_transform_feedback2 │ │ │ │ │ │ ├── GL_ARB_transform_feedback3 │ │ │ │ │ │ ├── GL_ARB_transform_feedback_instanced │ │ │ │ │ │ ├── GL_ARB_transpose_matrix │ │ │ │ │ │ ├── GL_ARB_uniform_buffer_object │ │ │ │ │ │ ├── GL_ARB_vertex_array_bgra │ │ │ │ │ │ ├── GL_ARB_vertex_array_object │ │ │ │ │ │ ├── GL_ARB_vertex_attrib_64bit │ │ │ │ │ │ ├── GL_ARB_vertex_attrib_binding │ │ │ │ │ │ ├── GL_ARB_vertex_blend │ │ │ │ │ │ ├── GL_ARB_vertex_buffer_object │ │ │ │ │ │ ├── GL_ARB_vertex_program │ │ │ │ │ │ ├── GL_ARB_vertex_shader │ │ │ │ │ │ ├── GL_ARB_vertex_type_2_10_10_10_rev │ │ │ │ │ │ ├── GL_ARB_viewport_array │ │ │ │ │ │ ├── GL_ARB_window_pos │ │ │ │ │ │ ├── GL_ATIX_point_sprites │ │ │ │ │ │ ├── GL_ATIX_texture_env_combine3 │ │ │ │ │ │ ├── GL_ATIX_texture_env_route │ │ │ │ │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ │ │ │ │ ├── GL_ATI_draw_buffers │ │ │ │ │ │ ├── GL_ATI_element_array │ │ │ │ │ │ ├── GL_ATI_envmap_bumpmap │ │ │ │ │ │ ├── GL_ATI_fragment_shader │ │ │ │ │ │ ├── GL_ATI_map_object_buffer │ │ │ │ │ │ ├── GL_ATI_meminfo │ │ │ │ │ │ ├── GL_ATI_pn_triangles │ │ │ │ │ │ ├── GL_ATI_separate_stencil │ │ │ │ │ │ ├── GL_ATI_shader_texture_lod │ │ │ │ │ │ ├── GL_ATI_text_fragment_shader │ │ │ │ │ │ ├── GL_ATI_texture_compression_3dc │ │ │ │ │ │ ├── GL_ATI_texture_env_combine3 │ │ │ │ │ │ ├── GL_ATI_texture_float │ │ │ │ │ │ ├── GL_ATI_texture_mirror_once │ │ │ │ │ │ ├── GL_ATI_vertex_array_object │ │ │ │ │ │ ├── GL_ATI_vertex_attrib_array_object │ │ │ │ │ │ ├── GL_ATI_vertex_streams │ │ │ │ │ │ ├── GL_EXT_422_pixels │ │ │ │ │ │ ├── GL_EXT_Cg_shader │ │ │ │ │ │ ├── GL_EXT_abgr │ │ │ │ │ │ ├── GL_EXT_bgra │ │ │ │ │ │ ├── GL_EXT_bindable_uniform │ │ │ │ │ │ ├── GL_EXT_blend_color │ │ │ │ │ │ ├── GL_EXT_blend_equation_separate │ │ │ │ │ │ ├── GL_EXT_blend_func_separate │ │ │ │ │ │ ├── GL_EXT_blend_logic_op │ │ │ │ │ │ ├── GL_EXT_blend_minmax │ │ │ │ │ │ ├── GL_EXT_blend_subtract │ │ │ │ │ │ ├── GL_EXT_clip_volume_hint │ │ │ │ │ │ ├── GL_EXT_cmyka │ │ │ │ │ │ ├── GL_EXT_color_subtable │ │ │ │ │ │ ├── GL_EXT_compiled_vertex_array │ │ │ │ │ │ ├── GL_EXT_convolution │ │ │ │ │ │ ├── GL_EXT_coordinate_frame │ │ │ │ │ │ ├── GL_EXT_copy_texture │ │ │ │ │ │ ├── GL_EXT_cull_vertex │ │ │ │ │ │ ├── GL_EXT_debug_marker │ │ │ │ │ │ ├── GL_EXT_depth_bounds_test │ │ │ │ │ │ ├── GL_EXT_direct_state_access │ │ │ │ │ │ ├── GL_EXT_draw_buffers2 │ │ │ │ │ │ ├── GL_EXT_draw_instanced │ │ │ │ │ │ ├── GL_EXT_draw_range_elements │ │ │ │ │ │ ├── GL_EXT_fog_coord │ │ │ │ │ │ ├── GL_EXT_fragment_lighting │ │ │ │ │ │ ├── GL_EXT_framebuffer_blit │ │ │ │ │ │ ├── GL_EXT_framebuffer_multisample │ │ │ │ │ │ ├── GL_EXT_framebuffer_multisample_blit_scaled │ │ │ │ │ │ ├── GL_EXT_framebuffer_object │ │ │ │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ │ │ │ ├── GL_EXT_histogram │ │ │ │ │ │ ├── GL_EXT_index_array_formats │ │ │ │ │ │ ├── GL_EXT_index_func │ │ │ │ │ │ ├── GL_EXT_index_material │ │ │ │ │ │ ├── GL_EXT_index_texture │ │ │ │ │ │ ├── GL_EXT_light_texture │ │ │ │ │ │ ├── GL_EXT_misc_attribute │ │ │ │ │ │ ├── GL_EXT_multi_draw_arrays │ │ │ │ │ │ ├── GL_EXT_multisample │ │ │ │ │ │ ├── GL_EXT_packed_depth_stencil │ │ │ │ │ │ ├── GL_EXT_packed_float │ │ │ │ │ │ ├── GL_EXT_packed_pixels │ │ │ │ │ │ ├── GL_EXT_paletted_texture │ │ │ │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ │ │ │ ├── GL_EXT_pixel_transform │ │ │ │ │ │ ├── GL_EXT_pixel_transform_color_table │ │ │ │ │ │ ├── GL_EXT_point_parameters │ │ │ │ │ │ ├── GL_EXT_polygon_offset │ │ │ │ │ │ ├── GL_EXT_provoking_vertex │ │ │ │ │ │ ├── GL_EXT_rescale_normal │ │ │ │ │ │ ├── GL_EXT_scene_marker │ │ │ │ │ │ ├── GL_EXT_secondary_color │ │ │ │ │ │ ├── GL_EXT_separate_shader_objects │ │ │ │ │ │ ├── GL_EXT_separate_specular_color │ │ │ │ │ │ ├── GL_EXT_shader_image_load_store │ │ │ │ │ │ ├── GL_EXT_shadow_funcs │ │ │ │ │ │ ├── GL_EXT_shared_texture_palette │ │ │ │ │ │ ├── GL_EXT_stencil_clear_tag │ │ │ │ │ │ ├── GL_EXT_stencil_two_side │ │ │ │ │ │ ├── GL_EXT_stencil_wrap │ │ │ │ │ │ ├── GL_EXT_subtexture │ │ │ │ │ │ ├── GL_EXT_texture │ │ │ │ │ │ ├── GL_EXT_texture3D │ │ │ │ │ │ ├── GL_EXT_texture_array │ │ │ │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ │ │ │ ├── GL_EXT_texture_compression_dxt1 │ │ │ │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ │ │ │ ├── GL_EXT_texture_compression_s3tc │ │ │ │ │ │ ├── GL_EXT_texture_cube_map │ │ │ │ │ │ ├── GL_EXT_texture_edge_clamp │ │ │ │ │ │ ├── GL_EXT_texture_env │ │ │ │ │ │ ├── GL_EXT_texture_env_add │ │ │ │ │ │ ├── GL_EXT_texture_env_combine │ │ │ │ │ │ ├── GL_EXT_texture_env_dot3 │ │ │ │ │ │ ├── GL_EXT_texture_filter_anisotropic │ │ │ │ │ │ ├── GL_EXT_texture_integer │ │ │ │ │ │ ├── GL_EXT_texture_lod_bias │ │ │ │ │ │ ├── GL_EXT_texture_mirror_clamp │ │ │ │ │ │ ├── GL_EXT_texture_object │ │ │ │ │ │ ├── GL_EXT_texture_perturb_normal │ │ │ │ │ │ ├── GL_EXT_texture_rectangle │ │ │ │ │ │ ├── GL_EXT_texture_sRGB │ │ │ │ │ │ ├── GL_EXT_texture_sRGB_decode │ │ │ │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ │ │ │ ├── GL_EXT_texture_snorm │ │ │ │ │ │ ├── GL_EXT_texture_swizzle │ │ │ │ │ │ ├── GL_EXT_timer_query │ │ │ │ │ │ ├── GL_EXT_transform_feedback │ │ │ │ │ │ ├── GL_EXT_vertex_array │ │ │ │ │ │ ├── GL_EXT_vertex_array_bgra │ │ │ │ │ │ ├── GL_EXT_vertex_attrib_64bit │ │ │ │ │ │ ├── GL_EXT_vertex_shader │ │ │ │ │ │ ├── GL_EXT_vertex_weighting │ │ │ │ │ │ ├── GL_EXT_x11_sync_object │ │ │ │ │ │ ├── GL_GREMEDY_frame_terminator │ │ │ │ │ │ ├── GL_GREMEDY_string_marker │ │ │ │ │ │ ├── GL_HP_convolution_border_modes │ │ │ │ │ │ ├── GL_HP_image_transform │ │ │ │ │ │ ├── GL_HP_occlusion_test │ │ │ │ │ │ ├── GL_HP_texture_lighting │ │ │ │ │ │ ├── GL_IBM_cull_vertex │ │ │ │ │ │ ├── GL_IBM_multimode_draw_arrays │ │ │ │ │ │ ├── GL_IBM_rasterpos_clip │ │ │ │ │ │ ├── GL_IBM_static_data │ │ │ │ │ │ ├── GL_IBM_texture_mirrored_repeat │ │ │ │ │ │ ├── GL_IBM_vertex_array_lists │ │ │ │ │ │ ├── GL_INGR_color_clamp │ │ │ │ │ │ ├── GL_INGR_interlace_read │ │ │ │ │ │ ├── GL_INTEL_parallel_arrays │ │ │ │ │ │ ├── GL_INTEL_texture_scissor │ │ │ │ │ │ ├── GL_KHR_debug │ │ │ │ │ │ ├── GL_KHR_texture_compression_astc_ldr │ │ │ │ │ │ ├── GL_KTX_buffer_region │ │ │ │ │ │ ├── GL_MESAX_texture_stack │ │ │ │ │ │ ├── GL_MESA_pack_invert │ │ │ │ │ │ ├── GL_MESA_resize_buffers │ │ │ │ │ │ ├── GL_MESA_window_pos │ │ │ │ │ │ ├── GL_MESA_ycbcr_texture │ │ │ │ │ │ ├── GL_NVX_gpu_memory_info │ │ │ │ │ │ ├── GL_NV_bindless_texture │ │ │ │ │ │ ├── GL_NV_blend_square │ │ │ │ │ │ ├── GL_NV_conditional_render │ │ │ │ │ │ ├── GL_NV_copy_depth_to_color │ │ │ │ │ │ ├── GL_NV_copy_image │ │ │ │ │ │ ├── GL_NV_depth_buffer_float │ │ │ │ │ │ ├── GL_NV_depth_clamp │ │ │ │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ │ │ │ ├── GL_NV_evaluators │ │ │ │ │ │ ├── GL_NV_explicit_multisample │ │ │ │ │ │ ├── GL_NV_fence │ │ │ │ │ │ ├── GL_NV_float_buffer │ │ │ │ │ │ ├── GL_NV_fog_distance │ │ │ │ │ │ ├── GL_NV_fragment_program │ │ │ │ │ │ ├── GL_NV_fragment_program2 │ │ │ │ │ │ ├── GL_NV_fragment_program4 │ │ │ │ │ │ ├── GL_NV_fragment_program_option │ │ │ │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ │ │ │ ├── GL_NV_geometry_program4 │ │ │ │ │ │ ├── GL_NV_geometry_shader4 │ │ │ │ │ │ ├── GL_NV_gpu_program4 │ │ │ │ │ │ ├── GL_NV_gpu_program5 │ │ │ │ │ │ ├── GL_NV_gpu_program_fp64 │ │ │ │ │ │ ├── GL_NV_gpu_shader5 │ │ │ │ │ │ ├── GL_NV_half_float │ │ │ │ │ │ ├── GL_NV_light_max_exponent │ │ │ │ │ │ ├── GL_NV_multisample_coverage │ │ │ │ │ │ ├── GL_NV_multisample_filter_hint │ │ │ │ │ │ ├── GL_NV_occlusion_query │ │ │ │ │ │ ├── GL_NV_packed_depth_stencil │ │ │ │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ │ │ │ ├── GL_NV_parameter_buffer_object2 │ │ │ │ │ │ ├── GL_NV_path_rendering │ │ │ │ │ │ ├── GL_NV_pixel_data_range │ │ │ │ │ │ ├── GL_NV_point_sprite │ │ │ │ │ │ ├── GL_NV_present_video │ │ │ │ │ │ ├── GL_NV_primitive_restart │ │ │ │ │ │ ├── GL_NV_register_combiners │ │ │ │ │ │ ├── GL_NV_register_combiners2 │ │ │ │ │ │ ├── GL_NV_shader_atomic_float │ │ │ │ │ │ ├── GL_NV_shader_buffer_load │ │ │ │ │ │ ├── GL_NV_tessellation_program5 │ │ │ │ │ │ ├── GL_NV_texgen_emboss │ │ │ │ │ │ ├── GL_NV_texgen_reflection │ │ │ │ │ │ ├── GL_NV_texture_barrier │ │ │ │ │ │ ├── GL_NV_texture_compression_vtc │ │ │ │ │ │ ├── GL_NV_texture_env_combine4 │ │ │ │ │ │ ├── GL_NV_texture_expand_normal │ │ │ │ │ │ ├── GL_NV_texture_multisample │ │ │ │ │ │ ├── GL_NV_texture_rectangle │ │ │ │ │ │ ├── GL_NV_texture_shader │ │ │ │ │ │ ├── GL_NV_texture_shader2 │ │ │ │ │ │ ├── GL_NV_texture_shader3 │ │ │ │ │ │ ├── GL_NV_transform_feedback │ │ │ │ │ │ ├── GL_NV_transform_feedback2 │ │ │ │ │ │ ├── GL_NV_vdpau_interop │ │ │ │ │ │ ├── GL_NV_vertex_array_range │ │ │ │ │ │ ├── GL_NV_vertex_array_range2 │ │ │ │ │ │ ├── GL_NV_vertex_attrib_integer_64bit │ │ │ │ │ │ ├── GL_NV_vertex_buffer_unified_memory │ │ │ │ │ │ ├── GL_NV_vertex_program │ │ │ │ │ │ ├── GL_NV_vertex_program1_1 │ │ │ │ │ │ ├── GL_NV_vertex_program2 │ │ │ │ │ │ ├── GL_NV_vertex_program2_option │ │ │ │ │ │ ├── GL_NV_vertex_program3 │ │ │ │ │ │ ├── GL_NV_vertex_program4 │ │ │ │ │ │ ├── GL_NV_video_capture │ │ │ │ │ │ ├── GL_OES_byte_coordinates │ │ │ │ │ │ ├── GL_OES_compressed_paletted_texture │ │ │ │ │ │ ├── GL_OES_read_format │ │ │ │ │ │ ├── GL_OES_single_precision │ │ │ │ │ │ ├── GL_OML_interlace │ │ │ │ │ │ ├── GL_OML_resample │ │ │ │ │ │ ├── GL_OML_subsample │ │ │ │ │ │ ├── GL_PGI_misc_hints │ │ │ │ │ │ ├── GL_PGI_vertex_hints │ │ │ │ │ │ ├── GL_REGAL_error_string │ │ │ │ │ │ ├── GL_REGAL_extension_query │ │ │ │ │ │ ├── GL_REGAL_log │ │ │ │ │ │ ├── GL_REND_screen_coordinates │ │ │ │ │ │ ├── GL_S3_s3tc │ │ │ │ │ │ ├── GL_SGIS_color_range │ │ │ │ │ │ ├── GL_SGIS_detail_texture │ │ │ │ │ │ ├── GL_SGIS_fog_function │ │ │ │ │ │ ├── GL_SGIS_generate_mipmap │ │ │ │ │ │ ├── GL_SGIS_multisample │ │ │ │ │ │ ├── GL_SGIS_pixel_texture │ │ │ │ │ │ ├── GL_SGIS_point_line_texgen │ │ │ │ │ │ ├── GL_SGIS_sharpen_texture │ │ │ │ │ │ ├── GL_SGIS_texture4D │ │ │ │ │ │ ├── GL_SGIS_texture_border_clamp │ │ │ │ │ │ ├── GL_SGIS_texture_edge_clamp │ │ │ │ │ │ ├── GL_SGIS_texture_filter4 │ │ │ │ │ │ ├── GL_SGIS_texture_lod │ │ │ │ │ │ ├── GL_SGIS_texture_select │ │ │ │ │ │ ├── GL_SGIX_async │ │ │ │ │ │ ├── GL_SGIX_async_histogram │ │ │ │ │ │ ├── GL_SGIX_async_pixel │ │ │ │ │ │ ├── GL_SGIX_blend_alpha_minmax │ │ │ │ │ │ ├── GL_SGIX_clipmap │ │ │ │ │ │ ├── GL_SGIX_convolution_accuracy │ │ │ │ │ │ ├── GL_SGIX_depth_texture │ │ │ │ │ │ ├── GL_SGIX_flush_raster │ │ │ │ │ │ ├── GL_SGIX_fog_offset │ │ │ │ │ │ ├── GL_SGIX_fog_texture │ │ │ │ │ │ ├── GL_SGIX_fragment_specular_lighting │ │ │ │ │ │ ├── GL_SGIX_framezoom │ │ │ │ │ │ ├── GL_SGIX_interlace │ │ │ │ │ │ ├── GL_SGIX_ir_instrument1 │ │ │ │ │ │ ├── GL_SGIX_list_priority │ │ │ │ │ │ ├── GL_SGIX_pixel_texture │ │ │ │ │ │ ├── GL_SGIX_pixel_texture_bits │ │ │ │ │ │ ├── GL_SGIX_reference_plane │ │ │ │ │ │ ├── GL_SGIX_resample │ │ │ │ │ │ ├── GL_SGIX_shadow │ │ │ │ │ │ ├── GL_SGIX_shadow_ambient │ │ │ │ │ │ ├── GL_SGIX_sprite │ │ │ │ │ │ ├── GL_SGIX_tag_sample_buffer │ │ │ │ │ │ ├── GL_SGIX_texture_add_env │ │ │ │ │ │ ├── GL_SGIX_texture_coordinate_clamp │ │ │ │ │ │ ├── GL_SGIX_texture_lod_bias │ │ │ │ │ │ ├── GL_SGIX_texture_multi_buffer │ │ │ │ │ │ ├── GL_SGIX_texture_range │ │ │ │ │ │ ├── GL_SGIX_texture_scale_bias │ │ │ │ │ │ ├── GL_SGIX_vertex_preclip │ │ │ │ │ │ ├── GL_SGIX_vertex_preclip_hint │ │ │ │ │ │ ├── GL_SGIX_ycrcb │ │ │ │ │ │ ├── GL_SGI_color_matrix │ │ │ │ │ │ ├── GL_SGI_color_table │ │ │ │ │ │ ├── GL_SGI_texture_color_table │ │ │ │ │ │ ├── GL_SUNX_constant_data │ │ │ │ │ │ ├── GL_SUN_convolution_border_modes │ │ │ │ │ │ ├── GL_SUN_global_alpha │ │ │ │ │ │ ├── GL_SUN_mesh_array │ │ │ │ │ │ ├── GL_SUN_read_video_pixels │ │ │ │ │ │ ├── GL_SUN_slice_accum │ │ │ │ │ │ ├── GL_SUN_triangle_list │ │ │ │ │ │ ├── GL_SUN_vertex │ │ │ │ │ │ ├── GL_WIN_phong_shading │ │ │ │ │ │ ├── GL_WIN_specular_fog │ │ │ │ │ │ ├── GL_WIN_swap_hint │ │ │ │ │ │ ├── WGL_3DFX_multisample │ │ │ │ │ │ ├── WGL_3DL_stereo_control │ │ │ │ │ │ ├── WGL_AMD_gpu_association │ │ │ │ │ │ ├── WGL_ARB_buffer_region │ │ │ │ │ │ ├── WGL_ARB_create_context │ │ │ │ │ │ ├── WGL_ARB_create_context_profile │ │ │ │ │ │ ├── WGL_ARB_create_context_robustness │ │ │ │ │ │ ├── WGL_ARB_extensions_string │ │ │ │ │ │ ├── WGL_ARB_framebuffer_sRGB │ │ │ │ │ │ ├── WGL_ARB_make_current_read │ │ │ │ │ │ ├── WGL_ARB_multisample │ │ │ │ │ │ ├── WGL_ARB_pbuffer │ │ │ │ │ │ ├── WGL_ARB_pixel_format │ │ │ │ │ │ ├── WGL_ARB_pixel_format_float │ │ │ │ │ │ ├── WGL_ARB_render_texture │ │ │ │ │ │ ├── WGL_ATI_pixel_format_float │ │ │ │ │ │ ├── WGL_ATI_render_texture_rectangle │ │ │ │ │ │ ├── WGL_EXT_create_context_es2_profile │ │ │ │ │ │ ├── WGL_EXT_create_context_es_profile │ │ │ │ │ │ ├── WGL_EXT_depth_float │ │ │ │ │ │ ├── WGL_EXT_display_color_table │ │ │ │ │ │ ├── WGL_EXT_extensions_string │ │ │ │ │ │ ├── WGL_EXT_framebuffer_sRGB │ │ │ │ │ │ ├── WGL_EXT_make_current_read │ │ │ │ │ │ ├── WGL_EXT_multisample │ │ │ │ │ │ ├── WGL_EXT_pbuffer │ │ │ │ │ │ ├── WGL_EXT_pixel_format │ │ │ │ │ │ ├── WGL_EXT_pixel_format_packed_float │ │ │ │ │ │ ├── WGL_EXT_swap_control │ │ │ │ │ │ ├── WGL_EXT_swap_control_tear │ │ │ │ │ │ ├── WGL_I3D_digital_video_control │ │ │ │ │ │ ├── WGL_I3D_gamma │ │ │ │ │ │ ├── WGL_I3D_genlock │ │ │ │ │ │ ├── WGL_I3D_image_buffer │ │ │ │ │ │ ├── WGL_I3D_swap_frame_lock │ │ │ │ │ │ ├── WGL_I3D_swap_frame_usage │ │ │ │ │ │ ├── WGL_NV_DX_interop │ │ │ │ │ │ ├── WGL_NV_DX_interop2 │ │ │ │ │ │ ├── WGL_NV_copy_image │ │ │ │ │ │ ├── WGL_NV_float_buffer │ │ │ │ │ │ ├── WGL_NV_gpu_affinity │ │ │ │ │ │ ├── WGL_NV_multisample_coverage │ │ │ │ │ │ ├── WGL_NV_present_video │ │ │ │ │ │ ├── WGL_NV_render_depth_texture │ │ │ │ │ │ ├── WGL_NV_render_texture_rectangle │ │ │ │ │ │ ├── WGL_NV_swap_group │ │ │ │ │ │ ├── WGL_NV_vertex_array_range │ │ │ │ │ │ ├── WGL_NV_video_capture │ │ │ │ │ │ ├── WGL_NV_video_output │ │ │ │ │ │ └── WGL_OML_sync_control │ │ │ │ │ ├── lib │ │ │ │ │ │ └── OpenGL │ │ │ │ │ │ │ └── Spec.pm │ │ │ │ │ └── src │ │ │ │ │ │ ├── footer.html │ │ │ │ │ │ ├── glew.rc │ │ │ │ │ │ ├── glew_head.c │ │ │ │ │ │ ├── glew_head.h │ │ │ │ │ │ ├── glew_init_gl.c │ │ │ │ │ │ ├── glew_init_glx.c │ │ │ │ │ │ ├── glew_init_tail.c │ │ │ │ │ │ ├── glew_init_wgl.c │ │ │ │ │ │ ├── glew_license.h │ │ │ │ │ │ ├── glew_str_glx.c │ │ │ │ │ │ ├── glew_str_head.c │ │ │ │ │ │ ├── glew_str_tail.c │ │ │ │ │ │ ├── glew_str_wgl.c │ │ │ │ │ │ ├── glew_tail.h │ │ │ │ │ │ ├── glew_utils.c │ │ │ │ │ │ ├── glew_utils.h │ │ │ │ │ │ ├── glewinfo.rc │ │ │ │ │ │ ├── glewinfo_gl.c │ │ │ │ │ │ ├── glewinfo_glx.c │ │ │ │ │ │ ├── glewinfo_head.c │ │ │ │ │ │ ├── glewinfo_tail.c │ │ │ │ │ │ ├── glewinfo_wgl.c │ │ │ │ │ │ ├── glxew_head.h │ │ │ │ │ │ ├── glxew_mid.h │ │ │ │ │ │ ├── glxew_tail.h │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── khronos_license.h │ │ │ │ │ │ ├── mesa_license.h │ │ │ │ │ │ ├── visualinfo.rc │ │ │ │ │ │ ├── wglew_head.h │ │ │ │ │ │ ├── wglew_mid.h │ │ │ │ │ │ └── wglew_tail.h │ │ │ │ ├── build │ │ │ │ │ ├── glew.rc │ │ │ │ │ ├── glewinfo.rc │ │ │ │ │ ├── vc10 │ │ │ │ │ │ ├── glew.sln │ │ │ │ │ │ ├── glew_shared.vcxproj │ │ │ │ │ │ ├── glew_static.vcxproj │ │ │ │ │ │ ├── glewinfo.vcxproj │ │ │ │ │ │ └── visualinfo.vcxproj │ │ │ │ │ ├── vc6 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── glew.dsw │ │ │ │ │ │ ├── glew_shared.dsp │ │ │ │ │ │ ├── glew_static.dsp │ │ │ │ │ │ ├── glewinfo.dsp │ │ │ │ │ │ └── visualinfo.dsp │ │ │ │ │ └── visualinfo.rc │ │ │ │ ├── config │ │ │ │ │ ├── Makefile.cygming │ │ │ │ │ ├── Makefile.cygwin │ │ │ │ │ ├── Makefile.darwin │ │ │ │ │ ├── Makefile.darwin-ppc │ │ │ │ │ ├── Makefile.darwin-x86_64 │ │ │ │ │ ├── Makefile.fedora-mingw32 │ │ │ │ │ ├── Makefile.freebsd │ │ │ │ │ ├── Makefile.gnu │ │ │ │ │ ├── Makefile.irix │ │ │ │ │ ├── Makefile.kfreebsd │ │ │ │ │ ├── Makefile.linux │ │ │ │ │ ├── Makefile.linux-mingw32 │ │ │ │ │ ├── Makefile.linux-mingw64 │ │ │ │ │ ├── Makefile.mingw │ │ │ │ │ ├── Makefile.netbsd │ │ │ │ │ ├── Makefile.solaris │ │ │ │ │ ├── Makefile.solaris-gcc │ │ │ │ │ ├── config.guess │ │ │ │ │ └── version │ │ │ │ ├── doc │ │ │ │ │ ├── advanced.html │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── build.html │ │ │ │ │ ├── credits.html │ │ │ │ │ ├── glew.css │ │ │ │ │ ├── glew.html │ │ │ │ │ ├── glew.png │ │ │ │ │ ├── glew.txt │ │ │ │ │ ├── glxew.html │ │ │ │ │ ├── gpl.txt │ │ │ │ │ ├── index.html │ │ │ │ │ ├── install.html │ │ │ │ │ ├── khronos.txt │ │ │ │ │ ├── log.html │ │ │ │ │ ├── mesa.txt │ │ │ │ │ ├── new.png │ │ │ │ │ ├── ogl_sm.jpg │ │ │ │ │ └── wglew.html │ │ │ │ ├── glew.pc.in │ │ │ │ ├── include │ │ │ │ │ └── GL │ │ │ │ │ │ ├── glew.h │ │ │ │ │ │ ├── glxew.h │ │ │ │ │ │ └── wglew.h │ │ │ │ └── src │ │ │ │ │ ├── glew.c │ │ │ │ │ ├── glewinfo.c │ │ │ │ │ └── visualinfo.c │ │ │ └── glfw-3.0.3 │ │ │ │ ├── .gitignore │ │ │ │ ├── CMake │ │ │ │ ├── amd64-mingw32msvc.cmake │ │ │ │ ├── i586-mingw32msvc.cmake │ │ │ │ ├── i686-pc-mingw32.cmake │ │ │ │ ├── i686-w64-mingw32.cmake │ │ │ │ ├── modules │ │ │ │ │ ├── FindEGL.cmake │ │ │ │ │ ├── FindGLESv1.cmake │ │ │ │ │ └── FindGLESv2.cmake │ │ │ │ └── x86_64-w64-mingw32.cmake │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING.txt │ │ │ │ ├── README.md │ │ │ │ ├── cmake_uninstall.cmake.in │ │ │ │ ├── deps │ │ │ │ ├── EGL │ │ │ │ │ └── eglext.h │ │ │ │ ├── GL │ │ │ │ │ ├── glext.h │ │ │ │ │ ├── glxext.h │ │ │ │ │ └── wglext.h │ │ │ │ ├── getopt.c │ │ │ │ ├── getopt.h │ │ │ │ ├── tinycthread.c │ │ │ │ └── tinycthread.h │ │ │ │ ├── examples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boing.c │ │ │ │ ├── gears.c │ │ │ │ ├── heightmap.c │ │ │ │ ├── simple.c │ │ │ │ ├── splitview.c │ │ │ │ └── wave.c │ │ │ │ ├── include │ │ │ │ └── GLFW │ │ │ │ │ ├── glfw3.h │ │ │ │ │ └── glfw3native.h │ │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── clipboard.c │ │ │ │ ├── cocoa_clipboard.m │ │ │ │ ├── cocoa_gamma.c │ │ │ │ ├── cocoa_init.m │ │ │ │ ├── cocoa_joystick.m │ │ │ │ ├── cocoa_monitor.m │ │ │ │ ├── cocoa_platform.h │ │ │ │ ├── cocoa_time.c │ │ │ │ ├── cocoa_window.m │ │ │ │ ├── config.h.in │ │ │ │ ├── context.c │ │ │ │ ├── egl_context.c │ │ │ │ ├── egl_platform.h │ │ │ │ ├── gamma.c │ │ │ │ ├── glfw3.pc.in │ │ │ │ ├── glfwConfig.cmake.in │ │ │ │ ├── glfwConfigVersion.cmake.in │ │ │ │ ├── glx_context.c │ │ │ │ ├── glx_platform.h │ │ │ │ ├── init.c │ │ │ │ ├── input.c │ │ │ │ ├── internal.h │ │ │ │ ├── joystick.c │ │ │ │ ├── monitor.c │ │ │ │ ├── nsgl_context.m │ │ │ │ ├── nsgl_platform.h │ │ │ │ ├── time.c │ │ │ │ ├── wgl_context.c │ │ │ │ ├── wgl_platform.h │ │ │ │ ├── win32_clipboard.c │ │ │ │ ├── win32_gamma.c │ │ │ │ ├── win32_init.c │ │ │ │ ├── win32_joystick.c │ │ │ │ ├── win32_monitor.c │ │ │ │ ├── win32_platform.h │ │ │ │ ├── win32_time.c │ │ │ │ ├── win32_window.c │ │ │ │ ├── window.c │ │ │ │ ├── x11_clipboard.c │ │ │ │ ├── x11_gamma.c │ │ │ │ ├── x11_init.c │ │ │ │ ├── x11_joystick.c │ │ │ │ ├── x11_monitor.c │ │ │ │ ├── x11_platform.h │ │ │ │ ├── x11_time.c │ │ │ │ ├── x11_unicode.c │ │ │ │ └── x11_window.c │ │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── accuracy.c │ │ │ │ ├── clipboard.c │ │ │ │ ├── defaults.c │ │ │ │ ├── events.c │ │ │ │ ├── fsaa.c │ │ │ │ ├── gamma.c │ │ │ │ ├── glfwinfo.c │ │ │ │ ├── iconify.c │ │ │ │ ├── joysticks.c │ │ │ │ ├── modes.c │ │ │ │ ├── peter.c │ │ │ │ ├── reopen.c │ │ │ │ ├── sharing.c │ │ │ │ ├── tearing.c │ │ │ │ ├── threads.c │ │ │ │ ├── title.c │ │ │ │ └── windows.c │ │ ├── freetype-2.5.5 │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── include │ │ │ │ ├── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ ├── ftheader.h │ │ │ │ │ ├── ftmodule.h │ │ │ │ │ ├── ftoption.h │ │ │ │ │ └── ftstdlib.h │ │ │ │ ├── freetype.h │ │ │ │ ├── ft2build.h │ │ │ │ ├── ftadvanc.h │ │ │ │ ├── ftautoh.h │ │ │ │ ├── ftbbox.h │ │ │ │ ├── ftbdf.h │ │ │ │ ├── ftbitmap.h │ │ │ │ ├── ftbzip2.h │ │ │ │ ├── ftcache.h │ │ │ │ ├── ftcffdrv.h │ │ │ │ ├── ftchapters.h │ │ │ │ ├── ftcid.h │ │ │ │ ├── fterrdef.h │ │ │ │ ├── fterrors.h │ │ │ │ ├── ftgasp.h │ │ │ │ ├── ftglyph.h │ │ │ │ ├── ftgxval.h │ │ │ │ ├── ftgzip.h │ │ │ │ ├── ftimage.h │ │ │ │ ├── ftincrem.h │ │ │ │ ├── ftlcdfil.h │ │ │ │ ├── ftlist.h │ │ │ │ ├── ftlzw.h │ │ │ │ ├── ftmac.h │ │ │ │ ├── ftmm.h │ │ │ │ ├── ftmodapi.h │ │ │ │ ├── ftmoderr.h │ │ │ │ ├── ftotval.h │ │ │ │ ├── ftoutln.h │ │ │ │ ├── ftpfr.h │ │ │ │ ├── ftrender.h │ │ │ │ ├── ftsizes.h │ │ │ │ ├── ftsnames.h │ │ │ │ ├── ftstroke.h │ │ │ │ ├── ftsynth.h │ │ │ │ ├── ftsystem.h │ │ │ │ ├── fttrigon.h │ │ │ │ ├── ftttdrv.h │ │ │ │ ├── fttypes.h │ │ │ │ ├── ftwinfnt.h │ │ │ │ ├── ftxf86.h │ │ │ │ ├── internal │ │ │ │ │ ├── autohint.h │ │ │ │ │ ├── ftcalc.h │ │ │ │ │ ├── ftdebug.h │ │ │ │ │ ├── ftdriver.h │ │ │ │ │ ├── ftgloadr.h │ │ │ │ │ ├── ftmemory.h │ │ │ │ │ ├── ftobjs.h │ │ │ │ │ ├── ftpic.h │ │ │ │ │ ├── ftrfork.h │ │ │ │ │ ├── ftserv.h │ │ │ │ │ ├── ftstream.h │ │ │ │ │ ├── fttrace.h │ │ │ │ │ ├── ftvalid.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── psaux.h │ │ │ │ │ ├── pshints.h │ │ │ │ │ ├── services │ │ │ │ │ │ ├── svbdf.h │ │ │ │ │ │ ├── svcid.h │ │ │ │ │ │ ├── svgldict.h │ │ │ │ │ │ ├── svgxval.h │ │ │ │ │ │ ├── svkern.h │ │ │ │ │ │ ├── svmm.h │ │ │ │ │ │ ├── svotval.h │ │ │ │ │ │ ├── svpfr.h │ │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ │ ├── svprop.h │ │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ │ ├── svtteng.h │ │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ │ └── svxf86nm.h │ │ │ │ │ ├── sfnt.h │ │ │ │ │ ├── t1types.h │ │ │ │ │ └── tttypes.h │ │ │ │ ├── t1tables.h │ │ │ │ ├── ttnameid.h │ │ │ │ ├── tttables.h │ │ │ │ ├── tttags.h │ │ │ │ └── ttunpat.h │ │ │ └── src │ │ │ │ ├── Jamfile │ │ │ │ ├── autofit │ │ │ │ ├── Jamfile │ │ │ │ ├── afangles.c │ │ │ │ ├── afangles.h │ │ │ │ ├── afblue.c │ │ │ │ ├── afblue.cin │ │ │ │ ├── afblue.dat │ │ │ │ ├── afblue.h │ │ │ │ ├── afblue.hin │ │ │ │ ├── afcjk.c │ │ │ │ ├── afcjk.h │ │ │ │ ├── afcover.h │ │ │ │ ├── afdummy.c │ │ │ │ ├── afdummy.h │ │ │ │ ├── aferrors.h │ │ │ │ ├── afglobal.c │ │ │ │ ├── afglobal.h │ │ │ │ ├── afhints.c │ │ │ │ ├── afhints.h │ │ │ │ ├── afindic.c │ │ │ │ ├── afindic.h │ │ │ │ ├── aflatin.c │ │ │ │ ├── aflatin.h │ │ │ │ ├── aflatin2.c │ │ │ │ ├── aflatin2.h │ │ │ │ ├── afloader.c │ │ │ │ ├── afloader.h │ │ │ │ ├── afmodule.c │ │ │ │ ├── afmodule.h │ │ │ │ ├── afpic.c │ │ │ │ ├── afpic.h │ │ │ │ ├── afranges.c │ │ │ │ ├── afranges.h │ │ │ │ ├── afscript.h │ │ │ │ ├── afstyles.h │ │ │ │ ├── aftypes.h │ │ │ │ ├── afwarp.c │ │ │ │ ├── afwarp.h │ │ │ │ ├── afwrtsys.h │ │ │ │ ├── autofit.c │ │ │ │ ├── hbshim.c │ │ │ │ ├── hbshim.h │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ │ ├── base │ │ │ │ ├── Jamfile │ │ │ │ ├── basepic.c │ │ │ │ ├── basepic.h │ │ │ │ ├── ftadvanc.c │ │ │ │ ├── ftapi.c │ │ │ │ ├── ftbase.c │ │ │ │ ├── ftbase.h │ │ │ │ ├── ftbbox.c │ │ │ │ ├── ftbdf.c │ │ │ │ ├── ftbitmap.c │ │ │ │ ├── ftcalc.c │ │ │ │ ├── ftcid.c │ │ │ │ ├── ftdbgmem.c │ │ │ │ ├── ftdebug.c │ │ │ │ ├── ftfstype.c │ │ │ │ ├── ftgasp.c │ │ │ │ ├── ftgloadr.c │ │ │ │ ├── ftglyph.c │ │ │ │ ├── ftgxval.c │ │ │ │ ├── ftinit.c │ │ │ │ ├── ftlcdfil.c │ │ │ │ ├── ftmac.c │ │ │ │ ├── ftmm.c │ │ │ │ ├── ftobjs.c │ │ │ │ ├── ftotval.c │ │ │ │ ├── ftoutln.c │ │ │ │ ├── ftpatent.c │ │ │ │ ├── ftpfr.c │ │ │ │ ├── ftpic.c │ │ │ │ ├── ftrfork.c │ │ │ │ ├── ftsnames.c │ │ │ │ ├── ftstream.c │ │ │ │ ├── ftstroke.c │ │ │ │ ├── ftsynth.c │ │ │ │ ├── ftsystem.c │ │ │ │ ├── fttrigon.c │ │ │ │ ├── fttype1.c │ │ │ │ ├── ftutil.c │ │ │ │ ├── ftwinfnt.c │ │ │ │ ├── ftxf86.c │ │ │ │ ├── md5.c │ │ │ │ ├── md5.h │ │ │ │ └── rules.mk │ │ │ │ ├── bdf │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── bdf.c │ │ │ │ ├── bdf.h │ │ │ │ ├── bdfdrivr.c │ │ │ │ ├── bdfdrivr.h │ │ │ │ ├── bdferror.h │ │ │ │ ├── bdflib.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ │ ├── bzip2 │ │ │ │ ├── Jamfile │ │ │ │ ├── ftbzip2.c │ │ │ │ └── rules.mk │ │ │ │ ├── cache │ │ │ │ ├── Jamfile │ │ │ │ ├── ftcache.c │ │ │ │ ├── ftcbasic.c │ │ │ │ ├── ftccache.c │ │ │ │ ├── ftccache.h │ │ │ │ ├── ftccback.h │ │ │ │ ├── ftccmap.c │ │ │ │ ├── ftcerror.h │ │ │ │ ├── ftcglyph.c │ │ │ │ ├── ftcglyph.h │ │ │ │ ├── ftcimage.c │ │ │ │ ├── ftcimage.h │ │ │ │ ├── ftcmanag.c │ │ │ │ ├── ftcmanag.h │ │ │ │ ├── ftcmru.c │ │ │ │ ├── ftcmru.h │ │ │ │ ├── ftcsbits.c │ │ │ │ ├── ftcsbits.h │ │ │ │ └── rules.mk │ │ │ │ ├── cff │ │ │ │ ├── Jamfile │ │ │ │ ├── cf2arrst.c │ │ │ │ ├── cf2arrst.h │ │ │ │ ├── cf2blues.c │ │ │ │ ├── cf2blues.h │ │ │ │ ├── cf2error.c │ │ │ │ ├── cf2error.h │ │ │ │ ├── cf2fixed.h │ │ │ │ ├── cf2font.c │ │ │ │ ├── cf2font.h │ │ │ │ ├── cf2ft.c │ │ │ │ ├── cf2ft.h │ │ │ │ ├── cf2glue.h │ │ │ │ ├── cf2hints.c │ │ │ │ ├── cf2hints.h │ │ │ │ ├── cf2intrp.c │ │ │ │ ├── cf2intrp.h │ │ │ │ ├── cf2read.c │ │ │ │ ├── cf2read.h │ │ │ │ ├── cf2stack.c │ │ │ │ ├── cf2stack.h │ │ │ │ ├── cf2types.h │ │ │ │ ├── cff.c │ │ │ │ ├── cffcmap.c │ │ │ │ ├── cffcmap.h │ │ │ │ ├── cffdrivr.c │ │ │ │ ├── cffdrivr.h │ │ │ │ ├── cfferrs.h │ │ │ │ ├── cffgload.c │ │ │ │ ├── cffgload.h │ │ │ │ ├── cffload.c │ │ │ │ ├── cffload.h │ │ │ │ ├── cffobjs.c │ │ │ │ ├── cffobjs.h │ │ │ │ ├── cffparse.c │ │ │ │ ├── cffparse.h │ │ │ │ ├── cffpic.c │ │ │ │ ├── cffpic.h │ │ │ │ ├── cfftoken.h │ │ │ │ ├── cfftypes.h │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ │ ├── cid │ │ │ │ ├── Jamfile │ │ │ │ ├── ciderrs.h │ │ │ │ ├── cidgload.c │ │ │ │ ├── cidgload.h │ │ │ │ ├── cidload.c │ │ │ │ ├── cidload.h │ │ │ │ ├── cidobjs.c │ │ │ │ ├── cidobjs.h │ │ │ │ ├── cidparse.c │ │ │ │ ├── cidparse.h │ │ │ │ ├── cidriver.c │ │ │ │ ├── cidriver.h │ │ │ │ ├── cidtoken.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── type1cid.c │ │ │ │ ├── gxvalid │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── gxvalid.c │ │ │ │ ├── gxvalid.h │ │ │ │ ├── gxvbsln.c │ │ │ │ ├── gxvcommn.c │ │ │ │ ├── gxvcommn.h │ │ │ │ ├── gxverror.h │ │ │ │ ├── gxvfeat.c │ │ │ │ ├── gxvfeat.h │ │ │ │ ├── gxvfgen.c │ │ │ │ ├── gxvjust.c │ │ │ │ ├── gxvkern.c │ │ │ │ ├── gxvlcar.c │ │ │ │ ├── gxvmod.c │ │ │ │ ├── gxvmod.h │ │ │ │ ├── gxvmort.c │ │ │ │ ├── gxvmort.h │ │ │ │ ├── gxvmort0.c │ │ │ │ ├── gxvmort1.c │ │ │ │ ├── gxvmort2.c │ │ │ │ ├── gxvmort4.c │ │ │ │ ├── gxvmort5.c │ │ │ │ ├── gxvmorx.c │ │ │ │ ├── gxvmorx.h │ │ │ │ ├── gxvmorx0.c │ │ │ │ ├── gxvmorx1.c │ │ │ │ ├── gxvmorx2.c │ │ │ │ ├── gxvmorx4.c │ │ │ │ ├── gxvmorx5.c │ │ │ │ ├── gxvopbd.c │ │ │ │ ├── gxvprop.c │ │ │ │ ├── gxvtrak.c │ │ │ │ ├── module.mk │ │ │ │ └── rules.mk │ │ │ │ ├── gzip │ │ │ │ ├── Jamfile │ │ │ │ ├── adler32.c │ │ │ │ ├── ftgzip.c │ │ │ │ ├── infblock.c │ │ │ │ ├── infblock.h │ │ │ │ ├── infcodes.c │ │ │ │ ├── infcodes.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── infutil.c │ │ │ │ ├── infutil.h │ │ │ │ ├── rules.mk │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ │ │ ├── lzw │ │ │ │ ├── Jamfile │ │ │ │ ├── ftlzw.c │ │ │ │ ├── ftzopen.c │ │ │ │ ├── ftzopen.h │ │ │ │ └── rules.mk │ │ │ │ ├── otvalid │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── otvalid.c │ │ │ │ ├── otvalid.h │ │ │ │ ├── otvbase.c │ │ │ │ ├── otvcommn.c │ │ │ │ ├── otvcommn.h │ │ │ │ ├── otverror.h │ │ │ │ ├── otvgdef.c │ │ │ │ ├── otvgpos.c │ │ │ │ ├── otvgpos.h │ │ │ │ ├── otvgsub.c │ │ │ │ ├── otvjstf.c │ │ │ │ ├── otvmath.c │ │ │ │ ├── otvmod.c │ │ │ │ ├── otvmod.h │ │ │ │ └── rules.mk │ │ │ │ ├── pcf │ │ │ │ ├── Jamfile │ │ │ │ ├── README │ │ │ │ ├── module.mk │ │ │ │ ├── pcf.c │ │ │ │ ├── pcf.h │ │ │ │ ├── pcfdrivr.c │ │ │ │ ├── pcfdrivr.h │ │ │ │ ├── pcferror.h │ │ │ │ ├── pcfread.c │ │ │ │ ├── pcfread.h │ │ │ │ ├── pcfutil.c │ │ │ │ ├── pcfutil.h │ │ │ │ └── rules.mk │ │ │ │ ├── pfr │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pfr.c │ │ │ │ ├── pfrcmap.c │ │ │ │ ├── pfrcmap.h │ │ │ │ ├── pfrdrivr.c │ │ │ │ ├── pfrdrivr.h │ │ │ │ ├── pfrerror.h │ │ │ │ ├── pfrgload.c │ │ │ │ ├── pfrgload.h │ │ │ │ ├── pfrload.c │ │ │ │ ├── pfrload.h │ │ │ │ ├── pfrobjs.c │ │ │ │ ├── pfrobjs.h │ │ │ │ ├── pfrsbit.c │ │ │ │ ├── pfrsbit.h │ │ │ │ ├── pfrtypes.h │ │ │ │ └── rules.mk │ │ │ │ ├── psaux │ │ │ │ ├── Jamfile │ │ │ │ ├── afmparse.c │ │ │ │ ├── afmparse.h │ │ │ │ ├── module.mk │ │ │ │ ├── psaux.c │ │ │ │ ├── psauxerr.h │ │ │ │ ├── psauxmod.c │ │ │ │ ├── psauxmod.h │ │ │ │ ├── psconv.c │ │ │ │ ├── psconv.h │ │ │ │ ├── psobjs.c │ │ │ │ ├── psobjs.h │ │ │ │ ├── rules.mk │ │ │ │ ├── t1cmap.c │ │ │ │ ├── t1cmap.h │ │ │ │ ├── t1decode.c │ │ │ │ └── t1decode.h │ │ │ │ ├── pshinter │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pshalgo.c │ │ │ │ ├── pshalgo.h │ │ │ │ ├── pshglob.c │ │ │ │ ├── pshglob.h │ │ │ │ ├── pshinter.c │ │ │ │ ├── pshmod.c │ │ │ │ ├── pshmod.h │ │ │ │ ├── pshnterr.h │ │ │ │ ├── pshpic.c │ │ │ │ ├── pshpic.h │ │ │ │ ├── pshrec.c │ │ │ │ ├── pshrec.h │ │ │ │ └── rules.mk │ │ │ │ ├── psnames │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── psmodule.c │ │ │ │ ├── psmodule.h │ │ │ │ ├── psnamerr.h │ │ │ │ ├── psnames.c │ │ │ │ ├── pspic.c │ │ │ │ ├── pspic.h │ │ │ │ ├── pstables.h │ │ │ │ └── rules.mk │ │ │ │ ├── raster │ │ │ │ ├── Jamfile │ │ │ │ ├── ftmisc.h │ │ │ │ ├── ftraster.c │ │ │ │ ├── ftraster.h │ │ │ │ ├── ftrend1.c │ │ │ │ ├── ftrend1.h │ │ │ │ ├── module.mk │ │ │ │ ├── raster.c │ │ │ │ ├── rasterrs.h │ │ │ │ ├── rastpic.c │ │ │ │ ├── rastpic.h │ │ │ │ └── rules.mk │ │ │ │ ├── sfnt │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── pngshim.c │ │ │ │ ├── pngshim.h │ │ │ │ ├── rules.mk │ │ │ │ ├── sfdriver.c │ │ │ │ ├── sfdriver.h │ │ │ │ ├── sferrors.h │ │ │ │ ├── sfnt.c │ │ │ │ ├── sfntpic.c │ │ │ │ ├── sfntpic.h │ │ │ │ ├── sfobjs.c │ │ │ │ ├── sfobjs.h │ │ │ │ ├── ttbdf.c │ │ │ │ ├── ttbdf.h │ │ │ │ ├── ttcmap.c │ │ │ │ ├── ttcmap.h │ │ │ │ ├── ttcmapc.h │ │ │ │ ├── ttkern.c │ │ │ │ ├── ttkern.h │ │ │ │ ├── ttload.c │ │ │ │ ├── ttload.h │ │ │ │ ├── ttmtx.c │ │ │ │ ├── ttmtx.h │ │ │ │ ├── ttpost.c │ │ │ │ ├── ttpost.h │ │ │ │ ├── ttsbit.c │ │ │ │ └── ttsbit.h │ │ │ │ ├── smooth │ │ │ │ ├── Jamfile │ │ │ │ ├── ftgrays.c │ │ │ │ ├── ftgrays.h │ │ │ │ ├── ftsmerrs.h │ │ │ │ ├── ftsmooth.c │ │ │ │ ├── ftsmooth.h │ │ │ │ ├── ftspic.c │ │ │ │ ├── ftspic.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ └── smooth.c │ │ │ │ ├── tools │ │ │ │ ├── Jamfile │ │ │ │ ├── afblue.pl │ │ │ │ ├── apinames.c │ │ │ │ ├── chktrcmp.py │ │ │ │ ├── cordic.py │ │ │ │ ├── docmaker │ │ │ │ │ ├── content.py │ │ │ │ │ ├── docbeauty.py │ │ │ │ │ ├── docmaker.py │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── sources.py │ │ │ │ │ ├── tohtml.py │ │ │ │ │ └── utils.py │ │ │ │ ├── ftrandom │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ └── ftrandom.c │ │ │ │ ├── glnames.py │ │ │ │ ├── test_afm.c │ │ │ │ ├── test_bbox.c │ │ │ │ └── test_trig.c │ │ │ │ ├── truetype │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── truetype.c │ │ │ │ ├── ttdriver.c │ │ │ │ ├── ttdriver.h │ │ │ │ ├── tterrors.h │ │ │ │ ├── ttgload.c │ │ │ │ ├── ttgload.h │ │ │ │ ├── ttgxvar.c │ │ │ │ ├── ttgxvar.h │ │ │ │ ├── ttinterp.c │ │ │ │ ├── ttinterp.h │ │ │ │ ├── ttobjs.c │ │ │ │ ├── ttobjs.h │ │ │ │ ├── ttpic.c │ │ │ │ ├── ttpic.h │ │ │ │ ├── ttpload.c │ │ │ │ ├── ttpload.h │ │ │ │ ├── ttsubpix.c │ │ │ │ └── ttsubpix.h │ │ │ │ ├── type1 │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t1afm.c │ │ │ │ ├── t1afm.h │ │ │ │ ├── t1driver.c │ │ │ │ ├── t1driver.h │ │ │ │ ├── t1errors.h │ │ │ │ ├── t1gload.c │ │ │ │ ├── t1gload.h │ │ │ │ ├── t1load.c │ │ │ │ ├── t1load.h │ │ │ │ ├── t1objs.c │ │ │ │ ├── t1objs.h │ │ │ │ ├── t1parse.c │ │ │ │ ├── t1parse.h │ │ │ │ ├── t1tokens.h │ │ │ │ └── type1.c │ │ │ │ ├── type42 │ │ │ │ ├── Jamfile │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── t42drivr.c │ │ │ │ ├── t42drivr.h │ │ │ │ ├── t42error.h │ │ │ │ ├── t42objs.c │ │ │ │ ├── t42objs.h │ │ │ │ ├── t42parse.c │ │ │ │ ├── t42parse.h │ │ │ │ ├── t42types.h │ │ │ │ └── type42.c │ │ │ │ └── winfonts │ │ │ │ ├── Jamfile │ │ │ │ ├── fnterrs.h │ │ │ │ ├── module.mk │ │ │ │ ├── rules.mk │ │ │ │ ├── winfnt.c │ │ │ │ └── winfnt.h │ │ └── stb │ │ │ └── stb_image.h │ │ ├── fx │ │ ├── line_2d.fsh │ │ ├── line_2d.vsh │ │ ├── sprite.fsh │ │ ├── sprite.vsh │ │ ├── text_2d.fsh │ │ └── text_2d.vsh │ │ ├── include │ │ └── plugin_renderer_gl │ │ │ ├── 2d.h │ │ │ ├── config.h.in │ │ │ ├── context.h │ │ │ ├── events.h │ │ │ ├── glutils.h │ │ │ ├── input.h │ │ │ ├── services.h │ │ │ ├── shader.h │ │ │ ├── sprite.h │ │ │ ├── text.h │ │ │ ├── text_manager.h │ │ │ ├── text_wrapper.h │ │ │ └── window.h │ │ └── src │ │ ├── 2d.c │ │ ├── context.c │ │ ├── events.c │ │ ├── glutils.c │ │ ├── input.c │ │ ├── plugin_renderer_gl.c │ │ ├── services.c │ │ ├── shader.c │ │ ├── sprite.c │ │ ├── text.c │ │ ├── text_manager.c │ │ ├── text_wrapper.c │ │ └── window.c ├── d │ ├── CMakeLists.txt │ └── d_example │ │ ├── CMakeLists.txt │ │ └── src │ │ └── d_example.d └── plugin_template │ ├── CMakeLists.txt.in │ ├── config.h.in.in │ ├── context.c.in │ ├── context.h.in │ ├── events.c.in │ ├── events.h.in │ ├── plugin.c.in │ ├── services.c.in │ └── services.h.in ├── scripts ├── clean-dist.sh ├── cmake │ ├── CMakeLists.txt │ ├── install-arch.cmake.in │ ├── toolchain-arch.cmake.in │ └── toolchains │ │ ├── .gitignore │ │ └── .gitkeep ├── convert-cpp-comment-style.py ├── cross-compile.py ├── new_plugin.py ├── py_lightship │ ├── .gitignore │ ├── TemplateProcessor.py │ └── __init__.py ├── test-nix.sh ├── valgrind-linux-tests.sh ├── valgrind-linux.sh └── valgrind-suppressions.supp ├── tests ├── CMakeLists.txt ├── gmock │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README │ ├── gtest │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README │ │ ├── cmake │ │ │ └── internal_utils.cmake │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ └── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ ├── include │ │ └── gmock │ │ │ ├── gmock-actions.h │ │ │ ├── gmock-cardinalities.h │ │ │ ├── gmock-generated-actions.h │ │ │ ├── gmock-generated-actions.h.pump │ │ │ ├── gmock-generated-function-mockers.h │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ ├── gmock-generated-matchers.h │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ ├── gmock-generated-nice-strict.h │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ ├── gmock-matchers.h │ │ │ ├── gmock-more-actions.h │ │ │ ├── gmock-more-matchers.h │ │ │ ├── gmock-spec-builders.h │ │ │ ├── gmock.h │ │ │ └── internal │ │ │ ├── gmock-generated-internal-utils.h │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ ├── gmock-internal-utils.h │ │ │ └── gmock-port.h │ └── src │ │ ├── gmock-all.cc │ │ ├── gmock-cardinalities.cc │ │ ├── gmock-internal-utils.cc │ │ ├── gmock-matchers.cc │ │ ├── gmock-spec-builders.cc │ │ ├── gmock.cc │ │ └── gmock_main.cc ├── include │ └── tests │ │ └── globals.hpp ├── src │ ├── death │ │ └── util │ │ │ ├── test_dir_death.cpp │ │ │ ├── test_linked_list_death.cpp │ │ │ ├── test_map_death.cpp │ │ │ ├── test_ordered_vector_death.cpp │ │ │ ├── test_ptree_death.cpp │ │ │ ├── test_string_death.cpp │ │ │ ├── test_unordered_vector_death.cpp │ │ │ └── test_yaml_death.cpp │ ├── env │ │ └── util │ │ │ └── environment_util_global.cpp │ ├── malloc │ │ └── util │ │ │ ├── test_dir_malloc.cpp │ │ │ ├── test_file_malloc.cpp │ │ │ ├── test_linked_list_malloc.cpp │ │ │ ├── test_map_malloc.cpp │ │ │ ├── test_memory_malloc.cpp │ │ │ ├── test_ordered_vector_malloc.cpp │ │ │ ├── test_ptree_malloc.cpp │ │ │ ├── test_string_malloc.cpp │ │ │ ├── test_unordered_vector_malloc.cpp │ │ │ └── test_yaml_malloc.cpp │ └── misc │ │ ├── framework │ │ ├── test_events.cpp │ │ ├── test_se_api.cpp │ │ └── test_services.cpp │ │ └── util │ │ ├── test_bst_hashed_vector.cpp │ │ ├── test_bst_hashed_vector_hash_collision.cpp │ │ ├── test_bst_vector.cpp │ │ ├── test_dir.cpp │ │ ├── test_dynamic_call.cpp │ │ ├── test_linked_list.cpp │ │ ├── test_ordered_vector.cpp │ │ ├── test_ptree.cpp │ │ ├── test_string.cpp │ │ ├── test_unordered_vector.cpp │ │ └── test_yaml.cpp └── test_dir │ ├── empty │ └── empty │ └── files │ ├── dir_a │ └── empty │ ├── dir_b │ └── empty │ ├── file_a.txt │ ├── file_b.txt │ └── file_c.txt └── util ├── CMakeLists.txt ├── ext ├── CMakeLists.txt └── yaml-0.1.5-cmake │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── include │ └── yaml │ │ ├── config.h.in │ │ ├── yaml.h │ │ └── yaml_private.h │ └── src │ ├── api.c │ ├── dumper.c │ ├── emitter.c │ ├── loader.c │ ├── parser.c │ ├── reader.c │ ├── scanner.c │ └── writer.c ├── include ├── common │ └── export.h.in ├── d_api │ ├── log.d │ └── plugin.d ├── thread_pool │ └── thread_pool.h └── util │ ├── backtrace.h │ ├── bst_hashed_vector.h │ ├── bst_vector.h │ ├── config.h.in │ ├── dir.h │ ├── dynamic_call.h │ ├── file.h │ ├── hash.h │ ├── lightship_util.h │ ├── linked_list.h │ ├── macros.h │ ├── memory.h │ ├── module_loader.h │ ├── net.h │ ├── ordered_vector.h │ ├── platform │ ├── osx │ │ └── fmemopen.h │ └── win │ │ └── error.h │ ├── pstdint.h │ ├── ptree.h │ ├── string.h │ ├── time.h │ ├── unordered_vector.h │ └── yaml.h └── src ├── thread_pool ├── platform │ ├── linux │ │ └── thread_pool_linux.c │ └── osx │ │ └── thread_pool_osx.c └── thread_test.c └── util ├── bst_hashed_vector.c ├── bst_vector.c ├── dynamic_call.c ├── hash.c ├── linked_list.c ├── memory.c ├── ordered_vector.c ├── platform ├── linux │ ├── backtrace_linux.c │ ├── dir_linux.c │ ├── file_linux.c │ ├── module_loader_linux.c │ ├── net_linux.c │ └── time_linux.c ├── osx │ ├── backtrace_osx.c │ ├── dir_osx.c │ ├── file_osx.c │ ├── fmemopen.c │ ├── module_loader_osx.c │ ├── net_osx.c │ └── time_osx.c └── win │ ├── backtrace_win.c │ ├── dir_win.c │ ├── error.c │ ├── file_win.c │ ├── module_loader_win.c │ ├── net_win.c │ └── time_win.c ├── ptree.c ├── string.c ├── unordered_vector.c └── yaml.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/README.md -------------------------------------------------------------------------------- /cmake/templates/VisualStudioUserFile.vcproj.user.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/cmake/templates/VisualStudioUserFile.vcproj.user.in -------------------------------------------------------------------------------- /cmake/templates/VisualStudioUserFile.vcxproj.user.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/cmake/templates/VisualStudioUserFile.vcxproj.user.in -------------------------------------------------------------------------------- /cross-build/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/cross-build/.gitignore -------------------------------------------------------------------------------- /cross-build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !Doxyfile 4 | -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /framework/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/CMakeLists.txt -------------------------------------------------------------------------------- /framework/include/framework/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/include/framework/config.h.in -------------------------------------------------------------------------------- /framework/include/framework/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/include/framework/events.h -------------------------------------------------------------------------------- /framework/include/framework/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/include/framework/game.h -------------------------------------------------------------------------------- /framework/include/framework/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/include/framework/log.h -------------------------------------------------------------------------------- /framework/include/framework/main_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/include/framework/main_loop.h -------------------------------------------------------------------------------- /framework/include/framework/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/include/framework/plugin.h -------------------------------------------------------------------------------- /framework/include/framework/plugin_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/include/framework/plugin_api.h -------------------------------------------------------------------------------- /framework/include/framework/plugin_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/include/framework/plugin_manager.h -------------------------------------------------------------------------------- /framework/include/framework/se_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/include/framework/se_api.h -------------------------------------------------------------------------------- /framework/include/framework/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/include/framework/services.h -------------------------------------------------------------------------------- /framework/src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/src/events.c -------------------------------------------------------------------------------- /framework/src/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/src/game.c -------------------------------------------------------------------------------- /framework/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/src/log.c -------------------------------------------------------------------------------- /framework/src/main_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/src/main_loop.c -------------------------------------------------------------------------------- /framework/src/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/src/plugin.c -------------------------------------------------------------------------------- /framework/src/plugin_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/src/plugin_manager.c -------------------------------------------------------------------------------- /framework/src/se_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/src/se_api.c -------------------------------------------------------------------------------- /framework/src/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/framework/src/services.c -------------------------------------------------------------------------------- /lightship/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/CMakeLists.txt -------------------------------------------------------------------------------- /lightship/cfg/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/cfg/settings.yml -------------------------------------------------------------------------------- /lightship/cfg/settings_d.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/cfg/settings_d.yml -------------------------------------------------------------------------------- /lightship/include/lightship/argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/include/lightship/argv.h -------------------------------------------------------------------------------- /lightship/include/lightship/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/include/lightship/config.h.in -------------------------------------------------------------------------------- /lightship/include/lightship/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/include/lightship/init.h -------------------------------------------------------------------------------- /lightship/include/lightship/lightship.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/include/lightship/lightship.h -------------------------------------------------------------------------------- /lightship/include/lightship/thread_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/include/lightship/thread_test.h -------------------------------------------------------------------------------- /lightship/python/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/python/Main.py -------------------------------------------------------------------------------- /lightship/src/argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/src/argv.c -------------------------------------------------------------------------------- /lightship/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/src/init.c -------------------------------------------------------------------------------- /lightship/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/lightship/src/main.c -------------------------------------------------------------------------------- /lightship_version: -------------------------------------------------------------------------------- 1 | 0.0.1-prealpha 2 | -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/input/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/input/include/plugin_input/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/include/plugin_input/config.h.in -------------------------------------------------------------------------------- /plugins/core/input/include/plugin_input/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/include/plugin_input/context.h -------------------------------------------------------------------------------- /plugins/core/input/include/plugin_input/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/include/plugin_input/events.h -------------------------------------------------------------------------------- /plugins/core/input/include/plugin_input/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/include/plugin_input/keyboard.h -------------------------------------------------------------------------------- /plugins/core/input/include/plugin_input/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/include/plugin_input/mouse.h -------------------------------------------------------------------------------- /plugins/core/input/include/plugin_input/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/include/plugin_input/services.h -------------------------------------------------------------------------------- /plugins/core/input/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/src/context.c -------------------------------------------------------------------------------- /plugins/core/input/src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/src/events.c -------------------------------------------------------------------------------- /plugins/core/input/src/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/src/keyboard.c -------------------------------------------------------------------------------- /plugins/core/input/src/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/src/mouse.c -------------------------------------------------------------------------------- /plugins/core/input/src/plugin_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/src/plugin_input.c -------------------------------------------------------------------------------- /plugins/core/input/src/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/input/src/services.c -------------------------------------------------------------------------------- /plugins/core/menu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/menu/cfg/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/cfg/menu.yml -------------------------------------------------------------------------------- /plugins/core/menu/include/plugin_menu/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/include/plugin_menu/button.h -------------------------------------------------------------------------------- /plugins/core/menu/include/plugin_menu/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/include/plugin_menu/config.h.in -------------------------------------------------------------------------------- /plugins/core/menu/include/plugin_menu/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/include/plugin_menu/context.h -------------------------------------------------------------------------------- /plugins/core/menu/include/plugin_menu/element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/include/plugin_menu/element.h -------------------------------------------------------------------------------- /plugins/core/menu/include/plugin_menu/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/include/plugin_menu/events.h -------------------------------------------------------------------------------- /plugins/core/menu/include/plugin_menu/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/include/plugin_menu/menu.h -------------------------------------------------------------------------------- /plugins/core/menu/include/plugin_menu/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/include/plugin_menu/screen.h -------------------------------------------------------------------------------- /plugins/core/menu/include/plugin_menu/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/include/plugin_menu/services.h -------------------------------------------------------------------------------- /plugins/core/menu/src/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/src/button.c -------------------------------------------------------------------------------- /plugins/core/menu/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/src/context.c -------------------------------------------------------------------------------- /plugins/core/menu/src/element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/src/element.c -------------------------------------------------------------------------------- /plugins/core/menu/src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/src/events.c -------------------------------------------------------------------------------- /plugins/core/menu/src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/src/menu.c -------------------------------------------------------------------------------- /plugins/core/menu/src/plugin_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/src/plugin_menu.c -------------------------------------------------------------------------------- /plugins/core/menu/src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/src/screen.c -------------------------------------------------------------------------------- /plugins/core/menu/src/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/src/services.c -------------------------------------------------------------------------------- /plugins/core/menu/ttf/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/menu/ttf/DejaVuSans.ttf -------------------------------------------------------------------------------- /plugins/core/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/python/include/plugin_python/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/include/plugin_python/config.h.in -------------------------------------------------------------------------------- /plugins/core/python/include/plugin_python/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/include/plugin_python/context.h -------------------------------------------------------------------------------- /plugins/core/python/include/plugin_python/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/include/plugin_python/events.h -------------------------------------------------------------------------------- /plugins/core/python/include/plugin_python/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/include/plugin_python/interpreter.h -------------------------------------------------------------------------------- /plugins/core/python/include/plugin_python/lightship_module.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | extern PyObject* lightship_error; 4 | -------------------------------------------------------------------------------- /plugins/core/python/include/plugin_python/lightship_module_events.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/core/python/include/plugin_python/lightship_module_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/include/plugin_python/lightship_module_game.h -------------------------------------------------------------------------------- /plugins/core/python/include/plugin_python/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/include/plugin_python/services.h -------------------------------------------------------------------------------- /plugins/core/python/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/src/context.c -------------------------------------------------------------------------------- /plugins/core/python/src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/src/events.c -------------------------------------------------------------------------------- /plugins/core/python/src/interpreter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/src/interpreter.c -------------------------------------------------------------------------------- /plugins/core/python/src/lightship_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/src/lightship_module.c -------------------------------------------------------------------------------- /plugins/core/python/src/lightship_module_events.c: -------------------------------------------------------------------------------- 1 | int dummy; 2 | -------------------------------------------------------------------------------- /plugins/core/python/src/lightship_module_exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/src/lightship_module_exceptions.c -------------------------------------------------------------------------------- /plugins/core/python/src/lightship_module_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/src/lightship_module_game.c -------------------------------------------------------------------------------- /plugins/core/python/src/lightship_module_services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/src/lightship_module_services.c -------------------------------------------------------------------------------- /plugins/core/python/src/plugin_python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/src/plugin_python.c -------------------------------------------------------------------------------- /plugins/core/python/src/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/python/src/services.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/LICENSE.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/Makefile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/README.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/TODO.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/Makefile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make.pl -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make_html.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make_html.pl -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make_info.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make_info.pl -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make_init.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make_init.pl -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make_list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make_list.pl -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make_str.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/make_str.pl -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/parse_spec.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/parse_spec.pl -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/update_ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/bin/update_ext.sh -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/blacklist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/blacklist -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/core/GL_REGAL_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/core/GL_REGAL_log -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/core/GL_VERSION_4_1: -------------------------------------------------------------------------------- 1 | GL_VERSION_4_1 2 | http://www.opengl.org/registry/doc/glspec41.core.20100725.pdf 3 | 4 | -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/custom.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/advanced.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/basic.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/build.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/credits.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/index.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/install.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/doc/log.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/extensions/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/footer.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew.rc -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew_head.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew_head.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew_tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew_tail.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew_utils.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glew_utils.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glewinfo.rc -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glewinfo_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glewinfo_gl.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glewinfo_glx.c: -------------------------------------------------------------------------------- 1 | } 2 | 3 | #else /* _UNIX */ 4 | 5 | static void glxewInfo () 6 | { 7 | -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glxew_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glxew_head.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glxew_mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glxew_mid.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glxew_tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/glxew_tail.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/header.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/visualinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/visualinfo.rc -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/wglew_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/wglew_head.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/wglew_mid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/wglew_mid.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/wglew_tail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/auto/src/wglew_tail.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/glew.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/glew.rc -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/glewinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/glewinfo.rc -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/vc10/glew.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/vc10/glew.sln -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/vc6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/vc6/Makefile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/vc6/glew.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/vc6/glew.dsw -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/vc6/glewinfo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/vc6/glewinfo.dsp -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/visualinfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/build/visualinfo.rc -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.cygwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.cygwin -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.darwin -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.gnu -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.irix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.irix -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.linux -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.mingw -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.netbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/Makefile.netbsd -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/config.guess -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/config/version -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/advanced.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/basic.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/build.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/credits.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/glew.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/glew.css -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/glew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/glew.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/glew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/glew.png -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/glew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/glew.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/glxew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/glxew.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/gpl.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/index.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/install.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/khronos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/khronos.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/log.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/mesa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/mesa.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/new.png -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/ogl_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/ogl_sm.jpg -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/wglew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/doc/wglew.html -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/glew.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/glew.pc.in -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/include/GL/glew.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/include/GL/glxew.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/include/GL/wglew.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/src/glew.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/src/glewinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/src/glewinfo.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glew-1.9.0/src/visualinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glew-1.9.0/src/visualinfo.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/.gitignore -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/COPYING.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/README.md -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/EGL/eglext.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/GL/glext.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/GL/glxext.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/GL/wglext.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/getopt.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/getopt.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/tinycthread.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/deps/tinycthread.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/boing.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/gears.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/heightmap.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/simple.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/splitview.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/examples/wave.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/clipboard.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_clipboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_clipboard.m -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_gamma.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_init.m -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_joystick.m -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_monitor.m -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_platform.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_time.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/cocoa_window.m -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/config.h.in -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/context.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/egl_context.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/egl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/egl_platform.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/gamma.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/glfw3.pc.in -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/glx_context.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/glx_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/glx_platform.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/init.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/input.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/internal.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/joystick.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/monitor.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/nsgl_context.m -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/nsgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/nsgl_platform.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/time.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/wgl_context.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/wgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/wgl_platform.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_clipboard.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_gamma.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_init.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_joystick.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_monitor.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_platform.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_time.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/win32_window.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/window.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_clipboard.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_gamma.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_init.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_joystick.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_monitor.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_platform.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_time.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_unicode.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/src/x11_window.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/accuracy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/accuracy.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/clipboard.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/defaults.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/events.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/fsaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/fsaa.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/gamma.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/glfwinfo.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/iconify.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/joysticks.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/modes.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/peter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/peter.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/reopen.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/sharing.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/tearing.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/threads.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/title.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/GL/glfw-3.0.3/tests/windows.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/README -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/freetype.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ft2build.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftadvanc.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftautoh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftautoh.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftbbox.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftbdf.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftbitmap.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftbzip2.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftcache.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftcffdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftcffdrv.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftchapters.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftcid.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/fterrdef.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/fterrors.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftgasp.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftglyph.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftgxval.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftgzip.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftimage.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftincrem.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftlcdfil.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftlist.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftlzw.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftmac.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftmm.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftmodapi.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftmoderr.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftotval.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftoutln.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftpfr.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftrender.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftsizes.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftsnames.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftstroke.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftsynth.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftsystem.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/fttrigon.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftttdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftttdrv.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/fttypes.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftwinfnt.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftxf86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ftxf86.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/t1tables.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ttnameid.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/tttables.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/tttags.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/include/ttunpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/include/ttunpat.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/autofit/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/autofit/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/autofit/afblue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/autofit/afblue.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/autofit/afblue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/autofit/afblue.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/basepic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/basepic.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/basepic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/basepic.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftapi.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftbase.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftbase.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftbbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftbbox.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftbdf.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftcalc.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftcid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftcid.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftdebug.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftgasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftgasp.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftglyph.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftgxval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftgxval.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftinit.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftmac.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftmm.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftobjs.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftotval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftotval.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftoutln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftoutln.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftpfr.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftpic.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftrfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftrfork.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftsynth.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/fttype1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/fttype1.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftutil.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftxf86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/ftxf86.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/md5.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/md5.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/base/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/README -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdf.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdf.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdfdrivr.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdfdrivr.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdferror.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/bdflib.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/module.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bdf/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bzip2/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bzip2/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/bzip2/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/bzip2/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cache/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cache/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cache/ftcmru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cache/ftcmru.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cache/ftcmru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cache/ftcmru.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cache/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cache/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2arrst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2arrst.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2arrst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2arrst.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2blues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2blues.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2blues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2blues.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2error.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2error.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2fixed.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2font.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2font.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2ft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2ft.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2ft.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2glue.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2hints.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2hints.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2intrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2intrp.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2intrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2intrp.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2read.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2read.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2stack.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2stack.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cf2types.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cff.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffcmap.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffcmap.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffdrivr.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffdrivr.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cfferrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cfferrs.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffgload.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffgload.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffload.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffload.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffobjs.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffobjs.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffparse.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffparse.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffpic.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cffpic.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cfftoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cfftoken.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cfftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/cfftypes.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/module.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cff/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/ciderrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/ciderrs.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidgload.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidgload.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidload.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidload.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidobjs.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidobjs.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidparse.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidparse.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidriver.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidriver.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/cidtoken.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/module.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/type1cid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/cid/type1cid.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gxvalid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gxvalid/README -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/adler32.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/ftgzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/ftgzip.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/inflate.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/infutil.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/infutil.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/zconf.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/zlib.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/zutil.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/gzip/zutil.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/lzw/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/lzw/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/lzw/ftlzw.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/lzw/ftzopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/lzw/ftzopen.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/lzw/ftzopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/lzw/ftzopen.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/lzw/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/lzw/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/README -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/module.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcf.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcf.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfdrivr.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfdrivr.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcferror.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfread.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfread.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfutil.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/pcfutil.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pcf/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/module.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfr.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrcmap.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrcmap.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrdrivr.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrdrivr.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrerror.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrgload.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrgload.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrload.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrload.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrobjs.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrobjs.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrsbit.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrsbit.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/pfrtypes.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/pfr/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/psaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/psaux.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/psconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/psconv.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/psconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/psconv.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/psobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/psobjs.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/psobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/psobjs.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/t1cmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/t1cmap.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/t1cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/psaux/t1cmap.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/raster/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/raster/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/module.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/pngshim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/pngshim.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/pngshim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/pngshim.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/sfntpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/sfntpic.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/sfntpic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/sfntpic.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/sfobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/sfobjs.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/sfobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/sfobjs.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttbdf.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttbdf.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttcmap.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttcmap.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttcmapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttcmapc.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttkern.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttkern.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttload.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttload.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttmtx.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttmtx.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttpost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttpost.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttpost.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttsbit.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/sfnt/ttsbit.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/smooth/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/smooth/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/tools/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/tools/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/rules.mk -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1afm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1afm.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1afm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1afm.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1load.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1load.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1objs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1objs.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1objs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/t1objs.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/type1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/type1/type1.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/freetype-2.5.5/src/type42/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/freetype-2.5.5/src/type42/Jamfile -------------------------------------------------------------------------------- /plugins/core/renderer_gl/ext/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/ext/stb/stb_image.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/fx/line_2d.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/fx/line_2d.fsh -------------------------------------------------------------------------------- /plugins/core/renderer_gl/fx/line_2d.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/fx/line_2d.vsh -------------------------------------------------------------------------------- /plugins/core/renderer_gl/fx/sprite.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/fx/sprite.fsh -------------------------------------------------------------------------------- /plugins/core/renderer_gl/fx/sprite.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/fx/sprite.vsh -------------------------------------------------------------------------------- /plugins/core/renderer_gl/fx/text_2d.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/fx/text_2d.fsh -------------------------------------------------------------------------------- /plugins/core/renderer_gl/fx/text_2d.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/fx/text_2d.vsh -------------------------------------------------------------------------------- /plugins/core/renderer_gl/include/plugin_renderer_gl/2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/include/plugin_renderer_gl/2d.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/include/plugin_renderer_gl/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/include/plugin_renderer_gl/context.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/include/plugin_renderer_gl/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/include/plugin_renderer_gl/events.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/include/plugin_renderer_gl/glutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/include/plugin_renderer_gl/glutils.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/include/plugin_renderer_gl/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/include/plugin_renderer_gl/input.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/include/plugin_renderer_gl/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/include/plugin_renderer_gl/services.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/include/plugin_renderer_gl/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/include/plugin_renderer_gl/shader.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/include/plugin_renderer_gl/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/include/plugin_renderer_gl/sprite.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/include/plugin_renderer_gl/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/include/plugin_renderer_gl/text.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/include/plugin_renderer_gl/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/include/plugin_renderer_gl/window.h -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/2d.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/context.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/events.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/glutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/glutils.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/input.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/plugin_renderer_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/plugin_renderer_gl.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/services.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/shader.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/sprite.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/text.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/text_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/text_manager.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/text_wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/text_wrapper.c -------------------------------------------------------------------------------- /plugins/core/renderer_gl/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/core/renderer_gl/src/window.c -------------------------------------------------------------------------------- /plugins/d/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory ("d_example") 2 | -------------------------------------------------------------------------------- /plugins/d/d_example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/d/d_example/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/d/d_example/src/d_example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/d/d_example/src/d_example.d -------------------------------------------------------------------------------- /plugins/plugin_template/CMakeLists.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/plugin_template/CMakeLists.txt.in -------------------------------------------------------------------------------- /plugins/plugin_template/config.h.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/plugin_template/config.h.in.in -------------------------------------------------------------------------------- /plugins/plugin_template/context.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/plugin_template/context.c.in -------------------------------------------------------------------------------- /plugins/plugin_template/context.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/plugin_template/context.h.in -------------------------------------------------------------------------------- /plugins/plugin_template/events.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/plugin_template/events.c.in -------------------------------------------------------------------------------- /plugins/plugin_template/events.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/plugin_template/events.h.in -------------------------------------------------------------------------------- /plugins/plugin_template/plugin.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/plugin_template/plugin.c.in -------------------------------------------------------------------------------- /plugins/plugin_template/services.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/plugin_template/services.c.in -------------------------------------------------------------------------------- /plugins/plugin_template/services.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/plugins/plugin_template/services.h.in -------------------------------------------------------------------------------- /scripts/clean-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/clean-dist.sh -------------------------------------------------------------------------------- /scripts/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/cmake/install-arch.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/cmake/install-arch.cmake.in -------------------------------------------------------------------------------- /scripts/cmake/toolchain-arch.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/cmake/toolchain-arch.cmake.in -------------------------------------------------------------------------------- /scripts/cmake/toolchains/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/cmake/toolchains/.gitignore -------------------------------------------------------------------------------- /scripts/cmake/toolchains/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/convert-cpp-comment-style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/convert-cpp-comment-style.py -------------------------------------------------------------------------------- /scripts/cross-compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/cross-compile.py -------------------------------------------------------------------------------- /scripts/new_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/new_plugin.py -------------------------------------------------------------------------------- /scripts/py_lightship/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /scripts/py_lightship/TemplateProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/py_lightship/TemplateProcessor.py -------------------------------------------------------------------------------- /scripts/py_lightship/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ['TemplateProcessor'] 2 | -------------------------------------------------------------------------------- /scripts/test-nix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/test-nix.sh -------------------------------------------------------------------------------- /scripts/valgrind-linux-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/valgrind-linux-tests.sh -------------------------------------------------------------------------------- /scripts/valgrind-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/valgrind-linux.sh -------------------------------------------------------------------------------- /scripts/valgrind-suppressions.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/scripts/valgrind-suppressions.supp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/gmock/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/CHANGES -------------------------------------------------------------------------------- /tests/gmock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/CMakeLists.txt -------------------------------------------------------------------------------- /tests/gmock/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/CONTRIBUTORS -------------------------------------------------------------------------------- /tests/gmock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/LICENSE -------------------------------------------------------------------------------- /tests/gmock/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/README -------------------------------------------------------------------------------- /tests/gmock/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/CHANGES -------------------------------------------------------------------------------- /tests/gmock/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/gmock/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /tests/gmock/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/LICENSE -------------------------------------------------------------------------------- /tests/gmock/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/README -------------------------------------------------------------------------------- /tests/gmock/gtest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /tests/gmock/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /tests/gmock/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /tests/gmock/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /tests/gmock/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /tests/gmock/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /tests/gmock/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /tests/gmock/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /tests/gmock/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /tests/gmock/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /tests/gmock/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/src/gtest.cc -------------------------------------------------------------------------------- /tests/gmock/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-actions.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-cardinalities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-cardinalities.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-generated-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-generated-actions.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-generated-actions.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-generated-actions.h.pump -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-generated-function-mockers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-generated-function-mockers.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-generated-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-generated-matchers.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-generated-matchers.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-generated-matchers.h.pump -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-generated-nice-strict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-generated-nice-strict.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-generated-nice-strict.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-generated-nice-strict.h.pump -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-matchers.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-more-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-more-actions.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-more-matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-more-matchers.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock-spec-builders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock-spec-builders.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/gmock.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/internal/gmock-internal-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/internal/gmock-internal-utils.h -------------------------------------------------------------------------------- /tests/gmock/include/gmock/internal/gmock-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/include/gmock/internal/gmock-port.h -------------------------------------------------------------------------------- /tests/gmock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/src/gmock-all.cc -------------------------------------------------------------------------------- /tests/gmock/src/gmock-cardinalities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/src/gmock-cardinalities.cc -------------------------------------------------------------------------------- /tests/gmock/src/gmock-internal-utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/src/gmock-internal-utils.cc -------------------------------------------------------------------------------- /tests/gmock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /tests/gmock/src/gmock-spec-builders.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/src/gmock-spec-builders.cc -------------------------------------------------------------------------------- /tests/gmock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/src/gmock.cc -------------------------------------------------------------------------------- /tests/gmock/src/gmock_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/gmock/src/gmock_main.cc -------------------------------------------------------------------------------- /tests/include/tests/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/include/tests/globals.hpp -------------------------------------------------------------------------------- /tests/src/death/util/test_dir_death.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/death/util/test_dir_death.cpp -------------------------------------------------------------------------------- /tests/src/death/util/test_linked_list_death.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/death/util/test_linked_list_death.cpp -------------------------------------------------------------------------------- /tests/src/death/util/test_map_death.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/death/util/test_map_death.cpp -------------------------------------------------------------------------------- /tests/src/death/util/test_ordered_vector_death.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/death/util/test_ordered_vector_death.cpp -------------------------------------------------------------------------------- /tests/src/death/util/test_ptree_death.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/death/util/test_ptree_death.cpp -------------------------------------------------------------------------------- /tests/src/death/util/test_string_death.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/death/util/test_string_death.cpp -------------------------------------------------------------------------------- /tests/src/death/util/test_unordered_vector_death.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/death/util/test_unordered_vector_death.cpp -------------------------------------------------------------------------------- /tests/src/death/util/test_yaml_death.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/death/util/test_yaml_death.cpp -------------------------------------------------------------------------------- /tests/src/env/util/environment_util_global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/env/util/environment_util_global.cpp -------------------------------------------------------------------------------- /tests/src/malloc/util/test_dir_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/malloc/util/test_dir_malloc.cpp -------------------------------------------------------------------------------- /tests/src/malloc/util/test_file_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/malloc/util/test_file_malloc.cpp -------------------------------------------------------------------------------- /tests/src/malloc/util/test_linked_list_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/malloc/util/test_linked_list_malloc.cpp -------------------------------------------------------------------------------- /tests/src/malloc/util/test_map_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/malloc/util/test_map_malloc.cpp -------------------------------------------------------------------------------- /tests/src/malloc/util/test_memory_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/malloc/util/test_memory_malloc.cpp -------------------------------------------------------------------------------- /tests/src/malloc/util/test_ordered_vector_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/malloc/util/test_ordered_vector_malloc.cpp -------------------------------------------------------------------------------- /tests/src/malloc/util/test_ptree_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/malloc/util/test_ptree_malloc.cpp -------------------------------------------------------------------------------- /tests/src/malloc/util/test_string_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/malloc/util/test_string_malloc.cpp -------------------------------------------------------------------------------- /tests/src/malloc/util/test_unordered_vector_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/malloc/util/test_unordered_vector_malloc.cpp -------------------------------------------------------------------------------- /tests/src/malloc/util/test_yaml_malloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/malloc/util/test_yaml_malloc.cpp -------------------------------------------------------------------------------- /tests/src/misc/framework/test_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/framework/test_events.cpp -------------------------------------------------------------------------------- /tests/src/misc/framework/test_se_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/framework/test_se_api.cpp -------------------------------------------------------------------------------- /tests/src/misc/framework/test_services.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/framework/test_services.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_bst_hashed_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_bst_hashed_vector.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_bst_hashed_vector_hash_collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_bst_hashed_vector_hash_collision.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_bst_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_bst_vector.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_dir.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_dynamic_call.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_dynamic_call.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_linked_list.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_ordered_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_ordered_vector.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_ptree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_ptree.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_string.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_unordered_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_unordered_vector.cpp -------------------------------------------------------------------------------- /tests/src/misc/util/test_yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/tests/src/misc/util/test_yaml.cpp -------------------------------------------------------------------------------- /tests/test_dir/empty/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_dir/files/dir_a/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_dir/files/dir_b/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_dir/files/file_a.txt: -------------------------------------------------------------------------------- 1 | Some Random Message 2 | -------------------------------------------------------------------------------- /tests/test_dir/files/file_b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_dir/files/file_c.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/CMakeLists.txt -------------------------------------------------------------------------------- /util/ext/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory ("yaml-0.1.5-cmake") 2 | -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/CMakeLists.txt -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/LICENSE -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/README -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/include/yaml/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/include/yaml/config.h.in -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/include/yaml/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/include/yaml/yaml.h -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/include/yaml/yaml_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/include/yaml/yaml_private.h -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/src/api.c -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/src/dumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/src/dumper.c -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/src/emitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/src/emitter.c -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/src/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/src/loader.c -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/src/parser.c -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/src/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/src/reader.c -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/src/scanner.c -------------------------------------------------------------------------------- /util/ext/yaml-0.1.5-cmake/src/writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/ext/yaml-0.1.5-cmake/src/writer.c -------------------------------------------------------------------------------- /util/include/common/export.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/common/export.h.in -------------------------------------------------------------------------------- /util/include/d_api/log.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/d_api/log.d -------------------------------------------------------------------------------- /util/include/d_api/plugin.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/d_api/plugin.d -------------------------------------------------------------------------------- /util/include/thread_pool/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/thread_pool/thread_pool.h -------------------------------------------------------------------------------- /util/include/util/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/backtrace.h -------------------------------------------------------------------------------- /util/include/util/bst_hashed_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/bst_hashed_vector.h -------------------------------------------------------------------------------- /util/include/util/bst_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/bst_vector.h -------------------------------------------------------------------------------- /util/include/util/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/config.h.in -------------------------------------------------------------------------------- /util/include/util/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/dir.h -------------------------------------------------------------------------------- /util/include/util/dynamic_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/dynamic_call.h -------------------------------------------------------------------------------- /util/include/util/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/file.h -------------------------------------------------------------------------------- /util/include/util/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/hash.h -------------------------------------------------------------------------------- /util/include/util/lightship_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/lightship_util.h -------------------------------------------------------------------------------- /util/include/util/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/linked_list.h -------------------------------------------------------------------------------- /util/include/util/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/macros.h -------------------------------------------------------------------------------- /util/include/util/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/memory.h -------------------------------------------------------------------------------- /util/include/util/module_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/module_loader.h -------------------------------------------------------------------------------- /util/include/util/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/net.h -------------------------------------------------------------------------------- /util/include/util/ordered_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/ordered_vector.h -------------------------------------------------------------------------------- /util/include/util/platform/osx/fmemopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/platform/osx/fmemopen.h -------------------------------------------------------------------------------- /util/include/util/platform/win/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/platform/win/error.h -------------------------------------------------------------------------------- /util/include/util/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/pstdint.h -------------------------------------------------------------------------------- /util/include/util/ptree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/ptree.h -------------------------------------------------------------------------------- /util/include/util/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/string.h -------------------------------------------------------------------------------- /util/include/util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/time.h -------------------------------------------------------------------------------- /util/include/util/unordered_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/unordered_vector.h -------------------------------------------------------------------------------- /util/include/util/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/include/util/yaml.h -------------------------------------------------------------------------------- /util/src/thread_pool/platform/linux/thread_pool_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/thread_pool/platform/linux/thread_pool_linux.c -------------------------------------------------------------------------------- /util/src/thread_pool/platform/osx/thread_pool_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/thread_pool/platform/osx/thread_pool_osx.c -------------------------------------------------------------------------------- /util/src/thread_pool/thread_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/thread_pool/thread_test.c -------------------------------------------------------------------------------- /util/src/util/bst_hashed_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/bst_hashed_vector.c -------------------------------------------------------------------------------- /util/src/util/bst_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/bst_vector.c -------------------------------------------------------------------------------- /util/src/util/dynamic_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/dynamic_call.c -------------------------------------------------------------------------------- /util/src/util/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/hash.c -------------------------------------------------------------------------------- /util/src/util/linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/linked_list.c -------------------------------------------------------------------------------- /util/src/util/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/memory.c -------------------------------------------------------------------------------- /util/src/util/ordered_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/ordered_vector.c -------------------------------------------------------------------------------- /util/src/util/platform/linux/backtrace_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/linux/backtrace_linux.c -------------------------------------------------------------------------------- /util/src/util/platform/linux/dir_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/linux/dir_linux.c -------------------------------------------------------------------------------- /util/src/util/platform/linux/file_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/linux/file_linux.c -------------------------------------------------------------------------------- /util/src/util/platform/linux/module_loader_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/linux/module_loader_linux.c -------------------------------------------------------------------------------- /util/src/util/platform/linux/net_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/linux/net_linux.c -------------------------------------------------------------------------------- /util/src/util/platform/linux/time_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/linux/time_linux.c -------------------------------------------------------------------------------- /util/src/util/platform/osx/backtrace_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/osx/backtrace_osx.c -------------------------------------------------------------------------------- /util/src/util/platform/osx/dir_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/osx/dir_osx.c -------------------------------------------------------------------------------- /util/src/util/platform/osx/file_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/osx/file_osx.c -------------------------------------------------------------------------------- /util/src/util/platform/osx/fmemopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/osx/fmemopen.c -------------------------------------------------------------------------------- /util/src/util/platform/osx/module_loader_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/osx/module_loader_osx.c -------------------------------------------------------------------------------- /util/src/util/platform/osx/net_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/osx/net_osx.c -------------------------------------------------------------------------------- /util/src/util/platform/osx/time_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/osx/time_osx.c -------------------------------------------------------------------------------- /util/src/util/platform/win/backtrace_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/win/backtrace_win.c -------------------------------------------------------------------------------- /util/src/util/platform/win/dir_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/win/dir_win.c -------------------------------------------------------------------------------- /util/src/util/platform/win/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/win/error.c -------------------------------------------------------------------------------- /util/src/util/platform/win/file_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/win/file_win.c -------------------------------------------------------------------------------- /util/src/util/platform/win/module_loader_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/win/module_loader_win.c -------------------------------------------------------------------------------- /util/src/util/platform/win/net_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/platform/win/net_win.c -------------------------------------------------------------------------------- /util/src/util/platform/win/time_win.c: -------------------------------------------------------------------------------- 1 | #include "util/time.h" 2 | 3 | int64_t 4 | get_time_in_microseconds(void) 5 | { 6 | /* TODO */ 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /util/src/util/ptree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/ptree.c -------------------------------------------------------------------------------- /util/src/util/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/string.c -------------------------------------------------------------------------------- /util/src/util/unordered_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/unordered_vector.c -------------------------------------------------------------------------------- /util/src/util/yaml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheComet/lightship-dbp/HEAD/util/src/util/yaml.c --------------------------------------------------------------------------------