├── .editorconfig ├── .gitattributes ├── .gitignore ├── Blake Stone source code license.doc ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── TODO.md ├── cmake ├── FindSDL2W.cmake └── GetGitHeadHash.cmake ├── src ├── CMakeLists.txt ├── bstone │ ├── CMakeLists.txt │ └── src │ │ ├── 3d_act1.cpp │ │ ├── 3d_act2.cpp │ │ ├── 3d_agent.cpp │ │ ├── 3d_debug.cpp │ │ ├── 3d_def.h │ │ ├── 3d_draw.cpp │ │ ├── 3d_draw2.cpp │ │ ├── 3d_game.cpp │ │ ├── 3d_inter.cpp │ │ ├── 3d_main.cpp │ │ ├── 3d_menu.cpp │ │ ├── 3d_menu.h │ │ ├── 3d_msgs.cpp │ │ ├── 3d_play.cpp │ │ ├── 3d_scale.cpp │ │ ├── 3d_state.cpp │ │ ├── an_codes.h │ │ ├── audio.h │ │ ├── bstone_adlib_decoder.cpp │ │ ├── bstone_adlib_decoder.h │ │ ├── bstone_adlib_music_decoder.cpp │ │ ├── bstone_adlib_music_decoder.h │ │ ├── bstone_adlib_sfx_decoder.cpp │ │ ├── bstone_adlib_sfx_decoder.h │ │ ├── bstone_algorithm.cpp │ │ ├── bstone_algorithm.h │ │ ├── bstone_api_string.cpp │ │ ├── bstone_api_string.h │ │ ├── bstone_archiver.cpp │ │ ├── bstone_archiver.h │ │ ├── bstone_array.cpp │ │ ├── bstone_array.h │ │ ├── bstone_ascii.cpp │ │ ├── bstone_ascii.h │ │ ├── bstone_assert.cpp │ │ ├── bstone_assert.h │ │ ├── bstone_atomic_flag.cpp │ │ ├── bstone_atomic_flag.h │ │ ├── bstone_audio_content_mgr.cpp │ │ ├── bstone_audio_content_mgr.h │ │ ├── bstone_audio_decoder.cpp │ │ ├── bstone_audio_decoder.h │ │ ├── bstone_audio_extractor.cpp │ │ ├── bstone_audio_extractor.h │ │ ├── bstone_audio_mixer.cpp │ │ ├── bstone_audio_mixer.h │ │ ├── bstone_audio_mixer_output_gains.h │ │ ├── bstone_audio_mixer_utils.cpp │ │ ├── bstone_audio_mixer_utils.h │ │ ├── bstone_audio_mixer_validator.cpp │ │ ├── bstone_audio_mixer_validator.h │ │ ├── bstone_audio_mixer_voice_handle.cpp │ │ ├── bstone_audio_mixer_voice_handle.h │ │ ├── bstone_audio_mixer_voice_handle_mgr.cpp │ │ ├── bstone_audio_mixer_voice_handle_mgr.h │ │ ├── bstone_audio_sample_converter.cpp │ │ ├── bstone_audio_sample_converter.h │ │ ├── bstone_auto_arena_resource.cpp │ │ ├── bstone_auto_arena_resource.h │ │ ├── bstone_binary_reader.cpp │ │ ├── bstone_binary_reader.h │ │ ├── bstone_binary_writer.cpp │ │ ├── bstone_binary_writer.h │ │ ├── bstone_bmp_image_common.h │ │ ├── bstone_bmp_image_decoder.cpp │ │ ├── bstone_bmp_image_decoder.h │ │ ├── bstone_ccmd.cpp │ │ ├── bstone_ccmd.h │ │ ├── bstone_ccmd_action.cpp │ │ ├── bstone_ccmd_action.h │ │ ├── bstone_ccmd_mgr.cpp │ │ ├── bstone_ccmd_mgr.h │ │ ├── bstone_cgm_clip_space.cpp │ │ ├── bstone_cgm_clip_space.h │ │ ├── bstone_cgm_mat.cpp │ │ ├── bstone_cgm_mat.h │ │ ├── bstone_cgm_transform.cpp │ │ ├── bstone_cgm_transform.h │ │ ├── bstone_cgm_vec.cpp │ │ ├── bstone_cgm_vec.h │ │ ├── bstone_char_conv.cpp │ │ ├── bstone_char_conv.h │ │ ├── bstone_char_hasher.cpp │ │ ├── bstone_char_hasher.h │ │ ├── bstone_char_traits.cpp │ │ ├── bstone_char_traits.h │ │ ├── bstone_cl.cpp │ │ ├── bstone_cl.h │ │ ├── bstone_configurations.cpp │ │ ├── bstone_configurations.h │ │ ├── bstone_content_path.cpp │ │ ├── bstone_content_path.h │ │ ├── bstone_crc32.cpp │ │ ├── bstone_crc32.h │ │ ├── bstone_cvalidator.cpp │ │ ├── bstone_cvalidator.h │ │ ├── bstone_cvar.cpp │ │ ├── bstone_cvar.h │ │ ├── bstone_cvar_mgr.cpp │ │ ├── bstone_cvar_mgr.h │ │ ├── bstone_cvar_string.cpp │ │ ├── bstone_cvar_string.h │ │ ├── bstone_cxx.cpp │ │ ├── bstone_cxx.h │ │ ├── bstone_door.h │ │ ├── bstone_dosbox_dbopl.cpp │ │ ├── bstone_dosbox_dbopl.h │ │ ├── bstone_encoding.cpp │ │ ├── bstone_encoding.h │ │ ├── bstone_endian.cpp │ │ ├── bstone_endian.h │ │ ├── bstone_entry_point.cpp │ │ ├── bstone_entry_point.h │ │ ├── bstone_enum_flags.h │ │ ├── bstone_exception.cpp │ │ ├── bstone_exception.h │ │ ├── bstone_exception_utils.cpp │ │ ├── bstone_exception_utils.h │ │ ├── bstone_extent_2d.cpp │ │ ├── bstone_extent_2d.h │ │ ├── bstone_file.cpp │ │ ├── bstone_file.h │ │ ├── bstone_file_posix.cpp │ │ ├── bstone_file_stream.cpp │ │ ├── bstone_file_stream.h │ │ ├── bstone_file_win32.cpp │ │ ├── bstone_fixed_pool_resource.cpp │ │ ├── bstone_fixed_pool_resource.h │ │ ├── bstone_fizzle_fx.cpp │ │ ├── bstone_fizzle_fx.h │ │ ├── bstone_format_string.cpp │ │ ├── bstone_format_string.h │ │ ├── bstone_four_cc.cpp │ │ ├── bstone_four_cc.h │ │ ├── bstone_fs.cpp │ │ ├── bstone_fs.h │ │ ├── bstone_fs_posix.cpp │ │ ├── bstone_fs_utils.cpp │ │ ├── bstone_fs_utils.h │ │ ├── bstone_fs_win32.cpp │ │ ├── bstone_game_timer.cpp │ │ ├── bstone_game_timer.h │ │ ├── bstone_generic_fizzle_fx.cpp │ │ ├── bstone_generic_fizzle_fx.h │ │ ├── bstone_generic_pool_resource.cpp │ │ ├── bstone_generic_pool_resource.h │ │ ├── bstone_gl_r3r.cpp │ │ ├── bstone_gl_r3r.h │ │ ├── bstone_gl_r3r_api.cpp │ │ ├── bstone_gl_r3r_api.h │ │ ├── bstone_gl_r3r_buffer.cpp │ │ ├── bstone_gl_r3r_buffer.h │ │ ├── bstone_gl_r3r_context.cpp │ │ ├── bstone_gl_r3r_context.h │ │ ├── bstone_gl_r3r_device_features.h │ │ ├── bstone_gl_r3r_error.cpp │ │ ├── bstone_gl_r3r_error.h │ │ ├── bstone_gl_r3r_extension_mgr.cpp │ │ ├── bstone_gl_r3r_extension_mgr.h │ │ ├── bstone_gl_r3r_r2_texture.cpp │ │ ├── bstone_gl_r3r_r2_texture.h │ │ ├── bstone_gl_r3r_sampler.cpp │ │ ├── bstone_gl_r3r_sampler.h │ │ ├── bstone_gl_r3r_sampler_mgr.cpp │ │ ├── bstone_gl_r3r_sampler_mgr.h │ │ ├── bstone_gl_r3r_shader.cpp │ │ ├── bstone_gl_r3r_shader.h │ │ ├── bstone_gl_r3r_shader_stage.cpp │ │ ├── bstone_gl_r3r_shader_stage.h │ │ ├── bstone_gl_r3r_shader_var.cpp │ │ ├── bstone_gl_r3r_shader_var.h │ │ ├── bstone_gl_r3r_utils.cpp │ │ ├── bstone_gl_r3r_utils.h │ │ ├── bstone_gl_r3r_version.h │ │ ├── bstone_gl_r3r_vertex_input.cpp │ │ ├── bstone_gl_r3r_vertex_input.h │ │ ├── bstone_gl_r3r_vertex_input_mgr.cpp │ │ ├── bstone_gl_r3r_vertex_input_mgr.h │ │ ├── bstone_globals.cpp │ │ ├── bstone_globals.h │ │ ├── bstone_gog_content_path.cpp │ │ ├── bstone_hw_shader_registry.cpp │ │ ├── bstone_hw_shader_registry.h │ │ ├── bstone_hw_texture_mgr.cpp │ │ ├── bstone_hw_texture_mgr.h │ │ ├── bstone_hw_video.cpp │ │ ├── bstone_hw_video.h │ │ ├── bstone_image_decoder.cpp │ │ ├── bstone_image_decoder.h │ │ ├── bstone_image_encoder.cpp │ │ ├── bstone_image_encoder.h │ │ ├── bstone_image_extractor.cpp │ │ ├── bstone_image_extractor.h │ │ ├── bstone_level_extractor.cpp │ │ ├── bstone_level_extractor.h │ │ ├── bstone_logger.cpp │ │ ├── bstone_logger.h │ │ ├── bstone_math.h │ │ ├── bstone_memory.cpp │ │ ├── bstone_memory.h │ │ ├── bstone_memory_binary_reader.cpp │ │ ├── bstone_memory_binary_reader.h │ │ ├── bstone_memory_pool_bitmap.cpp │ │ ├── bstone_memory_pool_bitmap.h │ │ ├── bstone_memory_resource.cpp │ │ ├── bstone_memory_resource.h │ │ ├── bstone_memory_stream.cpp │ │ ├── bstone_memory_stream.h │ │ ├── bstone_missing_sprite_64x64_image.cpp │ │ ├── bstone_missing_sprite_64x64_image.h │ │ ├── bstone_missing_wall_64x64_image.cpp │ │ ├── bstone_missing_wall_64x64_image.h │ │ ├── bstone_mod_value.h │ │ ├── bstone_mt_task_mgr.cpp │ │ ├── bstone_mt_task_mgr.h │ │ ├── bstone_nuked_opl3.cpp │ │ ├── bstone_nuked_opl3.h │ │ ├── bstone_oal_audio_mixer.cpp │ │ ├── bstone_oal_audio_mixer.h │ │ ├── bstone_oal_loader.cpp │ │ ├── bstone_oal_loader.h │ │ ├── bstone_oal_resource.cpp │ │ ├── bstone_oal_resource.h │ │ ├── bstone_oal_source.cpp │ │ ├── bstone_oal_source.h │ │ ├── bstone_oal_symbols.cpp │ │ ├── bstone_oal_symbols.h │ │ ├── bstone_offset_2d.cpp │ │ ├── bstone_offset_2d.h │ │ ├── bstone_opl3.cpp │ │ ├── bstone_opl3.h │ │ ├── bstone_page_mgr.cpp │ │ ├── bstone_page_mgr.h │ │ ├── bstone_pc_speaker_audio_decoder.cpp │ │ ├── bstone_pc_speaker_audio_decoder.h │ │ ├── bstone_pcm_audio_decoder.cpp │ │ ├── bstone_pcm_audio_decoder.h │ │ ├── bstone_platform.h │ │ ├── bstone_posix_string.cpp │ │ ├── bstone_posix_string.h │ │ ├── bstone_precompiled.h │ │ ├── bstone_process.cpp │ │ ├── bstone_process.h │ │ ├── bstone_process_posix.cpp │ │ ├── bstone_process_win32.cpp │ │ ├── bstone_ps_fizzle_fx.cpp │ │ ├── bstone_ps_fizzle_fx.h │ │ ├── bstone_r2_extent.h │ │ ├── bstone_r2_offset.h │ │ ├── bstone_r3r.cpp │ │ ├── bstone_r3r.h │ │ ├── bstone_r3r_buffer.cpp │ │ ├── bstone_r3r_buffer.h │ │ ├── bstone_r3r_cmd_buffer.cpp │ │ ├── bstone_r3r_cmd_buffer.h │ │ ├── bstone_r3r_limits.cpp │ │ ├── bstone_r3r_limits.h │ │ ├── bstone_r3r_mgr.cpp │ │ ├── bstone_r3r_mgr.h │ │ ├── bstone_r3r_r2_texture.cpp │ │ ├── bstone_r3r_r2_texture.h │ │ ├── bstone_r3r_sampler.cpp │ │ ├── bstone_r3r_sampler.h │ │ ├── bstone_r3r_shader.cpp │ │ ├── bstone_r3r_shader.h │ │ ├── bstone_r3r_shader_stage.cpp │ │ ├── bstone_r3r_shader_stage.h │ │ ├── bstone_r3r_shader_var.cpp │ │ ├── bstone_r3r_shader_var.h │ │ ├── bstone_r3r_tests.h │ │ ├── bstone_r3r_types.h │ │ ├── bstone_r3r_utils.cpp │ │ ├── bstone_r3r_utils.h │ │ ├── bstone_r3r_vertex_input.cpp │ │ ├── bstone_r3r_vertex_input.h │ │ ├── bstone_ref_values.h │ │ ├── bstone_renderer_type.h │ │ ├── bstone_rgb8.cpp │ │ ├── bstone_rgb8.h │ │ ├── bstone_rgb_palette.h │ │ ├── bstone_rlew_decoder.cpp │ │ ├── bstone_rlew_decoder.h │ │ ├── bstone_saved_game.cpp │ │ ├── bstone_saved_game.h │ │ ├── bstone_scope_exit.cpp │ │ ├── bstone_scope_exit.h │ │ ├── bstone_sha1.cpp │ │ ├── bstone_sha1.h │ │ ├── bstone_shared_library.cpp │ │ ├── bstone_shared_library.h │ │ ├── bstone_shared_library_posix.cpp │ │ ├── bstone_shared_library_win32.cpp │ │ ├── bstone_single_pool_resource.cpp │ │ ├── bstone_single_pool_resource.h │ │ ├── bstone_source_location.cpp │ │ ├── bstone_source_location.h │ │ ├── bstone_span.cpp │ │ ├── bstone_span.h │ │ ├── bstone_sprite.cpp │ │ ├── bstone_sprite.h │ │ ├── bstone_sprite_cache.cpp │ │ ├── bstone_sprite_cache.h │ │ ├── bstone_static_memory_stream.cpp │ │ ├── bstone_static_memory_stream.h │ │ ├── bstone_static_ro_memory_stream.cpp │ │ ├── bstone_static_ro_memory_stream.h │ │ ├── bstone_stb_image_decoder.cpp │ │ ├── bstone_stb_image_decoder.h │ │ ├── bstone_stb_image_encoder.cpp │ │ ├── bstone_stb_image_encoder.h │ │ ├── bstone_stb_image_utils.cpp │ │ ├── bstone_stb_image_utils.h │ │ ├── bstone_steam_content_path.cpp │ │ ├── bstone_stream.cpp │ │ ├── bstone_stream.h │ │ ├── bstone_string.cpp │ │ ├── bstone_string.h │ │ ├── bstone_string_helper.cpp │ │ ├── bstone_string_helper.h │ │ ├── bstone_string_view.cpp │ │ ├── bstone_string_view.h │ │ ├── bstone_string_view_hasher.h │ │ ├── bstone_sw_video.cpp │ │ ├── bstone_sw_video.h │ │ ├── bstone_sys_audio_mgr.cpp │ │ ├── bstone_sys_audio_mgr.h │ │ ├── bstone_sys_audio_mgr_null.cpp │ │ ├── bstone_sys_audio_mgr_null.h │ │ ├── bstone_sys_audio_mgr_sdl2.cpp │ │ ├── bstone_sys_audio_mgr_sdl2.h │ │ ├── bstone_sys_color.cpp │ │ ├── bstone_sys_color.h │ │ ├── bstone_sys_detail_sdl2.cpp │ │ ├── bstone_sys_detail_sdl2.h │ │ ├── bstone_sys_display_mode.cpp │ │ ├── bstone_sys_display_mode.h │ │ ├── bstone_sys_event.cpp │ │ ├── bstone_sys_event.h │ │ ├── bstone_sys_event_mgr.cpp │ │ ├── bstone_sys_event_mgr.h │ │ ├── bstone_sys_event_mgr_null.cpp │ │ ├── bstone_sys_event_mgr_null.h │ │ ├── bstone_sys_event_mgr_sdl2.cpp │ │ ├── bstone_sys_event_mgr_sdl2.h │ │ ├── bstone_sys_exception_sdl2.cpp │ │ ├── bstone_sys_exception_sdl2.h │ │ ├── bstone_sys_gl_context.cpp │ │ ├── bstone_sys_gl_context.h │ │ ├── bstone_sys_gl_context_attributes.cpp │ │ ├── bstone_sys_gl_context_attributes.h │ │ ├── bstone_sys_gl_context_profile.cpp │ │ ├── bstone_sys_gl_context_profile.h │ │ ├── bstone_sys_gl_context_sdl2.cpp │ │ ├── bstone_sys_gl_context_sdl2.h │ │ ├── bstone_sys_gl_current_context.cpp │ │ ├── bstone_sys_gl_current_context.h │ │ ├── bstone_sys_gl_current_context_sdl2.cpp │ │ ├── bstone_sys_gl_current_context_sdl2.h │ │ ├── bstone_sys_gl_symbol_resolver.cpp │ │ ├── bstone_sys_gl_symbol_resolver.h │ │ ├── bstone_sys_gl_symbol_resolver_sdl2.cpp │ │ ├── bstone_sys_gl_symbol_resolver_sdl2.h │ │ ├── bstone_sys_keyboard_key.cpp │ │ ├── bstone_sys_keyboard_key.h │ │ ├── bstone_sys_limits_sdl2.h │ │ ├── bstone_sys_logger.cpp │ │ ├── bstone_sys_logger.h │ │ ├── bstone_sys_message_box.cpp │ │ ├── bstone_sys_message_box.h │ │ ├── bstone_sys_message_box_sdl2.cpp │ │ ├── bstone_sys_mouse.cpp │ │ ├── bstone_sys_mouse.h │ │ ├── bstone_sys_mouse_mgr.cpp │ │ ├── bstone_sys_mouse_mgr.h │ │ ├── bstone_sys_mouse_mgr_sdl2.cpp │ │ ├── bstone_sys_mouse_mgr_sdl2.h │ │ ├── bstone_sys_pixel_format.cpp │ │ ├── bstone_sys_pixel_format.h │ │ ├── bstone_sys_polling_audio_device.cpp │ │ ├── bstone_sys_polling_audio_device.h │ │ ├── bstone_sys_polling_audio_device_sdl2.cpp │ │ ├── bstone_sys_polling_audio_device_sdl2.h │ │ ├── bstone_sys_rectangle.cpp │ │ ├── bstone_sys_rectangle.h │ │ ├── bstone_sys_renderer.cpp │ │ ├── bstone_sys_renderer.h │ │ ├── bstone_sys_renderer_sdl2.cpp │ │ ├── bstone_sys_renderer_sdl2.h │ │ ├── bstone_sys_sdl2_subsystem.cpp │ │ ├── bstone_sys_sdl2_subsystem.h │ │ ├── bstone_sys_special_path.cpp │ │ ├── bstone_sys_special_path.h │ │ ├── bstone_sys_special_path_sdl2.cpp │ │ ├── bstone_sys_swap_interval_type.cpp │ │ ├── bstone_sys_swap_interval_type.h │ │ ├── bstone_sys_system_mgr.cpp │ │ ├── bstone_sys_system_mgr.h │ │ ├── bstone_sys_system_mgr_sdl2.cpp │ │ ├── bstone_sys_texture.cpp │ │ ├── bstone_sys_texture.h │ │ ├── bstone_sys_texture_lock.cpp │ │ ├── bstone_sys_texture_lock.h │ │ ├── bstone_sys_texture_lock_sdl2.cpp │ │ ├── bstone_sys_texture_lock_sdl2.h │ │ ├── bstone_sys_texture_sdl2.cpp │ │ ├── bstone_sys_texture_sdl2.h │ │ ├── bstone_sys_video_mgr.cpp │ │ ├── bstone_sys_video_mgr.h │ │ ├── bstone_sys_video_mgr_null.cpp │ │ ├── bstone_sys_video_mgr_null.h │ │ ├── bstone_sys_video_mgr_sdl2.cpp │ │ ├── bstone_sys_video_mgr_sdl2.h │ │ ├── bstone_sys_window.cpp │ │ ├── bstone_sys_window.h │ │ ├── bstone_sys_window_mgr.cpp │ │ ├── bstone_sys_window_mgr.h │ │ ├── bstone_sys_window_mgr_sdl2.cpp │ │ ├── bstone_sys_window_mgr_sdl2.h │ │ ├── bstone_sys_window_rounded_corner_mgr.cpp │ │ ├── bstone_sys_window_rounded_corner_mgr.h │ │ ├── bstone_sys_window_rounded_corner_mgr_null.cpp │ │ ├── bstone_sys_window_rounded_corner_mgr_sdl2.cpp │ │ ├── bstone_sys_window_sdl2.cpp │ │ ├── bstone_sys_window_sdl2.h │ │ ├── bstone_sys_window_size.h │ │ ├── bstone_sys_window_utils_sdl2.cpp │ │ ├── bstone_sys_window_utils_sdl2.h │ │ ├── bstone_system_audio_mixer.cpp │ │ ├── bstone_system_audio_mixer.h │ │ ├── bstone_text_extractor.cpp │ │ ├── bstone_text_extractor.h │ │ ├── bstone_text_reader.cpp │ │ ├── bstone_text_reader.h │ │ ├── bstone_text_writer.cpp │ │ ├── bstone_text_writer.h │ │ ├── bstone_time.cpp │ │ ├── bstone_time.h │ │ ├── bstone_ts_auto_arena_resource.cpp │ │ ├── bstone_ts_auto_arena_resource.h │ │ ├── bstone_type_traits.h │ │ ├── bstone_unicode.cpp │ │ ├── bstone_unicode.h │ │ ├── bstone_unique_resource.cpp │ │ ├── bstone_unique_resource.h │ │ ├── bstone_utf.cpp │ │ ├── bstone_utf.h │ │ ├── bstone_utf16.cpp │ │ ├── bstone_utf16.h │ │ ├── bstone_utf8.cpp │ │ ├── bstone_utf8.h │ │ ├── bstone_utility.cpp │ │ ├── bstone_utility.h │ │ ├── bstone_uuid.cpp │ │ ├── bstone_uuid.h │ │ ├── bstone_uuid_unix.cpp │ │ ├── bstone_uuid_win32.cpp │ │ ├── bstone_version.cpp │ │ ├── bstone_version.h │ │ ├── bstone_version_.h.in │ │ ├── bstone_video.cpp │ │ ├── bstone_video.h │ │ ├── bstone_video_cvars.cpp │ │ ├── bstone_video_cvars.h │ │ ├── bstone_voice.h │ │ ├── bstone_voice_group.cpp │ │ ├── bstone_voice_group.h │ │ ├── bstone_win32_advapi32_symbols.cpp │ │ ├── bstone_win32_advapi32_symbols.h │ │ ├── bstone_win32_com.cpp │ │ ├── bstone_win32_com.h │ │ ├── bstone_win32_os_version.cpp │ │ ├── bstone_win32_os_version.h │ │ ├── bstone_win32_registry_key.cpp │ │ ├── bstone_win32_registry_key.h │ │ ├── bstone_win32_unique_resources.cpp │ │ ├── bstone_win32_unique_resources.h │ │ ├── bstone_win32_wstring.cpp │ │ ├── bstone_win32_wstring.h │ │ ├── bstone_zstring_view.cpp │ │ ├── bstone_zstring_view.h │ │ ├── bstone_zstring_view_hasher.h │ │ ├── colormap.cpp │ │ ├── d3_d2.cpp │ │ ├── d3_d2.h │ │ ├── d3_dr2.cpp │ │ ├── dosbox │ │ ├── COPYING │ │ ├── adlib.h │ │ ├── dbopl.cpp │ │ ├── dbopl.h │ │ ├── dosbox.h │ │ ├── hardware.h │ │ ├── inout.h │ │ ├── mixer.cpp │ │ ├── mixer.h │ │ ├── pic.h │ │ └── setup.h │ │ ├── gfxv.h │ │ ├── id_ca.cpp │ │ ├── id_ca.h │ │ ├── id_heads.h │ │ ├── id_in.cpp │ │ ├── id_in.h │ │ ├── id_sd.cpp │ │ ├── id_sd.h │ │ ├── id_us.cpp │ │ ├── id_us.h │ │ ├── id_us_1.cpp │ │ ├── id_vh.cpp │ │ ├── id_vh.h │ │ ├── id_vl.cpp │ │ ├── id_vl.h │ │ ├── jm_cio.h │ │ ├── jm_free.cpp │ │ ├── jm_io.cpp │ │ ├── jm_io.h │ │ ├── jm_lzh.cpp │ │ ├── jm_lzh.h │ │ ├── jm_tp.cpp │ │ ├── jm_tp.h │ │ ├── jm_vl.h │ │ ├── markhack.cpp │ │ ├── movie.cpp │ │ ├── movie.h │ │ ├── resources │ │ ├── src │ │ │ ├── LICENSE.txt │ │ │ ├── bstone_missing_sprite_64x64.xcf │ │ │ └── bstone_missing_wall_64x64.xcf │ │ └── win32 │ │ │ ├── bstone_icon.ico │ │ │ ├── bstone_win32.rc.in │ │ │ ├── bstone_win32_mingw.manifest │ │ │ ├── bstone_win32_msvc.manifest │ │ │ └── bstone_win32_rc.h │ │ ├── scale.cpp │ │ ├── stub.cpp │ │ └── vgapal.cpp ├── lib │ ├── khronos │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── KHR │ │ │ └── khrplatform.h │ ├── nuked_opl3 │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── bstone_changelog.txt │ │ ├── include │ │ │ └── opl3.h │ │ └── src │ │ │ ├── opl3.c │ │ │ └── opl3.cpp │ ├── openal_soft │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── include │ │ │ └── AL │ │ │ │ ├── al.h │ │ │ │ ├── alc.h │ │ │ │ ├── alext.h │ │ │ │ ├── efx-creative.h │ │ │ │ ├── efx-presets.h │ │ │ │ └── efx.h │ │ └── readme.txt │ ├── sdl2 │ │ ├── CMakeLists.txt │ │ ├── bstone_sdl2_changelog.md │ │ └── src │ │ │ ├── .clang-format │ │ │ ├── .editorconfig │ │ │ ├── .git-hash │ │ │ ├── .wikiheaders-options │ │ │ ├── Android.mk │ │ │ ├── BUGS.txt │ │ │ ├── CMakeLists.txt │ │ │ ├── CREDITS.txt │ │ │ ├── INSTALL.txt │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile.in │ │ │ ├── Makefile.minimal │ │ │ ├── Makefile.os2 │ │ │ ├── Makefile.pandora │ │ │ ├── Makefile.w32 │ │ │ ├── README-SDL.txt │ │ │ ├── README.md │ │ │ ├── REVISION.txt │ │ │ ├── SDL2.spec.in │ │ │ ├── SDL2Config.cmake.in │ │ │ ├── TODO.txt │ │ │ ├── VisualC-GDK │ │ │ ├── SDL.sln │ │ │ ├── SDL │ │ │ │ ├── SDL.vcxproj │ │ │ │ └── SDL.vcxproj.filters │ │ │ ├── SDLmain │ │ │ │ └── SDLmain.vcxproj │ │ │ ├── SDLtest │ │ │ │ └── SDLtest.vcxproj │ │ │ ├── clean.sh │ │ │ ├── logos │ │ │ │ ├── Logo100x100.png │ │ │ │ ├── Logo150x150.png │ │ │ │ ├── Logo44x44.png │ │ │ │ ├── Logo480x480.png │ │ │ │ └── SplashScreenImage.png │ │ │ ├── shaders │ │ │ │ ├── D3D12_PixelShader_Colors.hlsl │ │ │ │ ├── D3D12_PixelShader_NV12_BT601.hlsl │ │ │ │ ├── D3D12_PixelShader_NV12_BT709.hlsl │ │ │ │ ├── D3D12_PixelShader_NV12_JPEG.hlsl │ │ │ │ ├── D3D12_PixelShader_NV21_BT601.hlsl │ │ │ │ ├── D3D12_PixelShader_NV21_BT709.hlsl │ │ │ │ ├── D3D12_PixelShader_NV21_JPEG.hlsl │ │ │ │ ├── D3D12_PixelShader_Textures.hlsl │ │ │ │ ├── D3D12_PixelShader_YUV_BT601.hlsl │ │ │ │ ├── D3D12_PixelShader_YUV_BT709.hlsl │ │ │ │ ├── D3D12_PixelShader_YUV_JPEG.hlsl │ │ │ │ ├── D3D12_VertexShader.hlsl │ │ │ │ └── buildshaders.bat │ │ │ └── tests │ │ │ │ ├── testgamecontroller │ │ │ │ ├── PackageLayout.xml │ │ │ │ ├── testgamecontroller.vcxproj │ │ │ │ ├── testgamecontroller.vcxproj.filters │ │ │ │ ├── wingdk │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ ├── xboxone │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ └── xboxseries │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ ├── testgdk │ │ │ │ ├── PackageLayout.xml │ │ │ │ ├── src │ │ │ │ │ └── testgdk.cpp │ │ │ │ ├── testgdk.vcxproj │ │ │ │ ├── testgdk.vcxproj.filters │ │ │ │ ├── wingdk │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ ├── xboxone │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ └── xboxseries │ │ │ │ │ └── MicrosoftGame.config │ │ │ │ └── testsprite2 │ │ │ │ ├── PackageLayout.xml │ │ │ │ ├── testsprite2.vcxproj │ │ │ │ ├── testsprite2.vcxproj.filters │ │ │ │ ├── wingdk │ │ │ │ └── MicrosoftGame.config │ │ │ │ ├── xboxone │ │ │ │ └── MicrosoftGame.config │ │ │ │ └── xboxseries │ │ │ │ └── MicrosoftGame.config │ │ │ ├── VisualC-WinRT │ │ │ ├── SDL-UWP.sln │ │ │ ├── SDL-UWP.vcxproj │ │ │ └── SDL-UWP.vcxproj.filters │ │ │ ├── VisualC │ │ │ ├── SDL.sln │ │ │ ├── SDL │ │ │ │ ├── SDL.vcxproj │ │ │ │ └── SDL.vcxproj.filters │ │ │ ├── SDLmain │ │ │ │ └── SDLmain.vcxproj │ │ │ ├── SDLtest │ │ │ │ └── SDLtest.vcxproj │ │ │ ├── clean.sh │ │ │ ├── pkg-support │ │ │ │ └── cmake │ │ │ │ │ ├── sdl2-config-version.cmake │ │ │ │ │ └── sdl2-config.cmake │ │ │ ├── tests │ │ │ │ ├── checkkeys │ │ │ │ │ └── checkkeys.vcxproj │ │ │ │ ├── controllermap │ │ │ │ │ └── controllermap.vcxproj │ │ │ │ ├── loopwave │ │ │ │ │ └── loopwave.vcxproj │ │ │ │ ├── testatomic │ │ │ │ │ └── testatomic.vcxproj │ │ │ │ ├── testautomation │ │ │ │ │ └── testautomation.vcxproj │ │ │ │ ├── testdraw2 │ │ │ │ │ └── testdraw2.vcxproj │ │ │ │ ├── testfile │ │ │ │ │ └── testfile.vcxproj │ │ │ │ ├── testgamecontroller │ │ │ │ │ └── testgamecontroller.vcxproj │ │ │ │ ├── testgesture │ │ │ │ │ └── testgesture.vcxproj │ │ │ │ ├── testgl2 │ │ │ │ │ └── testgl2.vcxproj │ │ │ │ ├── testgles2 │ │ │ │ │ └── testgles2.vcxproj │ │ │ │ ├── testjoystick │ │ │ │ │ └── testjoystick.vcxproj │ │ │ │ ├── testoverlay2 │ │ │ │ │ └── testoverlay2.vcxproj │ │ │ │ ├── testplatform │ │ │ │ │ └── testplatform.vcxproj │ │ │ │ ├── testpower │ │ │ │ │ └── testpower.vcxproj │ │ │ │ ├── testrendertarget │ │ │ │ │ └── testrendertarget.vcxproj │ │ │ │ ├── testrumble │ │ │ │ │ └── testrumble.vcxproj │ │ │ │ ├── testscale │ │ │ │ │ └── testscale.vcxproj │ │ │ │ ├── testsensor │ │ │ │ │ └── testsensor.vcxproj │ │ │ │ ├── testshape │ │ │ │ │ └── testshape.vcxproj │ │ │ │ ├── testsprite2 │ │ │ │ │ └── testsprite2.vcxproj │ │ │ │ ├── testsurround │ │ │ │ │ └── testsurround.vcxproj │ │ │ │ ├── testvulkan │ │ │ │ │ └── testvulkan.vcxproj │ │ │ │ ├── testwm2 │ │ │ │ │ └── testwm2.vcxproj │ │ │ │ └── testyuv │ │ │ │ │ └── testyuv.vcxproj │ │ │ └── visualtest │ │ │ │ ├── unittest │ │ │ │ └── testquit │ │ │ │ │ └── testquit_VS2012.vcxproj │ │ │ │ └── visualtest_VS2012.vcxproj │ │ │ ├── WhatsNew.txt │ │ │ ├── Xcode-iOS │ │ │ └── Demos │ │ │ │ ├── Default.png │ │ │ │ ├── Demos.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── Icon.png │ │ │ │ ├── README │ │ │ │ ├── config.xcconfig │ │ │ │ ├── data │ │ │ │ ├── bitmapfont │ │ │ │ │ ├── kromasky_16x16.bmp │ │ │ │ │ └── license.txt │ │ │ │ ├── drums │ │ │ │ │ ├── ds_brush_snare.wav │ │ │ │ │ ├── ds_china.wav │ │ │ │ │ ├── ds_kick_big_amb.wav │ │ │ │ │ └── ds_loose_skin_mute.wav │ │ │ │ ├── icon.bmp │ │ │ │ ├── ship.bmp │ │ │ │ ├── space.bmp │ │ │ │ └── stroke.bmp │ │ │ │ ├── iOS Launch Screen.storyboard │ │ │ │ └── src │ │ │ │ ├── accelerometer.c │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── fireworks.c │ │ │ │ ├── happy.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── mixer.c │ │ │ │ ├── rectangles.c │ │ │ │ └── touch.c │ │ │ ├── Xcode │ │ │ ├── SDL │ │ │ │ ├── Info-Framework.plist │ │ │ │ ├── SDL.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── Framework-iOS.xcscheme │ │ │ │ │ │ └── xcFramework-iOS.xcscheme │ │ │ │ ├── SDL2 │ │ │ │ │ └── Info.plist │ │ │ │ └── pkg-support │ │ │ │ │ ├── SDL.info │ │ │ │ │ ├── resources │ │ │ │ │ ├── CMake │ │ │ │ │ │ ├── sdl2-config-version.cmake │ │ │ │ │ │ └── sdl2-config.cmake │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ └── SDL_DS_Store │ │ │ │ │ └── sdl_logo.pdf │ │ │ ├── SDLTest │ │ │ │ ├── SDLTest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── TestDropFile-Info.plist │ │ │ │ └── config.xcconfig │ │ │ └── XcodeDocSet │ │ │ │ └── Doxyfile │ │ │ ├── acinclude │ │ │ ├── ac_check_define.m4 │ │ │ ├── alsa.m4 │ │ │ ├── ax_check_compiler_flags.m4 │ │ │ ├── ax_compute_relative_paths.m4 │ │ │ ├── ax_gcc_archflag.m4 │ │ │ ├── ax_gcc_x86_cpuid.m4 │ │ │ ├── ax_normalize_path.m4 │ │ │ ├── ax_recursive_eval.m4 │ │ │ ├── esd.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ └── pkg.m4 │ │ │ ├── android-project-ant │ │ │ ├── AndroidManifest.xml │ │ │ ├── ant.properties │ │ │ ├── build.properties │ │ │ ├── build.xml │ │ │ ├── default.properties │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── src │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── Android_static.mk │ │ │ ├── proguard-project.txt │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── libsdl │ │ │ │ └── app │ │ │ │ ├── HIDDevice.java │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ ├── SDL.java │ │ │ │ ├── SDLActivity.java │ │ │ │ ├── SDLAudioManager.java │ │ │ │ ├── SDLControllerManager.java │ │ │ │ └── SDLSurface.java │ │ │ ├── android-project │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── Application.mk │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── src │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── libsdl │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── HIDDevice.java │ │ │ │ │ │ ├── HIDDeviceBLESteamController.java │ │ │ │ │ │ ├── HIDDeviceManager.java │ │ │ │ │ │ ├── HIDDeviceUSB.java │ │ │ │ │ │ ├── SDL.java │ │ │ │ │ │ ├── SDLActivity.java │ │ │ │ │ │ ├── SDLAudioManager.java │ │ │ │ │ │ ├── SDLControllerManager.java │ │ │ │ │ │ └── SDLSurface.java │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ │ ├── autogen.sh │ │ │ ├── build-scripts │ │ │ ├── android-prefab.sh │ │ │ ├── androidbuild.sh │ │ │ ├── androidbuildlibs.sh │ │ │ ├── build-release.py │ │ │ ├── checker-buildbot.sh │ │ │ ├── clang++-fat.sh │ │ │ ├── clang-fat.sh │ │ │ ├── clang-format-src.sh │ │ │ ├── cmake-toolchain-mingw64-i686.cmake │ │ │ ├── cmake-toolchain-mingw64-x86_64.cmake │ │ │ ├── codechecker-buildbot.sh │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── create-release.py │ │ │ ├── emscripten-buildbot.sh │ │ │ ├── fnsince.pl │ │ │ ├── gen_audio_channel_conversion.c │ │ │ ├── gen_audio_resampler_filter.c │ │ │ ├── git-pre-push-hook.pl │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ ├── mkinstalldirs │ │ │ ├── nacl-buildbot.sh │ │ │ ├── naclbuild.sh │ │ │ ├── raspberrypi-buildbot.sh │ │ │ ├── release-info.json │ │ │ ├── setup-gdk-desktop.py │ │ │ ├── showrev.sh │ │ │ ├── strip_fPIC.sh │ │ │ ├── test-versioning.sh │ │ │ ├── update-copyright.sh │ │ │ ├── update-version.sh │ │ │ ├── updaterev.sh │ │ │ ├── wikiheaders.pl │ │ │ └── windows-buildbot-zipper.bat │ │ │ ├── cmake │ │ │ ├── CheckCPUArchitecture.cmake │ │ │ ├── macros.cmake │ │ │ ├── sdlchecks.cmake │ │ │ ├── sdlfind.cmake │ │ │ ├── sdlplatform.cmake │ │ │ └── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── jni │ │ │ │ └── Android.mk │ │ │ │ ├── main.swift │ │ │ │ ├── main_cli.c │ │ │ │ ├── main_gui.c │ │ │ │ ├── main_lib.c │ │ │ │ ├── sdltest.c │ │ │ │ ├── swift │ │ │ │ ├── module.modulemap │ │ │ │ └── shim.h │ │ │ │ ├── test_pkgconfig.sh │ │ │ │ └── test_sdlconfig.sh │ │ │ ├── cmake_uninstall.cmake.in │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── docs │ │ │ ├── CONTRIBUTING.md │ │ │ ├── README-android.md │ │ │ ├── README-cmake.md │ │ │ ├── README-directfb.md │ │ │ ├── README-dynapi.md │ │ │ ├── README-emscripten.md │ │ │ ├── README-gdk.md │ │ │ ├── README-gesture.md │ │ │ ├── README-git.md │ │ │ ├── README-hg.md │ │ │ ├── README-ios.md │ │ │ ├── README-kmsbsd.md │ │ │ ├── README-linux.md │ │ │ ├── README-macos.md │ │ │ ├── README-n3ds.md │ │ │ ├── README-nacl.md │ │ │ ├── README-ngage.md │ │ │ ├── README-os2.md │ │ │ ├── README-pandora.md │ │ │ ├── README-platforms.md │ │ │ ├── README-porting.md │ │ │ ├── README-ps2.md │ │ │ ├── README-psp.md │ │ │ ├── README-raspberrypi.md │ │ │ ├── README-riscos.md │ │ │ ├── README-touch.md │ │ │ ├── README-versions.md │ │ │ ├── README-visualc.md │ │ │ ├── README-vita.md │ │ │ ├── README-wince.md │ │ │ ├── README-windows.md │ │ │ ├── README-winrt.md │ │ │ ├── README.md │ │ │ ├── doxyfile │ │ │ └── release_checklist.md │ │ │ ├── include │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config.h.cmake │ │ │ ├── SDL_config.h.in │ │ │ ├── SDL_config_android.h │ │ │ ├── SDL_config_emscripten.h │ │ │ ├── SDL_config_iphoneos.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_config_minimal.h │ │ │ ├── SDL_config_ngage.h │ │ │ ├── SDL_config_os2.h │ │ │ ├── SDL_config_pandora.h │ │ │ ├── SDL_config_windows.h │ │ │ ├── SDL_config_wingdk.h │ │ │ ├── SDL_config_winrt.h │ │ │ ├── SDL_config_xbox.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_egl.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_guid.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hidapi.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_revision.h.cmake │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_test.h │ │ │ ├── SDL_test_assert.h │ │ │ ├── SDL_test_common.h │ │ │ ├── SDL_test_compare.h │ │ │ ├── SDL_test_crc32.h │ │ │ ├── SDL_test_font.h │ │ │ ├── SDL_test_fuzzer.h │ │ │ ├── SDL_test_harness.h │ │ │ ├── SDL_test_images.h │ │ │ ├── SDL_test_log.h │ │ │ ├── SDL_test_md5.h │ │ │ ├── SDL_test_memory.h │ │ │ ├── SDL_test_random.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ │ ├── mingw │ │ │ └── pkg-support │ │ │ │ ├── INSTALL.txt │ │ │ │ ├── Makefile │ │ │ │ └── cmake │ │ │ │ ├── sdl2-config-version.cmake │ │ │ │ └── sdl2-config.cmake │ │ │ ├── sdl2-config-version.cmake.in │ │ │ ├── sdl2-config.cmake.in │ │ │ ├── sdl2-config.in │ │ │ ├── sdl2.m4 │ │ │ ├── sdl2.pc.in │ │ │ ├── src │ │ │ ├── SDL.c │ │ │ ├── SDL_assert.c │ │ │ ├── SDL_assert_c.h │ │ │ ├── SDL_dataqueue.c │ │ │ ├── SDL_dataqueue.h │ │ │ ├── SDL_error.c │ │ │ ├── SDL_error_c.h │ │ │ ├── SDL_guid.c │ │ │ ├── SDL_hints.c │ │ │ ├── SDL_hints_c.h │ │ │ ├── SDL_internal.h │ │ │ ├── SDL_list.c │ │ │ ├── SDL_list.h │ │ │ ├── SDL_log.c │ │ │ ├── SDL_log_c.h │ │ │ ├── SDL_utils.c │ │ │ ├── SDL_utils_c.h │ │ │ ├── atomic │ │ │ │ ├── SDL_atomic.c │ │ │ │ └── SDL_spinlock.c │ │ │ ├── audio │ │ │ │ ├── SDL_audio.c │ │ │ │ ├── SDL_audio_c.h │ │ │ │ ├── SDL_audio_channel_converters.h │ │ │ │ ├── SDL_audio_resampler_filter.h │ │ │ │ ├── SDL_audiocvt.c │ │ │ │ ├── SDL_audiodev.c │ │ │ │ ├── SDL_audiodev_c.h │ │ │ │ ├── SDL_audiotypecvt.c │ │ │ │ ├── SDL_mixer.c │ │ │ │ ├── SDL_sysaudio.h │ │ │ │ ├── SDL_wave.c │ │ │ │ ├── SDL_wave.h │ │ │ │ ├── aaudio │ │ │ │ │ ├── SDL_aaudio.c │ │ │ │ │ ├── SDL_aaudio.h │ │ │ │ │ └── SDL_aaudiofuncs.h │ │ │ │ ├── alsa │ │ │ │ │ ├── SDL_alsa_audio.c │ │ │ │ │ └── SDL_alsa_audio.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_androidaudio.c │ │ │ │ │ └── SDL_androidaudio.h │ │ │ │ ├── arts │ │ │ │ │ ├── SDL_artsaudio.c │ │ │ │ │ └── SDL_artsaudio.h │ │ │ │ ├── coreaudio │ │ │ │ │ ├── SDL_coreaudio.h │ │ │ │ │ └── SDL_coreaudio.m │ │ │ │ ├── directsound │ │ │ │ │ ├── SDL_directsound.c │ │ │ │ │ └── SDL_directsound.h │ │ │ │ ├── disk │ │ │ │ │ ├── SDL_diskaudio.c │ │ │ │ │ └── SDL_diskaudio.h │ │ │ │ ├── dsp │ │ │ │ │ ├── SDL_dspaudio.c │ │ │ │ │ └── SDL_dspaudio.h │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_dummyaudio.c │ │ │ │ │ └── SDL_dummyaudio.h │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_emscriptenaudio.c │ │ │ │ │ └── SDL_emscriptenaudio.h │ │ │ │ ├── esd │ │ │ │ │ ├── SDL_esdaudio.c │ │ │ │ │ └── SDL_esdaudio.h │ │ │ │ ├── fusionsound │ │ │ │ │ ├── SDL_fsaudio.c │ │ │ │ │ └── SDL_fsaudio.h │ │ │ │ ├── haiku │ │ │ │ │ ├── SDL_haikuaudio.cc │ │ │ │ │ └── SDL_haikuaudio.h │ │ │ │ ├── jack │ │ │ │ │ ├── SDL_jackaudio.c │ │ │ │ │ └── SDL_jackaudio.h │ │ │ │ ├── n3ds │ │ │ │ │ ├── SDL_n3dsaudio.c │ │ │ │ │ └── SDL_n3dsaudio.h │ │ │ │ ├── nacl │ │ │ │ │ ├── SDL_naclaudio.c │ │ │ │ │ └── SDL_naclaudio.h │ │ │ │ ├── nas │ │ │ │ │ ├── SDL_nasaudio.c │ │ │ │ │ └── SDL_nasaudio.h │ │ │ │ ├── netbsd │ │ │ │ │ ├── SDL_netbsdaudio.c │ │ │ │ │ └── SDL_netbsdaudio.h │ │ │ │ ├── openslES │ │ │ │ │ ├── SDL_openslES.c │ │ │ │ │ └── SDL_openslES.h │ │ │ │ ├── os2 │ │ │ │ │ ├── SDL_os2audio.c │ │ │ │ │ └── SDL_os2audio.h │ │ │ │ ├── paudio │ │ │ │ │ ├── SDL_paudio.c │ │ │ │ │ └── SDL_paudio.h │ │ │ │ ├── pipewire │ │ │ │ │ ├── SDL_pipewire.c │ │ │ │ │ └── SDL_pipewire.h │ │ │ │ ├── ps2 │ │ │ │ │ ├── SDL_ps2audio.c │ │ │ │ │ └── SDL_ps2audio.h │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_pspaudio.c │ │ │ │ │ └── SDL_pspaudio.h │ │ │ │ ├── pulseaudio │ │ │ │ │ ├── SDL_pulseaudio.c │ │ │ │ │ └── SDL_pulseaudio.h │ │ │ │ ├── qsa │ │ │ │ │ ├── SDL_qsa_audio.c │ │ │ │ │ └── SDL_qsa_audio.h │ │ │ │ ├── sndio │ │ │ │ │ ├── SDL_sndioaudio.c │ │ │ │ │ └── SDL_sndioaudio.h │ │ │ │ ├── sun │ │ │ │ │ ├── SDL_sunaudio.c │ │ │ │ │ └── SDL_sunaudio.h │ │ │ │ ├── vita │ │ │ │ │ ├── SDL_vitaaudio.c │ │ │ │ │ └── SDL_vitaaudio.h │ │ │ │ ├── wasapi │ │ │ │ │ ├── SDL_wasapi.c │ │ │ │ │ ├── SDL_wasapi.h │ │ │ │ │ ├── SDL_wasapi_win32.c │ │ │ │ │ └── SDL_wasapi_winrt.cpp │ │ │ │ └── winmm │ │ │ │ │ ├── SDL_winmm.c │ │ │ │ │ └── SDL_winmm.h │ │ │ ├── core │ │ │ │ ├── android │ │ │ │ │ ├── SDL_android.c │ │ │ │ │ └── SDL_android.h │ │ │ │ ├── freebsd │ │ │ │ │ ├── SDL_evdev_kbd_default_keyaccmap.h │ │ │ │ │ └── SDL_evdev_kbd_freebsd.c │ │ │ │ ├── gdk │ │ │ │ │ ├── SDL_gdk.cpp │ │ │ │ │ └── SDL_gdk.h │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_dbus.c │ │ │ │ │ ├── SDL_dbus.h │ │ │ │ │ ├── SDL_evdev.c │ │ │ │ │ ├── SDL_evdev.h │ │ │ │ │ ├── SDL_evdev_capabilities.c │ │ │ │ │ ├── SDL_evdev_capabilities.h │ │ │ │ │ ├── SDL_evdev_kbd.c │ │ │ │ │ ├── SDL_evdev_kbd.h │ │ │ │ │ ├── SDL_evdev_kbd_default_accents.h │ │ │ │ │ ├── SDL_evdev_kbd_default_keymap.h │ │ │ │ │ ├── SDL_fcitx.c │ │ │ │ │ ├── SDL_fcitx.h │ │ │ │ │ ├── SDL_ibus.c │ │ │ │ │ ├── SDL_ibus.h │ │ │ │ │ ├── SDL_ime.c │ │ │ │ │ ├── SDL_ime.h │ │ │ │ │ ├── SDL_sandbox.c │ │ │ │ │ ├── SDL_sandbox.h │ │ │ │ │ ├── SDL_threadprio.c │ │ │ │ │ ├── SDL_udev.c │ │ │ │ │ └── SDL_udev.h │ │ │ │ ├── openbsd │ │ │ │ │ ├── SDL_wscons.h │ │ │ │ │ ├── SDL_wscons_kbd.c │ │ │ │ │ └── SDL_wscons_mouse.c │ │ │ │ ├── os2 │ │ │ │ │ ├── SDL_os2.c │ │ │ │ │ ├── SDL_os2.h │ │ │ │ │ ├── geniconv │ │ │ │ │ │ ├── geniconv.c │ │ │ │ │ │ ├── geniconv.h │ │ │ │ │ │ ├── iconv.h │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ ├── os2cp.c │ │ │ │ │ │ ├── os2cp.h │ │ │ │ │ │ ├── os2iconv.c │ │ │ │ │ │ ├── sys2utf8.c │ │ │ │ │ │ └── test.c │ │ │ │ │ └── iconv2.lbc │ │ │ │ ├── unix │ │ │ │ │ ├── SDL_poll.c │ │ │ │ │ └── SDL_poll.h │ │ │ │ ├── windows │ │ │ │ │ ├── SDL_directx.h │ │ │ │ │ ├── SDL_hid.c │ │ │ │ │ ├── SDL_hid.h │ │ │ │ │ ├── SDL_immdevice.c │ │ │ │ │ ├── SDL_immdevice.h │ │ │ │ │ ├── SDL_windows.c │ │ │ │ │ ├── SDL_windows.h │ │ │ │ │ ├── SDL_xinput.c │ │ │ │ │ └── SDL_xinput.h │ │ │ │ └── winrt │ │ │ │ │ ├── SDL_winrtapp_common.cpp │ │ │ │ │ ├── SDL_winrtapp_common.h │ │ │ │ │ ├── SDL_winrtapp_direct3d.cpp │ │ │ │ │ ├── SDL_winrtapp_direct3d.h │ │ │ │ │ ├── SDL_winrtapp_xaml.cpp │ │ │ │ │ └── SDL_winrtapp_xaml.h │ │ │ ├── cpuinfo │ │ │ │ └── SDL_cpuinfo.c │ │ │ ├── dynapi │ │ │ │ ├── SDL2.exports │ │ │ │ ├── SDL_dynapi.c │ │ │ │ ├── SDL_dynapi.h │ │ │ │ ├── SDL_dynapi_overrides.h │ │ │ │ ├── SDL_dynapi_procs.h │ │ │ │ └── gendynapi.pl │ │ │ ├── events │ │ │ │ ├── SDL_clipboardevents.c │ │ │ │ ├── SDL_clipboardevents_c.h │ │ │ │ ├── SDL_displayevents.c │ │ │ │ ├── SDL_displayevents_c.h │ │ │ │ ├── SDL_dropevents.c │ │ │ │ ├── SDL_dropevents_c.h │ │ │ │ ├── SDL_events.c │ │ │ │ ├── SDL_events_c.h │ │ │ │ ├── SDL_gesture.c │ │ │ │ ├── SDL_gesture_c.h │ │ │ │ ├── SDL_keyboard.c │ │ │ │ ├── SDL_keyboard_c.h │ │ │ │ ├── SDL_keysym_to_scancode.c │ │ │ │ ├── SDL_keysym_to_scancode_c.h │ │ │ │ ├── SDL_mouse.c │ │ │ │ ├── SDL_mouse_c.h │ │ │ │ ├── SDL_quit.c │ │ │ │ ├── SDL_scancode_tables.c │ │ │ │ ├── SDL_scancode_tables_c.h │ │ │ │ ├── SDL_touch.c │ │ │ │ ├── SDL_touch_c.h │ │ │ │ ├── SDL_windowevents.c │ │ │ │ ├── SDL_windowevents_c.h │ │ │ │ ├── blank_cursor.h │ │ │ │ ├── default_cursor.h │ │ │ │ ├── imKStoUCS.c │ │ │ │ ├── imKStoUCS.h │ │ │ │ ├── scancodes_ascii.h │ │ │ │ ├── scancodes_darwin.h │ │ │ │ ├── scancodes_linux.h │ │ │ │ ├── scancodes_windows.h │ │ │ │ └── scancodes_xfree86.h │ │ │ ├── file │ │ │ │ ├── SDL_rwops.c │ │ │ │ ├── cocoa │ │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ │ │ └── n3ds │ │ │ │ │ ├── SDL_rwopsromfs.c │ │ │ │ │ └── SDL_rwopsromfs.h │ │ │ ├── filesystem │ │ │ │ ├── android │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── cocoa │ │ │ │ │ └── SDL_sysfilesystem.m │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── gdk │ │ │ │ │ └── SDL_sysfilesystem.cpp │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── nacl │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── riscos │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_sysfilesystem.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_sysfilesystem.cpp │ │ │ ├── haptic │ │ │ │ ├── SDL_haptic.c │ │ │ │ ├── SDL_haptic_c.h │ │ │ │ ├── SDL_syshaptic.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ │ └── SDL_syshaptic_c.h │ │ │ │ ├── darwin │ │ │ │ │ ├── SDL_syshaptic.c │ │ │ │ │ └── SDL_syshaptic_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ ├── linux │ │ │ │ │ └── SDL_syshaptic.c │ │ │ │ └── windows │ │ │ │ │ ├── SDL_dinputhaptic.c │ │ │ │ │ ├── SDL_dinputhaptic_c.h │ │ │ │ │ ├── SDL_windowshaptic.c │ │ │ │ │ ├── SDL_windowshaptic_c.h │ │ │ │ │ ├── SDL_xinputhaptic.c │ │ │ │ │ └── SDL_xinputhaptic_c.h │ │ │ ├── hidapi │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── HACKING.txt │ │ │ │ ├── LICENSE-bsd.txt │ │ │ │ ├── LICENSE-gpl3.txt │ │ │ │ ├── LICENSE-orig.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.txt │ │ │ │ ├── SDL_hidapi.c │ │ │ │ ├── SDL_hidapi_c.h │ │ │ │ ├── android │ │ │ │ │ ├── hid.cpp │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── Application.mk │ │ │ │ │ └── project.properties │ │ │ │ ├── bootstrap │ │ │ │ ├── configure.ac │ │ │ │ ├── doxygen │ │ │ │ │ └── Doxyfile │ │ │ │ ├── hidapi │ │ │ │ │ └── hidapi.h │ │ │ │ ├── hidtest │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── hidtest.cpp │ │ │ │ ├── ios │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── hid.m │ │ │ │ ├── libusb │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.freebsd │ │ │ │ │ ├── Makefile.linux │ │ │ │ │ ├── hid.c │ │ │ │ │ └── hidusb.cpp │ │ │ │ ├── linux │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── hid.c │ │ │ │ │ └── hidraw.cpp │ │ │ │ ├── m4 │ │ │ │ │ ├── ax_pthread.m4 │ │ │ │ │ └── pkg.m4 │ │ │ │ ├── mac │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ └── hid.c │ │ │ │ ├── pc │ │ │ │ │ ├── hidapi-hidraw.pc.in │ │ │ │ │ ├── hidapi-libusb.pc.in │ │ │ │ │ └── hidapi.pc.in │ │ │ │ ├── testgui │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.freebsd │ │ │ │ │ ├── Makefile.linux │ │ │ │ │ ├── Makefile.mac │ │ │ │ │ ├── Makefile.mingw │ │ │ │ │ ├── TestGUI.app.in │ │ │ │ │ │ └── Contents │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ │ └── Signal11.icns │ │ │ │ │ ├── copy_to_bundle.sh │ │ │ │ │ ├── mac_support.cpp │ │ │ │ │ ├── mac_support.h │ │ │ │ │ ├── mac_support_cocoa.m │ │ │ │ │ ├── start.sh │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── testgui.sln │ │ │ │ │ └── testgui.vcproj │ │ │ │ ├── udev │ │ │ │ │ └── 99-hid.rules │ │ │ │ └── windows │ │ │ │ │ ├── Makefile-manual │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.mingw │ │ │ │ │ ├── ddk_build │ │ │ │ │ ├── hidapi.def │ │ │ │ │ ├── makefile │ │ │ │ │ └── sources │ │ │ │ │ ├── hid.c │ │ │ │ │ ├── hidapi.sln │ │ │ │ │ ├── hidapi.vcproj │ │ │ │ │ └── hidtest.vcproj │ │ │ ├── joystick │ │ │ │ ├── SDL_gamecontroller.c │ │ │ │ ├── SDL_gamecontrollerdb.h │ │ │ │ ├── SDL_joystick.c │ │ │ │ ├── SDL_joystick_c.h │ │ │ │ ├── SDL_steam_virtual_gamepad.c │ │ │ │ ├── SDL_steam_virtual_gamepad.h │ │ │ │ ├── SDL_sysjoystick.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── bsd │ │ │ │ │ └── SDL_bsdjoystick.c │ │ │ │ ├── check_8bitdo.sh │ │ │ │ ├── controller_list.h │ │ │ │ ├── controller_type.c │ │ │ │ ├── controller_type.h │ │ │ │ ├── darwin │ │ │ │ │ ├── SDL_iokitjoystick.c │ │ │ │ │ └── SDL_iokitjoystick_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── emscripten │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_haikujoystick.cc │ │ │ │ ├── hidapi │ │ │ │ │ ├── SDL_hidapi_combined.c │ │ │ │ │ ├── SDL_hidapi_gamecube.c │ │ │ │ │ ├── SDL_hidapi_luna.c │ │ │ │ │ ├── SDL_hidapi_nintendo.h │ │ │ │ │ ├── SDL_hidapi_ps3.c │ │ │ │ │ ├── SDL_hidapi_ps4.c │ │ │ │ │ ├── SDL_hidapi_ps5.c │ │ │ │ │ ├── SDL_hidapi_rumble.c │ │ │ │ │ ├── SDL_hidapi_rumble.h │ │ │ │ │ ├── SDL_hidapi_shield.c │ │ │ │ │ ├── SDL_hidapi_stadia.c │ │ │ │ │ ├── SDL_hidapi_steam.c │ │ │ │ │ ├── SDL_hidapi_steamdeck.c │ │ │ │ │ ├── SDL_hidapi_switch.c │ │ │ │ │ ├── SDL_hidapi_wii.c │ │ │ │ │ ├── SDL_hidapi_xbox360.c │ │ │ │ │ ├── SDL_hidapi_xbox360w.c │ │ │ │ │ ├── SDL_hidapi_xboxone.c │ │ │ │ │ ├── SDL_hidapijoystick.c │ │ │ │ │ ├── SDL_hidapijoystick_c.h │ │ │ │ │ └── steam │ │ │ │ │ │ ├── controller_constants.h │ │ │ │ │ │ └── controller_structs.h │ │ │ │ ├── iphoneos │ │ │ │ │ ├── SDL_mfijoystick.m │ │ │ │ │ └── SDL_mfijoystick_c.h │ │ │ │ ├── linux │ │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_os2joystick.c │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ ├── sort_controllers.py │ │ │ │ ├── steam │ │ │ │ │ ├── SDL_steamcontroller.c │ │ │ │ │ └── SDL_steamcontroller.h │ │ │ │ ├── usb_ids.h │ │ │ │ ├── virtual │ │ │ │ │ ├── SDL_virtualjoystick.c │ │ │ │ │ └── SDL_virtualjoystick_c.h │ │ │ │ ├── vita │ │ │ │ │ └── SDL_sysjoystick.c │ │ │ │ └── windows │ │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ │ ├── SDL_rawinputjoystick.c │ │ │ │ │ ├── SDL_rawinputjoystick_c.h │ │ │ │ │ ├── SDL_windows_gaming_input.c │ │ │ │ │ ├── SDL_windowsjoystick.c │ │ │ │ │ ├── SDL_windowsjoystick_c.h │ │ │ │ │ ├── SDL_xinputjoystick.c │ │ │ │ │ └── SDL_xinputjoystick_c.h │ │ │ ├── libm │ │ │ │ ├── e_atan2.c │ │ │ │ ├── e_exp.c │ │ │ │ ├── e_fmod.c │ │ │ │ ├── e_log.c │ │ │ │ ├── e_log10.c │ │ │ │ ├── e_pow.c │ │ │ │ ├── e_rem_pio2.c │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── k_cos.c │ │ │ │ ├── k_rem_pio2.c │ │ │ │ ├── k_sin.c │ │ │ │ ├── k_tan.c │ │ │ │ ├── math_libm.h │ │ │ │ ├── math_private.h │ │ │ │ ├── s_atan.c │ │ │ │ ├── s_copysign.c │ │ │ │ ├── s_cos.c │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_scalbn.c │ │ │ │ ├── s_sin.c │ │ │ │ └── s_tan.c │ │ │ ├── loadso │ │ │ │ ├── dlopen │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_sysloadso.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_sysloadso.c │ │ │ ├── locale │ │ │ │ ├── SDL_locale.c │ │ │ │ ├── SDL_syslocale.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_syslocale.cc │ │ │ │ ├── macosx │ │ │ │ │ └── SDL_syslocale.m │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_syslocale.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_syslocale.c │ │ │ ├── main │ │ │ │ ├── android │ │ │ │ │ └── SDL_android_main.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_dummy_main.c │ │ │ │ ├── gdk │ │ │ │ │ └── SDL_gdk_main.c │ │ │ │ ├── haiku │ │ │ │ │ ├── SDL_BApp.h │ │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ │ └── SDL_BeApp.h │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_n3ds_main.c │ │ │ │ ├── nacl │ │ │ │ │ └── SDL_nacl_main.c │ │ │ │ ├── ngage │ │ │ │ │ └── SDL_ngage_main.cpp │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_ps2_main.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_psp_main.c │ │ │ │ ├── uikit │ │ │ │ │ └── SDL_uikit_main.c │ │ │ │ ├── windows │ │ │ │ │ ├── SDL_windows_main.c │ │ │ │ │ └── version.rc │ │ │ │ └── winrt │ │ │ │ │ ├── SDL2-WinRTResource_BlankCursor.cur │ │ │ │ │ ├── SDL2-WinRTResources.rc │ │ │ │ │ └── SDL_winrt_main_NonXAML.cpp │ │ │ ├── misc │ │ │ │ ├── SDL_sysurl.h │ │ │ │ ├── SDL_url.c │ │ │ │ ├── android │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_sysurl.cc │ │ │ │ ├── ios │ │ │ │ │ └── SDL_sysurl.m │ │ │ │ ├── macosx │ │ │ │ │ └── SDL_sysurl.m │ │ │ │ ├── riscos │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_sysurl.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_sysurl.cpp │ │ │ ├── power │ │ │ │ ├── SDL_power.c │ │ │ │ ├── SDL_syspower.h │ │ │ │ ├── android │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── emscripten │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── linux │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── macosx │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── uikit │ │ │ │ │ ├── SDL_syspower.h │ │ │ │ │ └── SDL_syspower.m │ │ │ │ ├── vita │ │ │ │ │ └── SDL_syspower.c │ │ │ │ ├── windows │ │ │ │ │ └── SDL_syspower.c │ │ │ │ └── winrt │ │ │ │ │ └── SDL_syspower.cpp │ │ │ ├── render │ │ │ │ ├── SDL_d3dmath.c │ │ │ │ ├── SDL_d3dmath.h │ │ │ │ ├── SDL_render.c │ │ │ │ ├── SDL_sysrender.h │ │ │ │ ├── SDL_yuv_sw.c │ │ │ │ ├── SDL_yuv_sw_c.h │ │ │ │ ├── direct3d │ │ │ │ │ ├── SDL_render_d3d.c │ │ │ │ │ ├── SDL_shaders_d3d.c │ │ │ │ │ └── SDL_shaders_d3d.h │ │ │ │ ├── direct3d11 │ │ │ │ │ ├── SDL_render_d3d11.c │ │ │ │ │ ├── SDL_render_winrt.cpp │ │ │ │ │ ├── SDL_render_winrt.h │ │ │ │ │ ├── SDL_shaders_d3d11.c │ │ │ │ │ └── SDL_shaders_d3d11.h │ │ │ │ ├── direct3d12 │ │ │ │ │ ├── SDL_render_d3d12.c │ │ │ │ │ ├── SDL_render_d3d12_xbox.cpp │ │ │ │ │ ├── SDL_render_d3d12_xbox.h │ │ │ │ │ ├── SDL_shaders_d3d12.c │ │ │ │ │ ├── SDL_shaders_d3d12.h │ │ │ │ │ ├── SDL_shaders_d3d12_xboxone.cpp │ │ │ │ │ └── SDL_shaders_d3d12_xboxseries.cpp │ │ │ │ ├── metal │ │ │ │ │ ├── SDL_render_metal.m │ │ │ │ │ ├── SDL_shaders_metal.metal │ │ │ │ │ ├── SDL_shaders_metal_ios.h │ │ │ │ │ ├── SDL_shaders_metal_iphonesimulator.h │ │ │ │ │ ├── SDL_shaders_metal_osx.h │ │ │ │ │ ├── SDL_shaders_metal_tvos.h │ │ │ │ │ ├── SDL_shaders_metal_tvsimulator.h │ │ │ │ │ └── build-metal-shaders.sh │ │ │ │ ├── opengl │ │ │ │ │ ├── SDL_glfuncs.h │ │ │ │ │ ├── SDL_render_gl.c │ │ │ │ │ ├── SDL_shaders_gl.c │ │ │ │ │ └── SDL_shaders_gl.h │ │ │ │ ├── opengles │ │ │ │ │ ├── SDL_glesfuncs.h │ │ │ │ │ └── SDL_render_gles.c │ │ │ │ ├── opengles2 │ │ │ │ │ ├── SDL_gles2funcs.h │ │ │ │ │ ├── SDL_render_gles2.c │ │ │ │ │ ├── SDL_shaders_gles2.c │ │ │ │ │ └── SDL_shaders_gles2.h │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_render_ps2.c │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_render_psp.c │ │ │ │ │ └── SDL_render_psp.h │ │ │ │ ├── software │ │ │ │ │ ├── SDL_blendfillrect.c │ │ │ │ │ ├── SDL_blendfillrect.h │ │ │ │ │ ├── SDL_blendline.c │ │ │ │ │ ├── SDL_blendline.h │ │ │ │ │ ├── SDL_blendpoint.c │ │ │ │ │ ├── SDL_blendpoint.h │ │ │ │ │ ├── SDL_draw.h │ │ │ │ │ ├── SDL_drawline.c │ │ │ │ │ ├── SDL_drawline.h │ │ │ │ │ ├── SDL_drawpoint.c │ │ │ │ │ ├── SDL_drawpoint.h │ │ │ │ │ ├── SDL_render_sw.c │ │ │ │ │ ├── SDL_render_sw_c.h │ │ │ │ │ ├── SDL_rotate.c │ │ │ │ │ ├── SDL_rotate.h │ │ │ │ │ ├── SDL_triangle.c │ │ │ │ │ └── SDL_triangle.h │ │ │ │ └── vitagxm │ │ │ │ │ ├── SDL_render_vita_gxm.c │ │ │ │ │ ├── SDL_render_vita_gxm_memory.c │ │ │ │ │ ├── SDL_render_vita_gxm_memory.h │ │ │ │ │ ├── SDL_render_vita_gxm_shaders.h │ │ │ │ │ ├── SDL_render_vita_gxm_tools.c │ │ │ │ │ ├── SDL_render_vita_gxm_tools.h │ │ │ │ │ ├── SDL_render_vita_gxm_types.h │ │ │ │ │ └── shader_src │ │ │ │ │ ├── clear_f.cg │ │ │ │ │ ├── clear_v.cg │ │ │ │ │ ├── color_f.cg │ │ │ │ │ ├── color_v.cg │ │ │ │ │ ├── texture_f.cg │ │ │ │ │ └── texture_v.cg │ │ │ ├── sensor │ │ │ │ ├── SDL_sensor.c │ │ │ │ ├── SDL_sensor_c.h │ │ │ │ ├── SDL_syssensor.h │ │ │ │ ├── android │ │ │ │ │ ├── SDL_androidsensor.c │ │ │ │ │ └── SDL_androidsensor.h │ │ │ │ ├── coremotion │ │ │ │ │ ├── SDL_coremotionsensor.h │ │ │ │ │ └── SDL_coremotionsensor.m │ │ │ │ ├── dummy │ │ │ │ │ ├── SDL_dummysensor.c │ │ │ │ │ └── SDL_dummysensor.h │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_n3dssensor.c │ │ │ │ ├── vita │ │ │ │ │ ├── SDL_vitasensor.c │ │ │ │ │ └── SDL_vitasensor.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_windowssensor.c │ │ │ │ │ └── SDL_windowssensor.h │ │ │ ├── stdlib │ │ │ │ ├── SDL_crc16.c │ │ │ │ ├── SDL_crc32.c │ │ │ │ ├── SDL_getenv.c │ │ │ │ ├── SDL_iconv.c │ │ │ │ ├── SDL_malloc.c │ │ │ │ ├── SDL_mslibc.c │ │ │ │ ├── SDL_qsort.c │ │ │ │ ├── SDL_stdlib.c │ │ │ │ ├── SDL_string.c │ │ │ │ ├── SDL_strtokr.c │ │ │ │ └── SDL_vacopy.h │ │ │ ├── test │ │ │ │ ├── SDL_test_assert.c │ │ │ │ ├── SDL_test_common.c │ │ │ │ ├── SDL_test_compare.c │ │ │ │ ├── SDL_test_crc32.c │ │ │ │ ├── SDL_test_font.c │ │ │ │ ├── SDL_test_fuzzer.c │ │ │ │ ├── SDL_test_harness.c │ │ │ │ ├── SDL_test_imageBlit.c │ │ │ │ ├── SDL_test_imageBlitBlend.c │ │ │ │ ├── SDL_test_imageFace.c │ │ │ │ ├── SDL_test_imagePrimitives.c │ │ │ │ ├── SDL_test_imagePrimitivesBlend.c │ │ │ │ ├── SDL_test_log.c │ │ │ │ ├── SDL_test_md5.c │ │ │ │ ├── SDL_test_memory.c │ │ │ │ └── SDL_test_random.c │ │ │ ├── thread │ │ │ │ ├── SDL_systhread.h │ │ │ │ ├── SDL_thread.c │ │ │ │ ├── SDL_thread_c.h │ │ │ │ ├── generic │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_syscond_c.h │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── n3ds │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── ngage │ │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ │ ├── SDL_syssem.cpp │ │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── os2 │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ ├── SDL_systls.c │ │ │ │ │ └── SDL_systls_c.h │ │ │ │ ├── ps2 │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── psp │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── pthread │ │ │ │ │ ├── SDL_syscond.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ │ ├── stdcpp │ │ │ │ │ ├── SDL_syscond.cpp │ │ │ │ │ ├── SDL_sysmutex.cpp │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_systhread.cpp │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ ├── vita │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ └── SDL_systhread_c.h │ │ │ │ └── windows │ │ │ │ │ ├── SDL_syscond_cv.c │ │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ │ ├── SDL_syssem.c │ │ │ │ │ ├── SDL_systhread.c │ │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ │ └── SDL_systls.c │ │ │ ├── timer │ │ │ │ ├── SDL_timer.c │ │ │ │ ├── SDL_timer_c.h │ │ │ │ ├── dummy │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── haiku │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── n3ds │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── ngage │ │ │ │ │ └── SDL_systimer.cpp │ │ │ │ ├── os2 │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── ps2 │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── psp │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── unix │ │ │ │ │ └── SDL_systimer.c │ │ │ │ ├── vita │ │ │ │ │ └── SDL_systimer.c │ │ │ │ └── windows │ │ │ │ │ └── SDL_systimer.c │ │ │ └── video │ │ │ │ ├── SDL_RLEaccel.c │ │ │ │ ├── SDL_RLEaccel_c.h │ │ │ │ ├── SDL_blit.c │ │ │ │ ├── SDL_blit.h │ │ │ │ ├── SDL_blit_0.c │ │ │ │ ├── SDL_blit_1.c │ │ │ │ ├── SDL_blit_A.c │ │ │ │ ├── SDL_blit_N.c │ │ │ │ ├── SDL_blit_auto.c │ │ │ │ ├── SDL_blit_auto.h │ │ │ │ ├── SDL_blit_copy.c │ │ │ │ ├── SDL_blit_copy.h │ │ │ │ ├── SDL_blit_slow.c │ │ │ │ ├── SDL_blit_slow.h │ │ │ │ ├── SDL_bmp.c │ │ │ │ ├── SDL_clipboard.c │ │ │ │ ├── SDL_egl.c │ │ │ │ ├── SDL_egl_c.h │ │ │ │ ├── SDL_fillrect.c │ │ │ │ ├── SDL_pixels.c │ │ │ │ ├── SDL_pixels_c.h │ │ │ │ ├── SDL_rect.c │ │ │ │ ├── SDL_rect_c.h │ │ │ │ ├── SDL_rect_impl.h │ │ │ │ ├── SDL_shape.c │ │ │ │ ├── SDL_shape_internals.h │ │ │ │ ├── SDL_stretch.c │ │ │ │ ├── SDL_surface.c │ │ │ │ ├── SDL_sysvideo.h │ │ │ │ ├── SDL_video.c │ │ │ │ ├── SDL_vulkan_internal.h │ │ │ │ ├── SDL_vulkan_utils.c │ │ │ │ ├── SDL_yuv.c │ │ │ │ ├── SDL_yuv_c.h │ │ │ │ ├── android │ │ │ │ ├── SDL_androidclipboard.c │ │ │ │ ├── SDL_androidclipboard.h │ │ │ │ ├── SDL_androidevents.c │ │ │ │ ├── SDL_androidevents.h │ │ │ │ ├── SDL_androidgl.c │ │ │ │ ├── SDL_androidgl.h │ │ │ │ ├── SDL_androidkeyboard.c │ │ │ │ ├── SDL_androidkeyboard.h │ │ │ │ ├── SDL_androidmessagebox.c │ │ │ │ ├── SDL_androidmessagebox.h │ │ │ │ ├── SDL_androidmouse.c │ │ │ │ ├── SDL_androidmouse.h │ │ │ │ ├── SDL_androidtouch.c │ │ │ │ ├── SDL_androidtouch.h │ │ │ │ ├── SDL_androidvideo.c │ │ │ │ ├── SDL_androidvideo.h │ │ │ │ ├── SDL_androidvulkan.c │ │ │ │ ├── SDL_androidvulkan.h │ │ │ │ ├── SDL_androidwindow.c │ │ │ │ └── SDL_androidwindow.h │ │ │ │ ├── arm │ │ │ │ ├── pixman-arm-asm.h │ │ │ │ ├── pixman-arm-neon-asm.S │ │ │ │ ├── pixman-arm-neon-asm.h │ │ │ │ ├── pixman-arm-simd-asm.S │ │ │ │ └── pixman-arm-simd-asm.h │ │ │ │ ├── cocoa │ │ │ │ ├── SDL_cocoaclipboard.h │ │ │ │ ├── SDL_cocoaclipboard.m │ │ │ │ ├── SDL_cocoaevents.h │ │ │ │ ├── SDL_cocoaevents.m │ │ │ │ ├── SDL_cocoakeyboard.h │ │ │ │ ├── SDL_cocoakeyboard.m │ │ │ │ ├── SDL_cocoamessagebox.h │ │ │ │ ├── SDL_cocoamessagebox.m │ │ │ │ ├── SDL_cocoametalview.h │ │ │ │ ├── SDL_cocoametalview.m │ │ │ │ ├── SDL_cocoamodes.h │ │ │ │ ├── SDL_cocoamodes.m │ │ │ │ ├── SDL_cocoamouse.h │ │ │ │ ├── SDL_cocoamouse.m │ │ │ │ ├── SDL_cocoaopengl.h │ │ │ │ ├── SDL_cocoaopengl.m │ │ │ │ ├── SDL_cocoaopengles.h │ │ │ │ ├── SDL_cocoaopengles.m │ │ │ │ ├── SDL_cocoashape.h │ │ │ │ ├── SDL_cocoashape.m │ │ │ │ ├── SDL_cocoavideo.h │ │ │ │ ├── SDL_cocoavideo.m │ │ │ │ ├── SDL_cocoavulkan.h │ │ │ │ ├── SDL_cocoavulkan.m │ │ │ │ ├── SDL_cocoawindow.h │ │ │ │ └── SDL_cocoawindow.m │ │ │ │ ├── directfb │ │ │ │ ├── SDL_DirectFB_WM.c │ │ │ │ ├── SDL_DirectFB_WM.h │ │ │ │ ├── SDL_DirectFB_dyn.c │ │ │ │ ├── SDL_DirectFB_dyn.h │ │ │ │ ├── SDL_DirectFB_events.c │ │ │ │ ├── SDL_DirectFB_events.h │ │ │ │ ├── SDL_DirectFB_modes.c │ │ │ │ ├── SDL_DirectFB_modes.h │ │ │ │ ├── SDL_DirectFB_mouse.c │ │ │ │ ├── SDL_DirectFB_mouse.h │ │ │ │ ├── SDL_DirectFB_opengl.c │ │ │ │ ├── SDL_DirectFB_opengl.h │ │ │ │ ├── SDL_DirectFB_render.c │ │ │ │ ├── SDL_DirectFB_render.h │ │ │ │ ├── SDL_DirectFB_shape.c │ │ │ │ ├── SDL_DirectFB_shape.h │ │ │ │ ├── SDL_DirectFB_video.c │ │ │ │ ├── SDL_DirectFB_video.h │ │ │ │ ├── SDL_DirectFB_vulkan.c │ │ │ │ ├── SDL_DirectFB_vulkan.h │ │ │ │ ├── SDL_DirectFB_window.c │ │ │ │ └── SDL_DirectFB_window.h │ │ │ │ ├── dummy │ │ │ │ ├── SDL_nullevents.c │ │ │ │ ├── SDL_nullevents_c.h │ │ │ │ ├── SDL_nullframebuffer.c │ │ │ │ ├── SDL_nullframebuffer_c.h │ │ │ │ ├── SDL_nullvideo.c │ │ │ │ └── SDL_nullvideo.h │ │ │ │ ├── emscripten │ │ │ │ ├── SDL_emscriptenevents.c │ │ │ │ ├── SDL_emscriptenevents.h │ │ │ │ ├── SDL_emscriptenframebuffer.c │ │ │ │ ├── SDL_emscriptenframebuffer.h │ │ │ │ ├── SDL_emscriptenmouse.c │ │ │ │ ├── SDL_emscriptenmouse.h │ │ │ │ ├── SDL_emscriptenopengles.c │ │ │ │ ├── SDL_emscriptenopengles.h │ │ │ │ ├── SDL_emscriptenvideo.c │ │ │ │ └── SDL_emscriptenvideo.h │ │ │ │ ├── haiku │ │ │ │ ├── SDL_BApp.h │ │ │ │ ├── SDL_BWin.h │ │ │ │ ├── SDL_bclipboard.cc │ │ │ │ ├── SDL_bclipboard.h │ │ │ │ ├── SDL_bevents.cc │ │ │ │ ├── SDL_bevents.h │ │ │ │ ├── SDL_bframebuffer.cc │ │ │ │ ├── SDL_bframebuffer.h │ │ │ │ ├── SDL_bkeyboard.cc │ │ │ │ ├── SDL_bkeyboard.h │ │ │ │ ├── SDL_bmessagebox.cc │ │ │ │ ├── SDL_bmessagebox.h │ │ │ │ ├── SDL_bmodes.cc │ │ │ │ ├── SDL_bmodes.h │ │ │ │ ├── SDL_bopengl.cc │ │ │ │ ├── SDL_bopengl.h │ │ │ │ ├── SDL_bvideo.cc │ │ │ │ ├── SDL_bvideo.h │ │ │ │ ├── SDL_bwindow.cc │ │ │ │ └── SDL_bwindow.h │ │ │ │ ├── khronos │ │ │ │ ├── EGL │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── eglext.h │ │ │ │ │ └── eglplatform.h │ │ │ │ ├── GLES2 │ │ │ │ │ ├── gl2.h │ │ │ │ │ ├── gl2ext.h │ │ │ │ │ └── gl2platform.h │ │ │ │ ├── KHR │ │ │ │ │ └── khrplatform.h │ │ │ │ ├── vk_video │ │ │ │ │ ├── vulkan_video_codec_h264std.h │ │ │ │ │ ├── vulkan_video_codec_h264std_decode.h │ │ │ │ │ ├── vulkan_video_codec_h264std_encode.h │ │ │ │ │ ├── vulkan_video_codec_h265std.h │ │ │ │ │ ├── vulkan_video_codec_h265std_decode.h │ │ │ │ │ ├── vulkan_video_codec_h265std_encode.h │ │ │ │ │ └── vulkan_video_codecs_common.h │ │ │ │ └── vulkan │ │ │ │ │ ├── vk_icd.h │ │ │ │ │ ├── vk_layer.h │ │ │ │ │ ├── vk_platform.h │ │ │ │ │ ├── vk_sdk_platform.h │ │ │ │ │ ├── vulkan.h │ │ │ │ │ ├── vulkan_android.h │ │ │ │ │ ├── vulkan_beta.h │ │ │ │ │ ├── vulkan_core.h │ │ │ │ │ ├── vulkan_directfb.h │ │ │ │ │ ├── vulkan_fuchsia.h │ │ │ │ │ ├── vulkan_ggp.h │ │ │ │ │ ├── vulkan_ios.h │ │ │ │ │ ├── vulkan_macos.h │ │ │ │ │ ├── vulkan_metal.h │ │ │ │ │ ├── vulkan_screen.h │ │ │ │ │ ├── vulkan_vi.h │ │ │ │ │ ├── vulkan_wayland.h │ │ │ │ │ ├── vulkan_win32.h │ │ │ │ │ ├── vulkan_xcb.h │ │ │ │ │ ├── vulkan_xlib.h │ │ │ │ │ └── vulkan_xlib_xrandr.h │ │ │ │ ├── kmsdrm │ │ │ │ ├── SDL_kmsdrmdyn.c │ │ │ │ ├── SDL_kmsdrmdyn.h │ │ │ │ ├── SDL_kmsdrmevents.c │ │ │ │ ├── SDL_kmsdrmevents.h │ │ │ │ ├── SDL_kmsdrmmouse.c │ │ │ │ ├── SDL_kmsdrmmouse.h │ │ │ │ ├── SDL_kmsdrmopengles.c │ │ │ │ ├── SDL_kmsdrmopengles.h │ │ │ │ ├── SDL_kmsdrmsym.h │ │ │ │ ├── SDL_kmsdrmvideo.c │ │ │ │ ├── SDL_kmsdrmvideo.h │ │ │ │ ├── SDL_kmsdrmvulkan.c │ │ │ │ └── SDL_kmsdrmvulkan.h │ │ │ │ ├── n3ds │ │ │ │ ├── SDL_n3dsevents.c │ │ │ │ ├── SDL_n3dsevents_c.h │ │ │ │ ├── SDL_n3dsframebuffer.c │ │ │ │ ├── SDL_n3dsframebuffer_c.h │ │ │ │ ├── SDL_n3dsswkb.c │ │ │ │ ├── SDL_n3dsswkb.h │ │ │ │ ├── SDL_n3dstouch.c │ │ │ │ ├── SDL_n3dstouch.h │ │ │ │ ├── SDL_n3dsvideo.c │ │ │ │ └── SDL_n3dsvideo.h │ │ │ │ ├── nacl │ │ │ │ ├── SDL_naclevents.c │ │ │ │ ├── SDL_naclevents_c.h │ │ │ │ ├── SDL_naclglue.c │ │ │ │ ├── SDL_naclopengles.c │ │ │ │ ├── SDL_naclopengles.h │ │ │ │ ├── SDL_naclvideo.c │ │ │ │ ├── SDL_naclvideo.h │ │ │ │ ├── SDL_naclwindow.c │ │ │ │ └── SDL_naclwindow.h │ │ │ │ ├── ngage │ │ │ │ ├── SDL_ngageevents.cpp │ │ │ │ ├── SDL_ngageevents_c.h │ │ │ │ ├── SDL_ngageframebuffer.cpp │ │ │ │ ├── SDL_ngageframebuffer_c.h │ │ │ │ ├── SDL_ngagevideo.cpp │ │ │ │ ├── SDL_ngagevideo.h │ │ │ │ ├── SDL_ngagewindow.cpp │ │ │ │ └── SDL_ngagewindow.h │ │ │ │ ├── offscreen │ │ │ │ ├── SDL_offscreenevents.c │ │ │ │ ├── SDL_offscreenevents_c.h │ │ │ │ ├── SDL_offscreenframebuffer.c │ │ │ │ ├── SDL_offscreenframebuffer_c.h │ │ │ │ ├── SDL_offscreenopengles.c │ │ │ │ ├── SDL_offscreenopengles.h │ │ │ │ ├── SDL_offscreenvideo.c │ │ │ │ ├── SDL_offscreenvideo.h │ │ │ │ ├── SDL_offscreenwindow.c │ │ │ │ └── SDL_offscreenwindow.h │ │ │ │ ├── os2 │ │ │ │ ├── SDL_gradd.h │ │ │ │ ├── SDL_os2dive.c │ │ │ │ ├── SDL_os2messagebox.c │ │ │ │ ├── SDL_os2messagebox.h │ │ │ │ ├── SDL_os2mouse.c │ │ │ │ ├── SDL_os2mouse.h │ │ │ │ ├── SDL_os2output.h │ │ │ │ ├── SDL_os2util.c │ │ │ │ ├── SDL_os2util.h │ │ │ │ ├── SDL_os2video.c │ │ │ │ ├── SDL_os2video.h │ │ │ │ └── SDL_os2vman.c │ │ │ │ ├── pandora │ │ │ │ ├── SDL_pandora.c │ │ │ │ ├── SDL_pandora.h │ │ │ │ ├── SDL_pandora_events.c │ │ │ │ └── SDL_pandora_events.h │ │ │ │ ├── ps2 │ │ │ │ ├── SDL_ps2video.c │ │ │ │ └── SDL_ps2video.h │ │ │ │ ├── psp │ │ │ │ ├── SDL_pspevents.c │ │ │ │ ├── SDL_pspevents_c.h │ │ │ │ ├── SDL_pspgl.c │ │ │ │ ├── SDL_pspgl_c.h │ │ │ │ ├── SDL_pspmouse.c │ │ │ │ ├── SDL_pspmouse_c.h │ │ │ │ ├── SDL_pspvideo.c │ │ │ │ └── SDL_pspvideo.h │ │ │ │ ├── qnx │ │ │ │ ├── gl.c │ │ │ │ ├── keyboard.c │ │ │ │ ├── sdl_qnx.h │ │ │ │ └── video.c │ │ │ │ ├── raspberry │ │ │ │ ├── SDL_rpievents.c │ │ │ │ ├── SDL_rpievents_c.h │ │ │ │ ├── SDL_rpimouse.c │ │ │ │ ├── SDL_rpimouse.h │ │ │ │ ├── SDL_rpiopengles.c │ │ │ │ ├── SDL_rpiopengles.h │ │ │ │ ├── SDL_rpivideo.c │ │ │ │ └── SDL_rpivideo.h │ │ │ │ ├── riscos │ │ │ │ ├── SDL_riscosdefs.h │ │ │ │ ├── SDL_riscosevents.c │ │ │ │ ├── SDL_riscosevents_c.h │ │ │ │ ├── SDL_riscosframebuffer.c │ │ │ │ ├── SDL_riscosframebuffer_c.h │ │ │ │ ├── SDL_riscosmessagebox.c │ │ │ │ ├── SDL_riscosmessagebox.h │ │ │ │ ├── SDL_riscosmodes.c │ │ │ │ ├── SDL_riscosmodes.h │ │ │ │ ├── SDL_riscosmouse.c │ │ │ │ ├── SDL_riscosmouse.h │ │ │ │ ├── SDL_riscosvideo.c │ │ │ │ ├── SDL_riscosvideo.h │ │ │ │ ├── SDL_riscoswindow.c │ │ │ │ ├── SDL_riscoswindow.h │ │ │ │ └── scancodes_riscos.h │ │ │ │ ├── sdlgenblit.pl │ │ │ │ ├── uikit │ │ │ │ ├── SDL_uikitappdelegate.h │ │ │ │ ├── SDL_uikitappdelegate.m │ │ │ │ ├── SDL_uikitclipboard.h │ │ │ │ ├── SDL_uikitclipboard.m │ │ │ │ ├── SDL_uikitevents.h │ │ │ │ ├── SDL_uikitevents.m │ │ │ │ ├── SDL_uikitmessagebox.h │ │ │ │ ├── SDL_uikitmessagebox.m │ │ │ │ ├── SDL_uikitmetalview.h │ │ │ │ ├── SDL_uikitmetalview.m │ │ │ │ ├── SDL_uikitmodes.h │ │ │ │ ├── SDL_uikitmodes.m │ │ │ │ ├── SDL_uikitopengles.h │ │ │ │ ├── SDL_uikitopengles.m │ │ │ │ ├── SDL_uikitopenglview.h │ │ │ │ ├── SDL_uikitopenglview.m │ │ │ │ ├── SDL_uikitvideo.h │ │ │ │ ├── SDL_uikitvideo.m │ │ │ │ ├── SDL_uikitview.h │ │ │ │ ├── SDL_uikitview.m │ │ │ │ ├── SDL_uikitviewcontroller.h │ │ │ │ ├── SDL_uikitviewcontroller.m │ │ │ │ ├── SDL_uikitvulkan.h │ │ │ │ ├── SDL_uikitvulkan.m │ │ │ │ ├── SDL_uikitwindow.h │ │ │ │ └── SDL_uikitwindow.m │ │ │ │ ├── vita │ │ │ │ ├── SDL_vitaframebuffer.c │ │ │ │ ├── SDL_vitaframebuffer.h │ │ │ │ ├── SDL_vitagl_pvr.c │ │ │ │ ├── SDL_vitagl_pvr_c.h │ │ │ │ ├── SDL_vitagles.c │ │ │ │ ├── SDL_vitagles_c.h │ │ │ │ ├── SDL_vitagles_pvr.c │ │ │ │ ├── SDL_vitagles_pvr_c.h │ │ │ │ ├── SDL_vitakeyboard.c │ │ │ │ ├── SDL_vitakeyboard.h │ │ │ │ ├── SDL_vitamessagebox.c │ │ │ │ ├── SDL_vitamessagebox.h │ │ │ │ ├── SDL_vitamouse.c │ │ │ │ ├── SDL_vitamouse_c.h │ │ │ │ ├── SDL_vitatouch.c │ │ │ │ ├── SDL_vitatouch.h │ │ │ │ ├── SDL_vitavideo.c │ │ │ │ └── SDL_vitavideo.h │ │ │ │ ├── vivante │ │ │ │ ├── SDL_vivanteopengles.c │ │ │ │ ├── SDL_vivanteopengles.h │ │ │ │ ├── SDL_vivanteplatform.c │ │ │ │ ├── SDL_vivanteplatform.h │ │ │ │ ├── SDL_vivantevideo.c │ │ │ │ ├── SDL_vivantevideo.h │ │ │ │ ├── SDL_vivantevulkan.c │ │ │ │ └── SDL_vivantevulkan.h │ │ │ │ ├── wayland │ │ │ │ ├── SDL_waylandclipboard.c │ │ │ │ ├── SDL_waylandclipboard.h │ │ │ │ ├── SDL_waylanddatamanager.c │ │ │ │ ├── SDL_waylanddatamanager.h │ │ │ │ ├── SDL_waylanddyn.c │ │ │ │ ├── SDL_waylanddyn.h │ │ │ │ ├── SDL_waylandevents.c │ │ │ │ ├── SDL_waylandevents_c.h │ │ │ │ ├── SDL_waylandkeyboard.c │ │ │ │ ├── SDL_waylandkeyboard.h │ │ │ │ ├── SDL_waylandmessagebox.c │ │ │ │ ├── SDL_waylandmessagebox.h │ │ │ │ ├── SDL_waylandmouse.c │ │ │ │ ├── SDL_waylandmouse.h │ │ │ │ ├── SDL_waylandopengles.c │ │ │ │ ├── SDL_waylandopengles.h │ │ │ │ ├── SDL_waylandshmbuffer.c │ │ │ │ ├── SDL_waylandshmbuffer.h │ │ │ │ ├── SDL_waylandsym.h │ │ │ │ ├── SDL_waylandtouch.c │ │ │ │ ├── SDL_waylandtouch.h │ │ │ │ ├── SDL_waylandvideo.c │ │ │ │ ├── SDL_waylandvideo.h │ │ │ │ ├── SDL_waylandvulkan.c │ │ │ │ ├── SDL_waylandvulkan.h │ │ │ │ ├── SDL_waylandwindow.c │ │ │ │ └── SDL_waylandwindow.h │ │ │ │ ├── windows │ │ │ │ ├── SDL_msctf.h │ │ │ │ ├── SDL_vkeys.h │ │ │ │ ├── SDL_windowsclipboard.c │ │ │ │ ├── SDL_windowsclipboard.h │ │ │ │ ├── SDL_windowsevents.c │ │ │ │ ├── SDL_windowsevents.h │ │ │ │ ├── SDL_windowsframebuffer.c │ │ │ │ ├── SDL_windowsframebuffer.h │ │ │ │ ├── SDL_windowskeyboard.c │ │ │ │ ├── SDL_windowskeyboard.h │ │ │ │ ├── SDL_windowsmessagebox.c │ │ │ │ ├── SDL_windowsmessagebox.h │ │ │ │ ├── SDL_windowsmodes.c │ │ │ │ ├── SDL_windowsmodes.h │ │ │ │ ├── SDL_windowsmouse.c │ │ │ │ ├── SDL_windowsmouse.h │ │ │ │ ├── SDL_windowsopengl.c │ │ │ │ ├── SDL_windowsopengl.h │ │ │ │ ├── SDL_windowsopengles.c │ │ │ │ ├── SDL_windowsopengles.h │ │ │ │ ├── SDL_windowsshape.c │ │ │ │ ├── SDL_windowsshape.h │ │ │ │ ├── SDL_windowsvideo.c │ │ │ │ ├── SDL_windowsvideo.h │ │ │ │ ├── SDL_windowsvulkan.c │ │ │ │ ├── SDL_windowsvulkan.h │ │ │ │ ├── SDL_windowswindow.c │ │ │ │ ├── SDL_windowswindow.h │ │ │ │ └── wmmsg.h │ │ │ │ ├── winrt │ │ │ │ ├── SDL_winrtevents.cpp │ │ │ │ ├── SDL_winrtevents_c.h │ │ │ │ ├── SDL_winrtgamebar.cpp │ │ │ │ ├── SDL_winrtgamebar_cpp.h │ │ │ │ ├── SDL_winrtkeyboard.cpp │ │ │ │ ├── SDL_winrtmessagebox.cpp │ │ │ │ ├── SDL_winrtmessagebox.h │ │ │ │ ├── SDL_winrtmouse.cpp │ │ │ │ ├── SDL_winrtmouse_c.h │ │ │ │ ├── SDL_winrtopengles.cpp │ │ │ │ ├── SDL_winrtopengles.h │ │ │ │ ├── SDL_winrtpointerinput.cpp │ │ │ │ ├── SDL_winrtvideo.cpp │ │ │ │ └── SDL_winrtvideo_cpp.h │ │ │ │ ├── x11 │ │ │ │ ├── SDL_x11clipboard.c │ │ │ │ ├── SDL_x11clipboard.h │ │ │ │ ├── SDL_x11dyn.c │ │ │ │ ├── SDL_x11dyn.h │ │ │ │ ├── SDL_x11events.c │ │ │ │ ├── SDL_x11events.h │ │ │ │ ├── SDL_x11framebuffer.c │ │ │ │ ├── SDL_x11framebuffer.h │ │ │ │ ├── SDL_x11keyboard.c │ │ │ │ ├── SDL_x11keyboard.h │ │ │ │ ├── SDL_x11messagebox.c │ │ │ │ ├── SDL_x11messagebox.h │ │ │ │ ├── SDL_x11modes.c │ │ │ │ ├── SDL_x11modes.h │ │ │ │ ├── SDL_x11mouse.c │ │ │ │ ├── SDL_x11mouse.h │ │ │ │ ├── SDL_x11opengl.c │ │ │ │ ├── SDL_x11opengl.h │ │ │ │ ├── SDL_x11opengles.c │ │ │ │ ├── SDL_x11opengles.h │ │ │ │ ├── SDL_x11shape.c │ │ │ │ ├── SDL_x11shape.h │ │ │ │ ├── SDL_x11sym.h │ │ │ │ ├── SDL_x11touch.c │ │ │ │ ├── SDL_x11touch.h │ │ │ │ ├── SDL_x11video.c │ │ │ │ ├── SDL_x11video.h │ │ │ │ ├── SDL_x11vulkan.c │ │ │ │ ├── SDL_x11vulkan.h │ │ │ │ ├── SDL_x11window.c │ │ │ │ ├── SDL_x11window.h │ │ │ │ ├── SDL_x11xfixes.c │ │ │ │ ├── SDL_x11xfixes.h │ │ │ │ ├── SDL_x11xinput2.c │ │ │ │ ├── SDL_x11xinput2.h │ │ │ │ ├── edid-parse.c │ │ │ │ └── edid.h │ │ │ │ └── yuv2rgb │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── yuv_rgb.h │ │ │ │ ├── yuv_rgb_common.h │ │ │ │ ├── yuv_rgb_internal.h │ │ │ │ ├── yuv_rgb_lsx.c │ │ │ │ ├── yuv_rgb_lsx.h │ │ │ │ ├── yuv_rgb_lsx_func.h │ │ │ │ ├── yuv_rgb_sse.c │ │ │ │ ├── yuv_rgb_sse.h │ │ │ │ ├── yuv_rgb_sse_func.h │ │ │ │ ├── yuv_rgb_std.c │ │ │ │ ├── yuv_rgb_std.h │ │ │ │ └── yuv_rgb_std_func.h │ │ │ ├── visualtest │ │ │ ├── COPYING.txt │ │ │ ├── Makefile.in │ │ │ ├── README.txt │ │ │ ├── acinclude.m4 │ │ │ ├── autogen.sh │ │ │ ├── configs │ │ │ │ ├── testsprite2_blendmodes │ │ │ │ │ ├── testsprite2_blendmodes.actions │ │ │ │ │ ├── testsprite2_blendmodes.config │ │ │ │ │ └── testsprite2_blendmodes.parameters │ │ │ │ ├── testsprite2_crashtest │ │ │ │ │ ├── testsprite2_crashtest.actions │ │ │ │ │ ├── testsprite2_crashtest.config │ │ │ │ │ └── testsprite2_crashtest.parameters │ │ │ │ ├── testsprite2_fullscreen │ │ │ │ │ ├── testsprite2_fullscreen.actions │ │ │ │ │ ├── testsprite2_fullscreen.config │ │ │ │ │ └── testsprite2_fullscreen.parameters │ │ │ │ └── testsprite2_geometry │ │ │ │ │ ├── testsprite2_geometry.actions │ │ │ │ │ ├── testsprite2_geometry.config │ │ │ │ │ └── testsprite2_geometry.parameters │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── docs │ │ │ │ └── Doxyfile │ │ │ ├── include │ │ │ │ ├── SDL_visualtest_action_configparser.h │ │ │ │ ├── SDL_visualtest_exhaustive_variator.h │ │ │ │ ├── SDL_visualtest_harness_argparser.h │ │ │ │ ├── SDL_visualtest_mischelper.h │ │ │ │ ├── SDL_visualtest_parsehelper.h │ │ │ │ ├── SDL_visualtest_process.h │ │ │ │ ├── SDL_visualtest_random_variator.h │ │ │ │ ├── SDL_visualtest_rwhelper.h │ │ │ │ ├── SDL_visualtest_screenshot.h │ │ │ │ ├── SDL_visualtest_sut_configparser.h │ │ │ │ ├── SDL_visualtest_variator_common.h │ │ │ │ └── SDL_visualtest_variators.h │ │ │ ├── launch_harness.cmd │ │ │ ├── launch_harness.sh │ │ │ ├── src │ │ │ │ ├── action_configparser.c │ │ │ │ ├── harness_argparser.c │ │ │ │ ├── linux │ │ │ │ │ └── linux_process.c │ │ │ │ ├── mischelper.c │ │ │ │ ├── parsehelper.c │ │ │ │ ├── rwhelper.c │ │ │ │ ├── screenshot.c │ │ │ │ ├── sut_configparser.c │ │ │ │ ├── testharness.c │ │ │ │ ├── variator_common.c │ │ │ │ ├── variator_exhaustive.c │ │ │ │ ├── variator_random.c │ │ │ │ ├── variators.c │ │ │ │ └── windows │ │ │ │ │ ├── windows_process.c │ │ │ │ │ └── windows_screenshot.c │ │ │ ├── testsprite2_sample.actions │ │ │ ├── testsprite2_sample.config │ │ │ ├── testsprite2_sample.parameters │ │ │ └── unittest │ │ │ │ ├── testquit.actions │ │ │ │ ├── testquit.c │ │ │ │ ├── testquit.config │ │ │ │ └── testquit.parameters │ │ │ └── wayland-protocols │ │ │ ├── cursor-shape-v1.xml │ │ │ ├── fractional-scale-v1.xml │ │ │ ├── idle-inhibit-unstable-v1.xml │ │ │ ├── keyboard-shortcuts-inhibit-unstable-v1.xml │ │ │ ├── pointer-constraints-unstable-v1.xml │ │ │ ├── primary-selection-unstable-v1.xml │ │ │ ├── relative-pointer-unstable-v1.xml │ │ │ ├── tablet-unstable-v2.xml │ │ │ ├── text-input-unstable-v3.xml │ │ │ ├── viewporter.xml │ │ │ ├── wayland.xml │ │ │ ├── xdg-activation-v1.xml │ │ │ ├── xdg-decoration-unstable-v1.xml │ │ │ ├── xdg-output-unstable-v1.xml │ │ │ ├── xdg-shell.xml │ │ │ └── xdg-toplevel-icon-v1.xml │ ├── stb │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ └── include │ │ │ ├── stb_image.h │ │ │ └── stb_image_write.h │ └── xbrz │ │ ├── CMakeLists.txt │ │ ├── Changelog.txt │ │ ├── License.txt │ │ ├── bstone_changelog.txt │ │ ├── include │ │ ├── xbrz.h │ │ ├── xbrz_config.h │ │ └── xbrz_tools.h │ │ └── src │ │ └── xbrz.cpp ├── tests │ ├── CMakeLists.txt │ └── src │ │ ├── process │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── bstone_tests_process.cpp │ │ ├── shared_library │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── bstone_tests_shared_library.h │ │ └── src │ │ │ └── bstone_tests_shared_library.cpp │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── data │ │ └── bstone_tests_tag.txt │ │ └── src │ │ ├── bstone_tester.cpp │ │ ├── bstone_tester.h │ │ ├── bstone_tests.cpp │ │ ├── bstone_tests_algorithm.cpp │ │ ├── bstone_tests_api_string.cpp │ │ ├── bstone_tests_array.cpp │ │ ├── bstone_tests_ascii.cpp │ │ ├── bstone_tests_auto_arena_resource.cpp │ │ ├── bstone_tests_binary_reader.cpp │ │ ├── bstone_tests_binary_writer.cpp │ │ ├── bstone_tests_cgm_clip_space.cpp │ │ ├── bstone_tests_cgm_mat.cpp │ │ ├── bstone_tests_cgm_transform.cpp │ │ ├── bstone_tests_cgm_vec.cpp │ │ ├── bstone_tests_char_conv.cpp │ │ ├── bstone_tests_char_traits.cpp │ │ ├── bstone_tests_configurations.cpp │ │ ├── bstone_tests_crc32.cpp │ │ ├── bstone_tests_endian.cpp │ │ ├── bstone_tests_exception.cpp │ │ ├── bstone_tests_file.cpp │ │ ├── bstone_tests_file_stream.cpp │ │ ├── bstone_tests_fixed_pool_resource.cpp │ │ ├── bstone_tests_four_cc.cpp │ │ ├── bstone_tests_fs.cpp │ │ ├── bstone_tests_generic_pool_resource.cpp │ │ ├── bstone_tests_memory.cpp │ │ ├── bstone_tests_memory_pool_bitmap.cpp │ │ ├── bstone_tests_memory_resource.cpp │ │ ├── bstone_tests_memory_stream.cpp │ │ ├── bstone_tests_process.cpp │ │ ├── bstone_tests_scope_exit.cpp │ │ ├── bstone_tests_sha1.cpp │ │ ├── bstone_tests_shared_library.cpp │ │ ├── bstone_tests_single_pool_resource.cpp │ │ ├── bstone_tests_source_location.cpp │ │ ├── bstone_tests_span.cpp │ │ ├── bstone_tests_static_memory_stream.cpp │ │ ├── bstone_tests_static_ro_memory_stream.cpp │ │ ├── bstone_tests_string.cpp │ │ ├── bstone_tests_string_view.cpp │ │ ├── bstone_tests_ts_auto_arena_resource.cpp │ │ ├── bstone_tests_unique_resource.cpp │ │ ├── bstone_tests_utf.cpp │ │ ├── bstone_tests_utility.cpp │ │ ├── bstone_tests_uuid.cpp │ │ ├── bstone_tests_win32_registry_key.cpp │ │ ├── bstone_tests_win32_wstring.cpp │ │ └── bstone_tests_zstring_view.cpp └── tools │ ├── CMakeLists.txt │ ├── glapigen │ ├── CMakeLists.txt │ └── src │ │ └── bstone_glapigen.cpp │ └── ltrimcs │ ├── CMakeLists.txt │ └── src │ └── bstone_ltrimcs.cpp └── unsupported └── psvita ├── README-PSVITA.md └── src └── vita ├── CMakeLists.txt ├── Issues.md ├── sce_sys ├── icon0.png └── livearea │ └── contents │ ├── bg.png │ ├── ps.png │ ├── startup.png │ └── template.xml └── vita_input.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/.gitignore -------------------------------------------------------------------------------- /Blake Stone source code license.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/Blake Stone source code license.doc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/TODO.md -------------------------------------------------------------------------------- /cmake/FindSDL2W.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/cmake/FindSDL2W.cmake -------------------------------------------------------------------------------- /cmake/GetGitHeadHash.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/cmake/GetGitHeadHash.cmake -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/bstone/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/CMakeLists.txt -------------------------------------------------------------------------------- /src/bstone/src/3d_act1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_act1.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_act2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_act2.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_agent.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_debug.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_def.h -------------------------------------------------------------------------------- /src/bstone/src/3d_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_draw.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_draw2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_draw2.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_game.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_inter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_inter.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_main.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_menu.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_menu.h -------------------------------------------------------------------------------- /src/bstone/src/3d_msgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_msgs.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_play.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_play.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_scale.cpp -------------------------------------------------------------------------------- /src/bstone/src/3d_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/3d_state.cpp -------------------------------------------------------------------------------- /src/bstone/src/an_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/an_codes.h -------------------------------------------------------------------------------- /src/bstone/src/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/audio.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_adlib_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_adlib_decoder.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_adlib_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_adlib_decoder.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_adlib_sfx_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_adlib_sfx_decoder.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_algorithm.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_algorithm.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_api_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_api_string.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_api_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_api_string.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_archiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_archiver.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_archiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_archiver.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_array.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_array.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_ascii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ascii.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ascii.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_assert.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_assert.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_atomic_flag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_atomic_flag.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_atomic_flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_atomic_flag.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_audio_content_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_audio_content_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_audio_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_audio_decoder.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_audio_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_audio_decoder.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_audio_extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_audio_extractor.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_audio_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_audio_extractor.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_audio_mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_audio_mixer.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_audio_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_audio_mixer.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_audio_mixer_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_audio_mixer_utils.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_binary_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_binary_reader.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_binary_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_binary_reader.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_binary_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_binary_writer.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_binary_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_binary_writer.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_bmp_image_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_bmp_image_common.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_bmp_image_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_bmp_image_decoder.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_ccmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ccmd.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_ccmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ccmd.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_ccmd_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ccmd_action.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_ccmd_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ccmd_action.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_ccmd_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ccmd_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_ccmd_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ccmd_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_cgm_clip_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cgm_clip_space.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_cgm_clip_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cgm_clip_space.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_cgm_mat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cgm_mat.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_cgm_mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cgm_mat.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_cgm_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cgm_transform.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_cgm_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cgm_transform.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_cgm_vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cgm_vec.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_cgm_vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cgm_vec.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_char_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_char_conv.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_char_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_char_conv.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_char_hasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_char_hasher.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_char_hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_char_hasher.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_char_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_char_traits.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_char_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_char_traits.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cl.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cl.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_configurations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_configurations.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_configurations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_configurations.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_content_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_content_path.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_content_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_content_path.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_crc32.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_crc32.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_cvalidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cvalidator.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_cvalidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cvalidator.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_cvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cvar.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_cvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cvar.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_cvar_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cvar_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_cvar_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cvar_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_cvar_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cvar_string.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_cvar_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cvar_string.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_cxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cxx.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_cxx.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_door.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_door.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_dosbox_dbopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_dosbox_dbopl.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_dosbox_dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_dosbox_dbopl.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_encoding.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_encoding.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_endian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_endian.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_endian.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_entry_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_entry_point.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_entry_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_entry_point.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_enum_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_enum_flags.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_exception.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_exception.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_exception_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_exception_utils.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_exception_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_exception_utils.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_extent_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_extent_2d.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_extent_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_extent_2d.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_file.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_file.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_file_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_file_posix.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_file_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_file_stream.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_file_stream.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_file_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_file_win32.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_fizzle_fx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_fizzle_fx.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_fizzle_fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_fizzle_fx.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_format_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_format_string.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_format_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_format_string.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_four_cc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_four_cc.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_four_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_four_cc.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_fs.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_fs.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_fs_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_fs_posix.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_fs_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_fs_utils.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_fs_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_fs_utils.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_fs_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_fs_win32.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_game_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_game_timer.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_game_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_game_timer.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_generic_fizzle_fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_generic_fizzle_fx.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_api.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_api.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_buffer.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_buffer.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_context.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_context.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_error.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_error.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_r2_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_r2_texture.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_sampler.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_sampler.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_sampler_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_sampler_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_shader.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_shader.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_shader_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_shader_var.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_utils.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_utils.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gl_r3r_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gl_r3r_version.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_globals.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_globals.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_gog_content_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_gog_content_path.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_hw_shader_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_hw_shader_registry.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_hw_texture_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_hw_texture_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_hw_texture_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_hw_texture_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_hw_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_hw_video.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_hw_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_hw_video.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_image_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_image_decoder.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_image_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_image_decoder.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_image_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_image_encoder.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_image_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_image_encoder.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_image_extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_image_extractor.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_image_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_image_extractor.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_level_extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_level_extractor.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_level_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_level_extractor.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_logger.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_logger.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_math.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_memory.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_memory.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_memory_pool_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_memory_pool_bitmap.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_memory_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_memory_resource.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_memory_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_memory_resource.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_memory_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_memory_stream.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_memory_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_memory_stream.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_mod_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_mod_value.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_mt_task_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_mt_task_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_mt_task_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_mt_task_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_nuked_opl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_nuked_opl3.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_nuked_opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_nuked_opl3.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_oal_audio_mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_oal_audio_mixer.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_oal_audio_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_oal_audio_mixer.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_oal_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_oal_loader.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_oal_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_oal_loader.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_oal_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_oal_resource.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_oal_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_oal_resource.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_oal_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_oal_source.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_oal_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_oal_source.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_oal_symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_oal_symbols.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_oal_symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_oal_symbols.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_offset_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_offset_2d.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_offset_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_offset_2d.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_opl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_opl3.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_opl3.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_page_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_page_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_page_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_page_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_pcm_audio_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_pcm_audio_decoder.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_platform.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_posix_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_posix_string.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_posix_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_posix_string.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_precompiled.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_process.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_process.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_process_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_process_posix.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_process_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_process_win32.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_ps_fizzle_fx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ps_fizzle_fx.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_ps_fizzle_fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ps_fizzle_fx.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r2_extent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r2_extent.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r2_offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r2_offset.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_buffer.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_buffer.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_cmd_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_cmd_buffer.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_cmd_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_cmd_buffer.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_limits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_limits.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_limits.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_r2_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_r2_texture.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_r2_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_r2_texture.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_sampler.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_sampler.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_shader.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_shader.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_shader_stage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_shader_stage.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_shader_stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_shader_stage.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_shader_var.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_shader_var.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_shader_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_shader_var.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_tests.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_types.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_utils.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_utils.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_vertex_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_vertex_input.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_r3r_vertex_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_r3r_vertex_input.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_ref_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_ref_values.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_renderer_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_renderer_type.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_rgb8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_rgb8.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_rgb8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_rgb8.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_rgb_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_rgb_palette.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_rlew_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_rlew_decoder.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_rlew_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_rlew_decoder.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_saved_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_saved_game.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_saved_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_saved_game.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_scope_exit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_scope_exit.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_scope_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_scope_exit.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sha1.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sha1.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_shared_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_shared_library.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_shared_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_shared_library.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_source_location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_source_location.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_source_location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_source_location.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_span.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_span.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sprite.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sprite.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sprite_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sprite_cache.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sprite_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sprite_cache.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_stb_image_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_stb_image_decoder.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_stb_image_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_stb_image_encoder.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_stb_image_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_stb_image_utils.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_stb_image_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_stb_image_utils.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_stream.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_stream.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_string.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_string.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_string_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_string_helper.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_string_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_string_helper.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_string_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_string_view.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_string_view.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_string_view_hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_string_view_hasher.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sw_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sw_video.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sw_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sw_video.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_audio_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_audio_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_audio_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_audio_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_audio_mgr_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_audio_mgr_null.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_audio_mgr_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_audio_mgr_sdl2.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_color.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_color.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_detail_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_detail_sdl2.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_detail_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_detail_sdl2.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_display_mode.cpp: -------------------------------------------------------------------------------- 1 | #include "bstone_sys_display_mode.h" 2 | -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_display_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_display_mode.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_event.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_event.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_event_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_event_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_event_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_event_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_event_mgr_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_event_mgr_null.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_event_mgr_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_event_mgr_sdl2.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_exception_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_exception_sdl2.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_gl_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_gl_context.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_gl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_gl_context.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_keyboard_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_keyboard_key.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_keyboard_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_keyboard_key.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_limits_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_limits_sdl2.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_logger.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_logger.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_message_box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_message_box.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_message_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_message_box.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_mouse.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_mouse.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_mouse_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_mouse_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_mouse_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_mouse_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_mouse_mgr_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_mouse_mgr_sdl2.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_pixel_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_pixel_format.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_pixel_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_pixel_format.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_rectangle.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_rectangle.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_renderer.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_renderer.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_renderer_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_renderer_sdl2.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_sdl2_subsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_sdl2_subsystem.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_special_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_special_path.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_special_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_special_path.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_system_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_system_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_system_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_system_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_texture.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_texture.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_texture_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_texture_lock.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_texture_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_texture_lock.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_texture_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_texture_sdl2.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_texture_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_texture_sdl2.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_video_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_video_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_video_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_video_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_video_mgr_null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_video_mgr_null.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_video_mgr_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_video_mgr_sdl2.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_window.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_window.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_window_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_window_mgr.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_window_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_window_mgr.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_window_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_window_sdl2.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_window_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_window_sdl2.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_sys_window_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_sys_window_size.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_system_audio_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_system_audio_mixer.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_text_extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_text_extractor.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_text_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_text_extractor.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_text_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_text_reader.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_text_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_text_reader.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_text_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_text_writer.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_text_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_text_writer.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_time.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_time.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_type_traits.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_unicode.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_unicode.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_unique_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_unique_resource.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_unique_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_unique_resource.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_utf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_utf.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_utf.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_utf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_utf16.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_utf16.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_utf8.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_utf8.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_utility.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_utility.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_uuid.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_uuid.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_uuid_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_uuid_unix.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_uuid_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_uuid_win32.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_version.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_version.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_version_.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_version_.h.in -------------------------------------------------------------------------------- /src/bstone/src/bstone_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_video.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_video.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_video_cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_video_cvars.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_video_cvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_video_cvars.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_voice.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_voice_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_voice_group.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_voice_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_voice_group.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_win32_com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_win32_com.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_win32_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_win32_com.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_win32_os_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_win32_os_version.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_win32_os_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_win32_os_version.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_win32_registry_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_win32_registry_key.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_win32_wstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_win32_wstring.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_win32_wstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_win32_wstring.h -------------------------------------------------------------------------------- /src/bstone/src/bstone_zstring_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_zstring_view.cpp -------------------------------------------------------------------------------- /src/bstone/src/bstone_zstring_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/bstone_zstring_view.h -------------------------------------------------------------------------------- /src/bstone/src/colormap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/colormap.cpp -------------------------------------------------------------------------------- /src/bstone/src/d3_d2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/d3_d2.cpp -------------------------------------------------------------------------------- /src/bstone/src/d3_d2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/d3_d2.h -------------------------------------------------------------------------------- /src/bstone/src/d3_dr2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/d3_dr2.cpp -------------------------------------------------------------------------------- /src/bstone/src/dosbox/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/COPYING -------------------------------------------------------------------------------- /src/bstone/src/dosbox/adlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/adlib.h -------------------------------------------------------------------------------- /src/bstone/src/dosbox/dbopl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/dbopl.cpp -------------------------------------------------------------------------------- /src/bstone/src/dosbox/dbopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/dbopl.h -------------------------------------------------------------------------------- /src/bstone/src/dosbox/dosbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/dosbox.h -------------------------------------------------------------------------------- /src/bstone/src/dosbox/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/hardware.h -------------------------------------------------------------------------------- /src/bstone/src/dosbox/inout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/inout.h -------------------------------------------------------------------------------- /src/bstone/src/dosbox/mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/mixer.cpp -------------------------------------------------------------------------------- /src/bstone/src/dosbox/mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/mixer.h -------------------------------------------------------------------------------- /src/bstone/src/dosbox/pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/pic.h -------------------------------------------------------------------------------- /src/bstone/src/dosbox/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/dosbox/setup.h -------------------------------------------------------------------------------- /src/bstone/src/gfxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/gfxv.h -------------------------------------------------------------------------------- /src/bstone/src/id_ca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_ca.cpp -------------------------------------------------------------------------------- /src/bstone/src/id_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_ca.h -------------------------------------------------------------------------------- /src/bstone/src/id_heads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_heads.h -------------------------------------------------------------------------------- /src/bstone/src/id_in.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_in.cpp -------------------------------------------------------------------------------- /src/bstone/src/id_in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_in.h -------------------------------------------------------------------------------- /src/bstone/src/id_sd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_sd.cpp -------------------------------------------------------------------------------- /src/bstone/src/id_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_sd.h -------------------------------------------------------------------------------- /src/bstone/src/id_us.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_us.cpp -------------------------------------------------------------------------------- /src/bstone/src/id_us.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_us.h -------------------------------------------------------------------------------- /src/bstone/src/id_us_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_us_1.cpp -------------------------------------------------------------------------------- /src/bstone/src/id_vh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_vh.cpp -------------------------------------------------------------------------------- /src/bstone/src/id_vh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_vh.h -------------------------------------------------------------------------------- /src/bstone/src/id_vl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_vl.cpp -------------------------------------------------------------------------------- /src/bstone/src/id_vl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/id_vl.h -------------------------------------------------------------------------------- /src/bstone/src/jm_cio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/jm_cio.h -------------------------------------------------------------------------------- /src/bstone/src/jm_free.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/jm_free.cpp -------------------------------------------------------------------------------- /src/bstone/src/jm_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/jm_io.cpp -------------------------------------------------------------------------------- /src/bstone/src/jm_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/jm_io.h -------------------------------------------------------------------------------- /src/bstone/src/jm_lzh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/jm_lzh.cpp -------------------------------------------------------------------------------- /src/bstone/src/jm_lzh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/jm_lzh.h -------------------------------------------------------------------------------- /src/bstone/src/jm_tp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/jm_tp.cpp -------------------------------------------------------------------------------- /src/bstone/src/jm_tp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/jm_tp.h -------------------------------------------------------------------------------- /src/bstone/src/jm_vl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/jm_vl.h -------------------------------------------------------------------------------- /src/bstone/src/markhack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/markhack.cpp -------------------------------------------------------------------------------- /src/bstone/src/movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/movie.cpp -------------------------------------------------------------------------------- /src/bstone/src/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/movie.h -------------------------------------------------------------------------------- /src/bstone/src/resources/src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/resources/src/LICENSE.txt -------------------------------------------------------------------------------- /src/bstone/src/scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/scale.cpp -------------------------------------------------------------------------------- /src/bstone/src/stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/stub.cpp -------------------------------------------------------------------------------- /src/bstone/src/vgapal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/bstone/src/vgapal.cpp -------------------------------------------------------------------------------- /src/lib/khronos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/khronos/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/khronos/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/khronos/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /src/lib/nuked_opl3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/nuked_opl3/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/nuked_opl3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/nuked_opl3/LICENSE -------------------------------------------------------------------------------- /src/lib/nuked_opl3/bstone_changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/nuked_opl3/bstone_changelog.txt -------------------------------------------------------------------------------- /src/lib/nuked_opl3/include/opl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/nuked_opl3/include/opl3.h -------------------------------------------------------------------------------- /src/lib/nuked_opl3/src/opl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/nuked_opl3/src/opl3.c -------------------------------------------------------------------------------- /src/lib/nuked_opl3/src/opl3.cpp: -------------------------------------------------------------------------------- 1 | #include "opl3.c" 2 | -------------------------------------------------------------------------------- /src/lib/openal_soft/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/openal_soft/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/openal_soft/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/openal_soft/COPYING -------------------------------------------------------------------------------- /src/lib/openal_soft/include/AL/al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/openal_soft/include/AL/al.h -------------------------------------------------------------------------------- /src/lib/openal_soft/include/AL/alc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/openal_soft/include/AL/alc.h -------------------------------------------------------------------------------- /src/lib/openal_soft/include/AL/alext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/openal_soft/include/AL/alext.h -------------------------------------------------------------------------------- /src/lib/openal_soft/include/AL/efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/openal_soft/include/AL/efx.h -------------------------------------------------------------------------------- /src/lib/openal_soft/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/openal_soft/readme.txt -------------------------------------------------------------------------------- /src/lib/sdl2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/sdl2/bstone_sdl2_changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/bstone_sdl2_changelog.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/.clang-format -------------------------------------------------------------------------------- /src/lib/sdl2/src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/.editorconfig -------------------------------------------------------------------------------- /src/lib/sdl2/src/.git-hash: -------------------------------------------------------------------------------- 1 | e11183ea6caa3ae4895f4bc54cad2bbb0e365417 2 | -------------------------------------------------------------------------------- /src/lib/sdl2/src/.wikiheaders-options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/.wikiheaders-options -------------------------------------------------------------------------------- /src/lib/sdl2/src/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/Android.mk -------------------------------------------------------------------------------- /src/lib/sdl2/src/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/BUGS.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/CREDITS.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/INSTALL.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/LICENSE.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/Makefile.in -------------------------------------------------------------------------------- /src/lib/sdl2/src/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/Makefile.minimal -------------------------------------------------------------------------------- /src/lib/sdl2/src/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/Makefile.os2 -------------------------------------------------------------------------------- /src/lib/sdl2/src/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/Makefile.pandora -------------------------------------------------------------------------------- /src/lib/sdl2/src/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/Makefile.w32 -------------------------------------------------------------------------------- /src/lib/sdl2/src/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/README-SDL.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/README.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/REVISION.txt: -------------------------------------------------------------------------------- 1 | release-2.32.2-0-ge11183ea6 2 | -------------------------------------------------------------------------------- /src/lib/sdl2/src/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/SDL2.spec.in -------------------------------------------------------------------------------- /src/lib/sdl2/src/SDL2Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/SDL2Config.cmake.in -------------------------------------------------------------------------------- /src/lib/sdl2/src/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/TODO.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/VisualC-GDK/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/VisualC-GDK/SDL.sln -------------------------------------------------------------------------------- /src/lib/sdl2/src/VisualC-GDK/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/VisualC-GDK/clean.sh -------------------------------------------------------------------------------- /src/lib/sdl2/src/VisualC-WinRT/SDL-UWP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/VisualC-WinRT/SDL-UWP.sln -------------------------------------------------------------------------------- /src/lib/sdl2/src/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/VisualC/SDL.sln -------------------------------------------------------------------------------- /src/lib/sdl2/src/VisualC/SDL/SDL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/VisualC/SDL/SDL.vcxproj -------------------------------------------------------------------------------- /src/lib/sdl2/src/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/VisualC/clean.sh -------------------------------------------------------------------------------- /src/lib/sdl2/src/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/WhatsNew.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/Xcode-iOS/Demos/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/Xcode-iOS/Demos/Icon.png -------------------------------------------------------------------------------- /src/lib/sdl2/src/Xcode-iOS/Demos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/Xcode-iOS/Demos/README -------------------------------------------------------------------------------- /src/lib/sdl2/src/Xcode/SDL/SDL2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/Xcode/SDL/SDL2/Info.plist -------------------------------------------------------------------------------- /src/lib/sdl2/src/acinclude/alsa.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/acinclude/alsa.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/acinclude/esd.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/acinclude/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/acinclude/libtool.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/acinclude/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/acinclude/ltoptions.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/acinclude/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/acinclude/ltsugar.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/acinclude/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/acinclude/ltversion.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/acinclude/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/acinclude/lt~obsolete.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/acinclude/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/acinclude/pkg.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/android-project-ant/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /src/lib/sdl2/src/android-project/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /src/lib/sdl2/src/android-project/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/android-project/gradlew -------------------------------------------------------------------------------- /src/lib/sdl2/src/android-project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /src/lib/sdl2/src/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/autogen.sh -------------------------------------------------------------------------------- /src/lib/sdl2/src/build-scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/build-scripts/config.sub -------------------------------------------------------------------------------- /src/lib/sdl2/src/build-scripts/fnsince.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/build-scripts/fnsince.pl -------------------------------------------------------------------------------- /src/lib/sdl2/src/build-scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/build-scripts/install-sh -------------------------------------------------------------------------------- /src/lib/sdl2/src/build-scripts/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/build-scripts/ltmain.sh -------------------------------------------------------------------------------- /src/lib/sdl2/src/build-scripts/showrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/build-scripts/showrev.sh -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/macros.cmake -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/sdlchecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/sdlchecks.cmake -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/sdlfind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/sdlfind.cmake -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/sdlplatform.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/sdlplatform.cmake -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/test/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/test/jni/Android.mk -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/test/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/test/main.swift -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/test/main_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/test/main_cli.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/test/main_gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/test/main_gui.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/test/main_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/test/main_lib.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/test/sdltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/test/sdltest.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake/test/swift/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake/test/swift/shim.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /src/lib/sdl2/src/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/configure -------------------------------------------------------------------------------- /src/lib/sdl2/src/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/configure.ac -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-android.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-cmake.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-directfb.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-dynapi.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-emscripten.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-gdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-gdk.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-gesture.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-git.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-hg.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-ios.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-kmsbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-kmsbsd.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-linux.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-macos.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-n3ds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-n3ds.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-nacl.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-ngage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-ngage.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-os2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-os2.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-pandora.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-platforms.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-porting.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-ps2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-ps2.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-psp.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-riscos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-riscos.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-touch.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-versions.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-visualc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-visualc.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-vita.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-vita.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-wince.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-windows.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README-winrt.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/README.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/doxyfile -------------------------------------------------------------------------------- /src/lib/sdl2/src/docs/release_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/docs/release_checklist.md -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_assert.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_atomic.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_audio.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_bits.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_blendmode.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_clipboard.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_config.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_config.h.in -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_config_os2.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_config_xbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_config_xbox.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_copying.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_egl.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_endian.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_error.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_events.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_filesystem.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_gesture.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_guid.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_haptic.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_hidapi.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_hints.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_joystick.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_keyboard.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_keycode.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_loadso.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_locale.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_log.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_main.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_messagebox.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_metal.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_misc.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_mouse.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_mutex.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_name.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_opengl.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_opengles.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_opengles2.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_pixels.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_platform.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_power.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_quit.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_rect.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_render.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_revision.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_rwops.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_scancode.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_sensor.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_shape.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_stdinc.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_surface.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_system.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_syswm.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test_assert.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test_common.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test_font.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test_images.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test_log.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test_md5.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test_memory.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_test_random.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_thread.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_timer.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_touch.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_types.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_version.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_video.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/SDL_vulkan.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/begin_code.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/include/close_code.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/sdl2-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/sdl2-config.cmake.in -------------------------------------------------------------------------------- /src/lib/sdl2/src/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/sdl2-config.in -------------------------------------------------------------------------------- /src/lib/sdl2/src/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/sdl2.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/sdl2.pc.in -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_assert.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_assert_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_dataqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_dataqueue.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_dataqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_dataqueue.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_error.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_error_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_error_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_guid.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_hints.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_hints_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_hints_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_internal.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_list.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_list.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_log.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_log_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_log_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_utils.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/SDL_utils_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/SDL_utils_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/atomic/SDL_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/atomic/SDL_atomic.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/atomic/SDL_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/atomic/SDL_spinlock.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/audio/SDL_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/audio/SDL_audio.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/audio/SDL_audio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/audio/SDL_audio_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/audio/SDL_audiocvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/audio/SDL_audiocvt.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/audio/SDL_audiodev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/audio/SDL_audiodev.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/audio/SDL_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/audio/SDL_mixer.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/audio/SDL_sysaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/audio/SDL_sysaudio.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/audio/SDL_wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/audio/SDL_wave.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/audio/SDL_wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/audio/SDL_wave.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/gdk/SDL_gdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/gdk/SDL_gdk.cpp -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/gdk/SDL_gdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/gdk/SDL_gdk.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/linux/SDL_dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/linux/SDL_dbus.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/linux/SDL_dbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/linux/SDL_dbus.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/linux/SDL_ibus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/linux/SDL_ibus.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/linux/SDL_ibus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/linux/SDL_ibus.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/linux/SDL_ime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/linux/SDL_ime.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/linux/SDL_ime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/linux/SDL_ime.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/linux/SDL_udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/linux/SDL_udev.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/linux/SDL_udev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/linux/SDL_udev.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/os2/SDL_os2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/os2/SDL_os2.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/os2/SDL_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/os2/SDL_os2.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/os2/iconv2.lbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/os2/iconv2.lbc -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/unix/SDL_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/unix/SDL_poll.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/core/unix/SDL_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/core/unix/SDL_poll.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/cpuinfo/SDL_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/cpuinfo/SDL_cpuinfo.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/dynapi/SDL2.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/dynapi/SDL2.exports -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/dynapi/SDL_dynapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/dynapi/SDL_dynapi.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/dynapi/SDL_dynapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/dynapi/SDL_dynapi.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/dynapi/gendynapi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/dynapi/gendynapi.pl -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/SDL_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/SDL_events.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/SDL_events_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/SDL_events_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/SDL_gesture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/SDL_gesture.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/SDL_keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/SDL_keyboard.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/SDL_mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/SDL_mouse.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/SDL_mouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/SDL_mouse_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/SDL_quit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/SDL_quit.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/SDL_touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/SDL_touch.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/SDL_touch_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/SDL_touch_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/blank_cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/blank_cursor.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/imKStoUCS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/imKStoUCS.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/events/imKStoUCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/events/imKStoUCS.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/file/SDL_rwops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/file/SDL_rwops.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/haptic/SDL_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/haptic/SDL_haptic.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/haptic/SDL_haptic_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/haptic/SDL_haptic_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/AUTHORS.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/HACKING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/HACKING.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/LICENSE.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/Makefile.am -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/README.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/SDL_hidapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/SDL_hidapi.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/SDL_hidapi_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/SDL_hidapi_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/bootstrap -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/configure.ac -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/ios/hid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/ios/hid.m -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/libusb/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/libusb/hid.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/libusb/hidusb.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDUSB 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/linux/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/linux/hid.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/linux/hidraw.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDRAW 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/m4/pkg.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/mac/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/mac/hid.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/testgui/TestGUI.app.in/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/hidapi/windows/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/hidapi/windows/hid.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/joystick/usb_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/joystick/usb_ids.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/e_atan2.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/e_exp.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/e_fmod.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/e_log.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/e_log10.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/e_pow.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/e_sqrt.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/k_cos.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/k_sin.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/k_tan.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/math_libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/math_libm.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/math_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/math_private.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/s_atan.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/s_copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/s_copysign.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/s_cos.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/s_fabs.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/s_floor.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/s_scalbn.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/s_sin.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/libm/s_tan.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/locale/SDL_locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/locale/SDL_locale.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/main/haiku/SDL_BApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/main/haiku/SDL_BApp.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/misc/SDL_sysurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/misc/SDL_sysurl.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/misc/SDL_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/misc/SDL_url.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/misc/ios/SDL_sysurl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/misc/ios/SDL_sysurl.m -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/power/SDL_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/power/SDL_power.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/power/SDL_syspower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/power/SDL_syspower.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/render/SDL_d3dmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/render/SDL_d3dmath.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/render/SDL_d3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/render/SDL_d3dmath.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/render/SDL_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/render/SDL_render.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/render/SDL_yuv_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/render/SDL_yuv_sw.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/render/SDL_yuv_sw_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/render/SDL_yuv_sw_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/sensor/SDL_sensor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/sensor/SDL_sensor.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/sensor/SDL_sensor_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/sensor/SDL_sensor_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_crc16.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_crc32.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_getenv.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_iconv.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_malloc.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_mslibc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_mslibc.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_qsort.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_stdlib.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_string.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_strtokr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_strtokr.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/stdlib/SDL_vacopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/stdlib/SDL_vacopy.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/test/SDL_test_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/test/SDL_test_crc32.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/test/SDL_test_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/test/SDL_test_font.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/test/SDL_test_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/test/SDL_test_log.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/test/SDL_test_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/test/SDL_test_md5.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/thread/SDL_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/thread/SDL_thread.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/thread/SDL_thread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/thread/SDL_thread_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/timer/SDL_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/timer/SDL_timer.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/timer/SDL_timer_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/timer/SDL_timer_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_RLEaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_RLEaccel.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit_0.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit_1.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit_A.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit_A.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit_N.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit_auto.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit_auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit_auto.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit_copy.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit_copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit_copy.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit_slow.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_blit_slow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_blit_slow.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_bmp.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_clipboard.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_egl.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_egl_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_egl_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_fillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_fillrect.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_pixels.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_pixels_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_pixels_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_rect.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_rect_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_rect_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_rect_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_rect_impl.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_shape.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_stretch.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_surface.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_sysvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_sysvideo.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_video.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_yuv.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/SDL_yuv_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/SDL_yuv_c.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/os2/SDL_gradd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/os2/SDL_gradd.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/psp/SDL_pspgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/psp/SDL_pspgl.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/qnx/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/qnx/gl.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/qnx/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/qnx/keyboard.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/qnx/sdl_qnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/qnx/sdl_qnx.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/qnx/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/qnx/video.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/sdlgenblit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/sdlgenblit.pl -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/windows/wmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/windows/wmmsg.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/x11/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/x11/edid.h -------------------------------------------------------------------------------- /src/lib/sdl2/src/src/video/yuv2rgb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/src/video/yuv2rgb/LICENSE -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/visualtest/COPYING.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/visualtest/Makefile.in -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/visualtest/README.txt -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/visualtest/acinclude.m4 -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/visualtest/autogen.sh -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions: -------------------------------------------------------------------------------- 1 | 00:00:02 QUIT -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/visualtest/configure -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/visualtest/configure.ac -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/visualtest/docs/Doxyfile -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/src/rwhelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/sdl2/src/visualtest/src/rwhelper.c -------------------------------------------------------------------------------- /src/lib/sdl2/src/visualtest/unittest/testquit.actions: -------------------------------------------------------------------------------- 1 | 00:00:05 QUIT -------------------------------------------------------------------------------- /src/lib/stb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/stb/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/stb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/stb/LICENSE -------------------------------------------------------------------------------- /src/lib/stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/stb/README.md -------------------------------------------------------------------------------- /src/lib/stb/include/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/stb/include/stb_image.h -------------------------------------------------------------------------------- /src/lib/stb/include/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/stb/include/stb_image_write.h -------------------------------------------------------------------------------- /src/lib/xbrz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/xbrz/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/xbrz/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/xbrz/Changelog.txt -------------------------------------------------------------------------------- /src/lib/xbrz/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/xbrz/License.txt -------------------------------------------------------------------------------- /src/lib/xbrz/bstone_changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/xbrz/bstone_changelog.txt -------------------------------------------------------------------------------- /src/lib/xbrz/include/xbrz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/xbrz/include/xbrz.h -------------------------------------------------------------------------------- /src/lib/xbrz/include/xbrz_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/xbrz/include/xbrz_config.h -------------------------------------------------------------------------------- /src/lib/xbrz/include/xbrz_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/xbrz/include/xbrz_tools.h -------------------------------------------------------------------------------- /src/lib/xbrz/src/xbrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/lib/xbrz/src/xbrz.cpp -------------------------------------------------------------------------------- /src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/src/process/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tests/src/process/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tests/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/src/tests/data/bstone_tests_tag.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/src/tests/src/bstone_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tests/src/tests/src/bstone_tester.cpp -------------------------------------------------------------------------------- /src/tests/src/tests/src/bstone_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tests/src/tests/src/bstone_tester.h -------------------------------------------------------------------------------- /src/tests/src/tests/src/bstone_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tests/src/tests/src/bstone_tests.cpp -------------------------------------------------------------------------------- /src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/glapigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tools/glapigen/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/glapigen/src/bstone_glapigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tools/glapigen/src/bstone_glapigen.cpp -------------------------------------------------------------------------------- /src/tools/ltrimcs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tools/ltrimcs/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/ltrimcs/src/bstone_ltrimcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/src/tools/ltrimcs/src/bstone_ltrimcs.cpp -------------------------------------------------------------------------------- /unsupported/psvita/README-PSVITA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/unsupported/psvita/README-PSVITA.md -------------------------------------------------------------------------------- /unsupported/psvita/src/vita/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/unsupported/psvita/src/vita/CMakeLists.txt -------------------------------------------------------------------------------- /unsupported/psvita/src/vita/Issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bibendovsky/bstone/HEAD/unsupported/psvita/src/vita/Issues.md --------------------------------------------------------------------------------