├── .gitattributes ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── 3rdParty ├── Breakpad │ ├── .travis.yml │ ├── AUTHORS │ ├── ChangeLog │ ├── DEPS │ ├── INSTALL │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README.ANDROID │ ├── README.md │ ├── aclocal.m4 │ ├── android │ │ ├── common-functions.sh │ │ ├── google_breakpad │ │ │ └── Android.mk │ │ ├── run-checks.sh │ │ ├── sample_app │ │ │ ├── README │ │ │ └── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ └── test_breakpad.cpp │ │ ├── test-driver │ │ └── test-shell.sh │ ├── appveyor.yml │ ├── autotools │ │ ├── ar-lib │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ ├── root-test-driver │ │ └── test-driver │ ├── breakpad-client.pc.in │ ├── breakpad.pc.in │ ├── codereview.settings │ ├── configure │ ├── configure.ac │ ├── default.xml │ ├── docs │ │ ├── OWNERS │ │ ├── breakpad.png │ │ ├── breakpad.svg │ │ ├── client_design.md │ │ ├── contributing_to_breakpad.md │ │ ├── exception_handling.md │ │ ├── getting_started_with_breakpad.md │ │ ├── linux_starter_guide.md │ │ ├── linux_system_calls.md │ │ ├── mac_breakpad_starter_guide.md │ │ ├── mozilla_brown_bag_talk.md │ │ ├── processor_design.md │ │ ├── stack_walking.md │ │ ├── symbol_files.md │ │ └── windows_client_integration.md │ ├── m4 │ │ ├── ax_append_compile_flags.m4 │ │ ├── ax_append_flag.m4 │ │ ├── ax_check_compile_flag.m4 │ │ ├── ax_check_define.m4 │ │ ├── ax_cxx_compile_stdcxx.m4 │ │ ├── ax_pthread.m4 │ │ ├── ax_require_defined.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── scripts │ │ ├── travis-build.sh │ │ └── travis-checkout.sh │ └── src │ │ ├── breakpad_googletest_includes.h │ │ ├── build │ │ ├── all.gyp │ │ ├── common.gypi │ │ ├── filename_rules.gypi │ │ ├── gyp_breakpad │ │ └── testing.gyp │ │ ├── client │ │ ├── apple │ │ │ └── Framework │ │ │ │ └── BreakpadDefines.h │ │ ├── ios │ │ │ ├── Breakpad.h │ │ │ ├── Breakpad.mm │ │ │ ├── Breakpad.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── BreakpadController.h │ │ │ ├── BreakpadController.mm │ │ │ ├── exception_handler_no_mach.cc │ │ │ ├── exception_handler_no_mach.h │ │ │ └── handler │ │ │ │ ├── ios_exception_minidump_generator.h │ │ │ │ └── ios_exception_minidump_generator.mm │ │ ├── linux │ │ │ ├── crash_generation │ │ │ │ ├── client_info.h │ │ │ │ ├── crash_generation_client.cc │ │ │ │ ├── crash_generation_client.h │ │ │ │ ├── crash_generation_server.cc │ │ │ │ └── crash_generation_server.h │ │ │ ├── data │ │ │ │ ├── linux-gate-amd.sym │ │ │ │ └── linux-gate-intel.sym │ │ │ ├── dump_writer_common │ │ │ │ ├── mapping_info.h │ │ │ │ ├── raw_context_cpu.h │ │ │ │ ├── thread_info.cc │ │ │ │ ├── thread_info.h │ │ │ │ ├── ucontext_reader.cc │ │ │ │ └── ucontext_reader.h │ │ │ ├── handler │ │ │ │ ├── exception_handler.cc │ │ │ │ ├── exception_handler.h │ │ │ │ ├── exception_handler_unittest.cc │ │ │ │ ├── microdump_extra_info.h │ │ │ │ ├── minidump_descriptor.cc │ │ │ │ └── minidump_descriptor.h │ │ │ ├── microdump_writer │ │ │ │ ├── microdump_writer.cc │ │ │ │ ├── microdump_writer.h │ │ │ │ └── microdump_writer_unittest.cc │ │ │ ├── minidump_writer │ │ │ │ ├── cpu_set.h │ │ │ │ ├── cpu_set_unittest.cc │ │ │ │ ├── directory_reader.h │ │ │ │ ├── directory_reader_unittest.cc │ │ │ │ ├── line_reader.h │ │ │ │ ├── line_reader_unittest.cc │ │ │ │ ├── linux_core_dumper.cc │ │ │ │ ├── linux_core_dumper.h │ │ │ │ ├── linux_core_dumper_unittest.cc │ │ │ │ ├── linux_dumper.cc │ │ │ │ ├── linux_dumper.h │ │ │ │ ├── linux_dumper_unittest_helper.cc │ │ │ │ ├── linux_ptrace_dumper.cc │ │ │ │ ├── linux_ptrace_dumper.h │ │ │ │ ├── linux_ptrace_dumper_unittest.cc │ │ │ │ ├── minidump_writer.cc │ │ │ │ ├── minidump_writer.h │ │ │ │ ├── minidump_writer_unittest.cc │ │ │ │ ├── minidump_writer_unittest_utils.cc │ │ │ │ ├── minidump_writer_unittest_utils.h │ │ │ │ ├── proc_cpuinfo_reader.h │ │ │ │ └── proc_cpuinfo_reader_unittest.cc │ │ │ └── sender │ │ │ │ └── google_crash_report_sender.cc │ │ ├── mac │ │ │ ├── Breakpad.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── Framework │ │ │ │ ├── Breakpad.h │ │ │ │ ├── Breakpad.mm │ │ │ │ ├── Info.plist │ │ │ │ ├── OnDemandServer.h │ │ │ │ └── OnDemandServer.mm │ │ │ ├── UnitTests-Info.plist │ │ │ ├── crash_generation │ │ │ │ ├── ConfigFile.h │ │ │ │ ├── ConfigFile.mm │ │ │ │ ├── Inspector.h │ │ │ │ ├── Inspector.mm │ │ │ │ ├── InspectorMain.mm │ │ │ │ ├── client_info.h │ │ │ │ ├── crash_generation_client.cc │ │ │ │ ├── crash_generation_client.h │ │ │ │ ├── crash_generation_server.cc │ │ │ │ └── crash_generation_server.h │ │ │ ├── gcov │ │ │ │ └── libgcov.a │ │ │ ├── handler │ │ │ │ ├── breakpad_nlist_64.cc │ │ │ │ ├── breakpad_nlist_64.h │ │ │ │ ├── dynamic_images.cc │ │ │ │ ├── dynamic_images.h │ │ │ │ ├── exception_handler.cc │ │ │ │ ├── exception_handler.h │ │ │ │ ├── mach_vm_compat.h │ │ │ │ ├── minidump_generator.cc │ │ │ │ ├── minidump_generator.h │ │ │ │ ├── minidump_test.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── minidump_tests32-Info.plist │ │ │ │ ├── minidump_tests64-Info.plist │ │ │ │ ├── obj-cTestCases-Info.plist │ │ │ │ ├── protected_memory_allocator.cc │ │ │ │ ├── protected_memory_allocator.h │ │ │ │ ├── testcases │ │ │ │ │ ├── DynamicImagesTests.cc │ │ │ │ │ ├── DynamicImagesTests.h │ │ │ │ │ ├── breakpad_nlist_test.cc │ │ │ │ │ ├── breakpad_nlist_test.h │ │ │ │ │ ├── dwarftests.h │ │ │ │ │ ├── dwarftests.mm │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── dump_syms_dwarf_data │ │ │ │ │ │ └── dump_syms_i386_breakpad.sym │ │ │ │ └── ucontext_compat.h │ │ │ ├── sender │ │ │ │ ├── Breakpad.xib │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── ReporterIcon.graffle │ │ │ │ ├── crash_report_sender-Info.plist │ │ │ │ ├── crash_report_sender.h │ │ │ │ ├── crash_report_sender.icns │ │ │ │ ├── crash_report_sender.m │ │ │ │ ├── da.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── de.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── es.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── fr.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── goArrow.png │ │ │ │ ├── it.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── ja.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── nl.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── no.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── sl.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── sv.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── tr.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── uploader.h │ │ │ │ └── uploader.mm │ │ │ ├── testapp │ │ │ │ ├── Controller.h │ │ │ │ ├── Controller.m │ │ │ │ ├── English.lproj │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ ├── TestClass.h │ │ │ │ ├── TestClass.mm │ │ │ │ ├── bomb.icns │ │ │ │ ├── crashInMain │ │ │ │ ├── crashduringload │ │ │ │ └── main.m │ │ │ └── tests │ │ │ │ ├── BreakpadFramework_Test.mm │ │ │ │ ├── crash_generation_server_test.cc │ │ │ │ ├── exception_handler_test.cc │ │ │ │ ├── minidump_generator_test.cc │ │ │ │ ├── minidump_generator_test_helper.cc │ │ │ │ ├── spawn_child_process.h │ │ │ │ └── testlogging.h │ │ ├── minidump_file_writer-inl.h │ │ ├── minidump_file_writer.cc │ │ ├── minidump_file_writer.h │ │ ├── minidump_file_writer_unittest.cc │ │ ├── solaris │ │ │ └── handler │ │ │ │ ├── Makefile │ │ │ │ ├── exception_handler.cc │ │ │ │ ├── exception_handler.h │ │ │ │ ├── exception_handler_test.cc │ │ │ │ ├── minidump_generator.cc │ │ │ │ ├── minidump_generator.h │ │ │ │ ├── minidump_test.cc │ │ │ │ ├── solaris_lwp.cc │ │ │ │ └── solaris_lwp.h │ │ └── windows │ │ │ ├── breakpad_client.gyp │ │ │ ├── breakpad_client.sln │ │ │ ├── build_all.vcxproj │ │ │ ├── common.vcxproj │ │ │ ├── common.vcxproj.filters │ │ │ ├── common │ │ │ ├── auto_critical_section.h │ │ │ └── ipc_protocol.h │ │ │ ├── crash_generation │ │ │ ├── ReadMe.txt │ │ │ ├── client_info.cc │ │ │ ├── client_info.h │ │ │ ├── crash_generation.gyp │ │ │ ├── crash_generation.sln │ │ │ ├── crash_generation_client.cc │ │ │ ├── crash_generation_client.h │ │ │ ├── crash_generation_client.vcxproj │ │ │ ├── crash_generation_server.cc │ │ │ ├── crash_generation_server.h │ │ │ ├── crash_generation_server.vcxproj │ │ │ ├── minidump_generator.cc │ │ │ └── minidump_generator.h │ │ │ ├── handler │ │ │ ├── exception_handler.cc │ │ │ ├── exception_handler.gyp │ │ │ ├── exception_handler.h │ │ │ ├── exception_handler.sln │ │ │ └── exception_handler.vcxproj │ │ │ ├── sender │ │ │ ├── crash_report_sender.cc │ │ │ ├── crash_report_sender.gyp │ │ │ ├── crash_report_sender.h │ │ │ ├── crash_report_sender.sln │ │ │ └── crash_report_sender.vcxproj │ │ │ ├── tests │ │ │ └── crash_generation_app │ │ │ │ ├── abstract_class.cc │ │ │ │ ├── abstract_class.h │ │ │ │ ├── crash_generation_app.cc │ │ │ │ ├── crash_generation_app.gyp │ │ │ │ ├── crash_generation_app.h │ │ │ │ ├── crash_generation_app.ico │ │ │ │ ├── crash_generation_app.rc │ │ │ │ ├── crash_generation_app.sln │ │ │ │ ├── crash_generation_app.vcxproj │ │ │ │ ├── resource.h │ │ │ │ └── small.ico │ │ │ └── unittests │ │ │ ├── client_tests.gyp │ │ │ ├── client_tests.sln │ │ │ ├── client_tests.vcxproj │ │ │ ├── crash_generation_server_test.cc │ │ │ ├── dump_analysis.cc │ │ │ ├── dump_analysis.h │ │ │ ├── exception_handler_death_test.cc │ │ │ ├── exception_handler_nesting_test.cc │ │ │ ├── exception_handler_test.cc │ │ │ ├── exception_handler_test.h │ │ │ ├── gmock.vcxproj │ │ │ ├── gmock.vcxproj.filters │ │ │ ├── gtest.vcxproj │ │ │ ├── gtest.vcxproj.filters │ │ │ ├── minidump_test.cc │ │ │ ├── processor_bits.vcxproj │ │ │ ├── processor_bits.vcxproj.filters │ │ │ ├── testing.gyp │ │ │ └── testing.sln │ │ ├── common │ │ ├── android │ │ │ ├── breakpad_getcontext.S │ │ │ ├── breakpad_getcontext_unittest.cc │ │ │ ├── include │ │ │ │ ├── asm-mips │ │ │ │ │ ├── README.md │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── fpregdef.h │ │ │ │ │ └── regdef.h │ │ │ │ ├── elf.h │ │ │ │ ├── link.h │ │ │ │ ├── stab.h │ │ │ │ ├── sys │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── signal.h │ │ │ │ │ └── user.h │ │ │ │ └── ucontext.h │ │ │ ├── testing │ │ │ │ ├── include │ │ │ │ │ └── wchar.h │ │ │ │ ├── mkdtemp.h │ │ │ │ └── pthread_fixes.h │ │ │ └── ucontext_constants.h │ │ ├── basictypes.h │ │ ├── byte_cursor.h │ │ ├── byte_cursor_unittest.cc │ │ ├── common.gyp │ │ ├── convert_UTF.cc │ │ ├── convert_UTF.h │ │ ├── dwarf │ │ │ ├── bytereader-inl.h │ │ │ ├── bytereader.cc │ │ │ ├── bytereader.h │ │ │ ├── bytereader_unittest.cc │ │ │ ├── cfi_assembler.cc │ │ │ ├── cfi_assembler.h │ │ │ ├── dwarf2diehandler.cc │ │ │ ├── dwarf2diehandler.h │ │ │ ├── dwarf2diehandler_unittest.cc │ │ │ ├── dwarf2enums.h │ │ │ ├── dwarf2reader.cc │ │ │ ├── dwarf2reader.h │ │ │ ├── dwarf2reader_cfi_unittest.cc │ │ │ ├── dwarf2reader_die_unittest.cc │ │ │ ├── dwarf2reader_test_common.h │ │ │ ├── elf_reader.cc │ │ │ ├── elf_reader.h │ │ │ ├── functioninfo.cc │ │ │ ├── functioninfo.h │ │ │ ├── line_state_machine.h │ │ │ └── types.h │ │ ├── dwarf_cfi_to_module.cc │ │ ├── dwarf_cfi_to_module.h │ │ ├── dwarf_cfi_to_module_unittest.cc │ │ ├── dwarf_cu_to_module.cc │ │ ├── dwarf_cu_to_module.h │ │ ├── dwarf_cu_to_module_unittest.cc │ │ ├── dwarf_line_to_module.cc │ │ ├── dwarf_line_to_module.h │ │ ├── dwarf_line_to_module_unittest.cc │ │ ├── dwarf_range_list_handler.cc │ │ ├── dwarf_range_list_handler.h │ │ ├── language.cc │ │ ├── language.h │ │ ├── linux │ │ │ ├── crc32.cc │ │ │ ├── crc32.h │ │ │ ├── dump_symbols.cc │ │ │ ├── dump_symbols.h │ │ │ ├── dump_symbols_unittest.cc │ │ │ ├── eintr_wrapper.h │ │ │ ├── elf_core_dump.cc │ │ │ ├── elf_core_dump.h │ │ │ ├── elf_core_dump_unittest.cc │ │ │ ├── elf_gnu_compat.h │ │ │ ├── elf_symbols_to_module.cc │ │ │ ├── elf_symbols_to_module.h │ │ │ ├── elf_symbols_to_module_unittest.cc │ │ │ ├── elfutils-inl.h │ │ │ ├── elfutils.cc │ │ │ ├── elfutils.h │ │ │ ├── file_id.cc │ │ │ ├── file_id.h │ │ │ ├── file_id_unittest.cc │ │ │ ├── google_crashdump_uploader.cc │ │ │ ├── google_crashdump_uploader.h │ │ │ ├── google_crashdump_uploader_test.cc │ │ │ ├── guid_creator.cc │ │ │ ├── guid_creator.h │ │ │ ├── http_upload.cc │ │ │ ├── http_upload.h │ │ │ ├── ignore_ret.h │ │ │ ├── libcurl_wrapper.cc │ │ │ ├── libcurl_wrapper.h │ │ │ ├── linux_libc_support.cc │ │ │ ├── linux_libc_support.h │ │ │ ├── linux_libc_support_unittest.cc │ │ │ ├── memory_mapped_file.cc │ │ │ ├── memory_mapped_file.h │ │ │ ├── memory_mapped_file_unittest.cc │ │ │ ├── safe_readlink.cc │ │ │ ├── safe_readlink.h │ │ │ ├── safe_readlink_unittest.cc │ │ │ ├── symbol_upload.cc │ │ │ ├── symbol_upload.h │ │ │ ├── synth_elf.cc │ │ │ ├── synth_elf.h │ │ │ ├── synth_elf_unittest.cc │ │ │ └── tests │ │ │ │ ├── auto_testfile.h │ │ │ │ ├── crash_generator.cc │ │ │ │ └── crash_generator.h │ │ ├── long_string_dictionary.cc │ │ ├── long_string_dictionary.h │ │ ├── long_string_dictionary_unittest.cc │ │ ├── mac │ │ │ ├── Breakpad.xcconfig │ │ │ ├── BreakpadDebug.xcconfig │ │ │ ├── BreakpadRelease.xcconfig │ │ │ ├── GTMDefines.h │ │ │ ├── GTMLogger.h │ │ │ ├── GTMLogger.m │ │ │ ├── HTTPMultipartUpload.h │ │ │ ├── HTTPMultipartUpload.m │ │ │ ├── MachIPC.h │ │ │ ├── MachIPC.mm │ │ │ ├── arch_utilities.cc │ │ │ ├── arch_utilities.h │ │ │ ├── bootstrap_compat.cc │ │ │ ├── bootstrap_compat.h │ │ │ ├── byteswap.h │ │ │ ├── dump_syms.cc │ │ │ ├── dump_syms.h │ │ │ ├── file_id.cc │ │ │ ├── file_id.h │ │ │ ├── launch_reporter.cc │ │ │ ├── launch_reporter.h │ │ │ ├── macho_id.cc │ │ │ ├── macho_id.h │ │ │ ├── macho_reader.cc │ │ │ ├── macho_reader.h │ │ │ ├── macho_reader_unittest.cc │ │ │ ├── macho_utilities.cc │ │ │ ├── macho_utilities.h │ │ │ ├── macho_walker.cc │ │ │ ├── macho_walker.h │ │ │ ├── scoped_task_suspend-inl.h │ │ │ ├── string_utilities.cc │ │ │ ├── string_utilities.h │ │ │ ├── super_fat_arch.h │ │ │ └── testing │ │ │ │ ├── GTMSenTestCase.h │ │ │ │ └── GTMSenTestCase.m │ │ ├── macros.h │ │ ├── md5.cc │ │ ├── md5.h │ │ ├── memory_allocator.h │ │ ├── memory_allocator_unittest.cc │ │ ├── memory_range.h │ │ ├── memory_range_unittest.cc │ │ ├── minidump_type_helper.h │ │ ├── module.cc │ │ ├── module.h │ │ ├── module_unittest.cc │ │ ├── path_helper.cc │ │ ├── path_helper.h │ │ ├── scoped_ptr.h │ │ ├── simple_string_dictionary.cc │ │ ├── simple_string_dictionary.h │ │ ├── simple_string_dictionary_unittest.cc │ │ ├── solaris │ │ │ ├── dump_symbols.cc │ │ │ ├── dump_symbols.h │ │ │ ├── file_id.cc │ │ │ ├── file_id.h │ │ │ ├── guid_creator.cc │ │ │ ├── guid_creator.h │ │ │ └── message_output.h │ │ ├── stabs_reader.cc │ │ ├── stabs_reader.h │ │ ├── stabs_reader_unittest.cc │ │ ├── stabs_to_module.cc │ │ ├── stabs_to_module.h │ │ ├── stabs_to_module_unittest.cc │ │ ├── stdio_wrapper.h │ │ ├── string_conversion.cc │ │ ├── string_conversion.h │ │ ├── string_conversion_unittest.cc │ │ ├── symbol_data.h │ │ ├── test_assembler.cc │ │ ├── test_assembler.h │ │ ├── test_assembler_unittest.cc │ │ ├── testdata │ │ │ └── func-line-pairing.h │ │ ├── tests │ │ │ ├── auto_tempdir.h │ │ │ ├── file_utils.cc │ │ │ └── file_utils.h │ │ ├── unordered.h │ │ ├── using_std_string.h │ │ └── windows │ │ │ ├── common_windows.gyp │ │ │ ├── common_windows.sln │ │ │ ├── common_windows_lib.vcxproj │ │ │ ├── common_windows_unittests.vcxproj │ │ │ ├── dia_sdk.vcxproj │ │ │ ├── dia_util.cc │ │ │ ├── dia_util.h │ │ │ ├── guid_string.cc │ │ │ ├── guid_string.h │ │ │ ├── http_upload.cc │ │ │ ├── http_upload.h │ │ │ ├── module_info.h │ │ │ ├── omap.cc │ │ │ ├── omap.h │ │ │ ├── omap_internal.h │ │ │ ├── omap_unittest.cc │ │ │ ├── pdb_source_line_writer.cc │ │ │ ├── pdb_source_line_writer.h │ │ │ ├── pe_source_line_writer.cc │ │ │ ├── pe_source_line_writer.h │ │ │ ├── pe_util.cc │ │ │ ├── pe_util.h │ │ │ ├── string_utils-inl.h │ │ │ ├── string_utils.cc │ │ │ ├── symbol_collector_client.cc │ │ │ └── symbol_collector_client.h │ │ ├── config.h.in │ │ ├── google_breakpad │ │ ├── common │ │ │ ├── breakpad_types.h │ │ │ ├── minidump_cpu_amd64.h │ │ │ ├── minidump_cpu_arm.h │ │ │ ├── minidump_cpu_arm64.h │ │ │ ├── minidump_cpu_mips.h │ │ │ ├── minidump_cpu_ppc.h │ │ │ ├── minidump_cpu_ppc64.h │ │ │ ├── minidump_cpu_sparc.h │ │ │ ├── minidump_cpu_x86.h │ │ │ ├── minidump_exception_fuchsia.h │ │ │ ├── minidump_exception_linux.h │ │ │ ├── minidump_exception_mac.h │ │ │ ├── minidump_exception_ps3.h │ │ │ ├── minidump_exception_solaris.h │ │ │ ├── minidump_exception_win32.h │ │ │ ├── minidump_format.h │ │ │ └── minidump_size.h │ │ └── processor │ │ │ ├── basic_source_line_resolver.h │ │ │ ├── call_stack.h │ │ │ ├── code_module.h │ │ │ ├── code_modules.h │ │ │ ├── dump_context.h │ │ │ ├── dump_object.h │ │ │ ├── exploitability.h │ │ │ ├── fast_source_line_resolver.h │ │ │ ├── memory_region.h │ │ │ ├── microdump.h │ │ │ ├── microdump_processor.h │ │ │ ├── minidump.h │ │ │ ├── minidump_processor.h │ │ │ ├── proc_maps_linux.h │ │ │ ├── process_result.h │ │ │ ├── process_state.h │ │ │ ├── source_line_resolver_base.h │ │ │ ├── source_line_resolver_interface.h │ │ │ ├── stack_frame.h │ │ │ ├── stack_frame_cpu.h │ │ │ ├── stack_frame_symbolizer.h │ │ │ ├── stackwalker.h │ │ │ ├── symbol_supplier.h │ │ │ └── system_info.h │ │ ├── processor │ │ ├── address_map-inl.h │ │ ├── address_map.h │ │ ├── address_map_unittest.cc │ │ ├── basic_code_module.h │ │ ├── basic_code_modules.cc │ │ ├── basic_code_modules.h │ │ ├── basic_source_line_resolver.cc │ │ ├── basic_source_line_resolver_types.h │ │ ├── basic_source_line_resolver_unittest.cc │ │ ├── call_stack.cc │ │ ├── cfi_frame_info-inl.h │ │ ├── cfi_frame_info.cc │ │ ├── cfi_frame_info.h │ │ ├── cfi_frame_info_unittest.cc │ │ ├── contained_range_map-inl.h │ │ ├── contained_range_map.h │ │ ├── contained_range_map_unittest.cc │ │ ├── convert_old_arm64_context.cc │ │ ├── convert_old_arm64_context.h │ │ ├── disassembler_x86.cc │ │ ├── disassembler_x86.h │ │ ├── disassembler_x86_unittest.cc │ │ ├── dump_context.cc │ │ ├── dump_object.cc │ │ ├── exploitability.cc │ │ ├── exploitability_linux.cc │ │ ├── exploitability_linux.h │ │ ├── exploitability_unittest.cc │ │ ├── exploitability_win.cc │ │ ├── exploitability_win.h │ │ ├── fast_source_line_resolver.cc │ │ ├── fast_source_line_resolver_types.h │ │ ├── fast_source_line_resolver_unittest.cc │ │ ├── linked_ptr.h │ │ ├── logging.cc │ │ ├── logging.h │ │ ├── map_serializers-inl.h │ │ ├── map_serializers.h │ │ ├── map_serializers_unittest.cc │ │ ├── microdump.cc │ │ ├── microdump_processor.cc │ │ ├── microdump_processor_unittest.cc │ │ ├── microdump_stackwalk.cc │ │ ├── microdump_stackwalk_machine_readable_test │ │ ├── microdump_stackwalk_test │ │ ├── microdump_stackwalk_test_vars │ │ ├── minidump.cc │ │ ├── minidump_dump.cc │ │ ├── minidump_dump_test │ │ ├── minidump_processor.cc │ │ ├── minidump_processor_unittest.cc │ │ ├── minidump_stackwalk.cc │ │ ├── minidump_stackwalk_machine_readable_test │ │ ├── minidump_stackwalk_test │ │ ├── minidump_unittest.cc │ │ ├── module_comparer.cc │ │ ├── module_comparer.h │ │ ├── module_factory.h │ │ ├── module_serializer.cc │ │ ├── module_serializer.h │ │ ├── pathname_stripper.cc │ │ ├── pathname_stripper.h │ │ ├── pathname_stripper_unittest.cc │ │ ├── postfix_evaluator-inl.h │ │ ├── postfix_evaluator.h │ │ ├── postfix_evaluator_unittest.cc │ │ ├── proc_maps_linux.cc │ │ ├── proc_maps_linux_unittest.cc │ │ ├── process_state.cc │ │ ├── processor.gyp │ │ ├── processor_tools.gypi │ │ ├── proto │ │ │ ├── README │ │ │ └── process_state.proto │ │ ├── range_map-inl.h │ │ ├── range_map.h │ │ ├── range_map_truncate_lower_unittest.cc │ │ ├── range_map_truncate_upper_unittest.cc │ │ ├── range_map_unittest.cc │ │ ├── simple_serializer-inl.h │ │ ├── simple_serializer.h │ │ ├── simple_symbol_supplier.cc │ │ ├── simple_symbol_supplier.h │ │ ├── source_line_resolver_base.cc │ │ ├── source_line_resolver_base_types.h │ │ ├── stack_frame_cpu.cc │ │ ├── stack_frame_symbolizer.cc │ │ ├── stackwalk_common.cc │ │ ├── stackwalk_common.h │ │ ├── stackwalker.cc │ │ ├── stackwalker_address_list.cc │ │ ├── stackwalker_address_list.h │ │ ├── stackwalker_address_list_unittest.cc │ │ ├── stackwalker_amd64.cc │ │ ├── stackwalker_amd64.h │ │ ├── stackwalker_amd64_unittest.cc │ │ ├── stackwalker_arm.cc │ │ ├── stackwalker_arm.h │ │ ├── stackwalker_arm64.cc │ │ ├── stackwalker_arm64.h │ │ ├── stackwalker_arm64_unittest.cc │ │ ├── stackwalker_arm_unittest.cc │ │ ├── stackwalker_mips.cc │ │ ├── stackwalker_mips.h │ │ ├── stackwalker_mips64_unittest.cc │ │ ├── stackwalker_mips_unittest.cc │ │ ├── stackwalker_ppc.cc │ │ ├── stackwalker_ppc.h │ │ ├── stackwalker_ppc64.cc │ │ ├── stackwalker_ppc64.h │ │ ├── stackwalker_selftest.cc │ │ ├── stackwalker_selftest_sol.s │ │ ├── stackwalker_sparc.cc │ │ ├── stackwalker_sparc.h │ │ ├── stackwalker_unittest_utils.h │ │ ├── stackwalker_x86.cc │ │ ├── stackwalker_x86.h │ │ ├── stackwalker_x86_unittest.cc │ │ ├── static_address_map-inl.h │ │ ├── static_address_map.h │ │ ├── static_address_map_unittest.cc │ │ ├── static_contained_range_map-inl.h │ │ ├── static_contained_range_map.h │ │ ├── static_contained_range_map_unittest.cc │ │ ├── static_map-inl.h │ │ ├── static_map.h │ │ ├── static_map_iterator-inl.h │ │ ├── static_map_iterator.h │ │ ├── static_map_unittest.cc │ │ ├── static_range_map-inl.h │ │ ├── static_range_map.h │ │ ├── static_range_map_unittest.cc │ │ ├── symbolic_constants_win.cc │ │ ├── symbolic_constants_win.h │ │ ├── synth_minidump.cc │ │ ├── synth_minidump.h │ │ ├── synth_minidump_unittest.cc │ │ ├── synth_minidump_unittest_data.h │ │ ├── testdata │ │ │ ├── ascii_read_av.dmp │ │ │ ├── ascii_read_av_block_write.dmp │ │ │ ├── ascii_read_av_clobber_write.dmp │ │ │ ├── ascii_read_av_conditional.dmp │ │ │ ├── ascii_read_av_then_jmp.dmp │ │ │ ├── ascii_read_av_xchg_write.dmp │ │ │ ├── ascii_write_av.dmp │ │ │ ├── ascii_write_av_arg_to_call.dmp │ │ │ ├── exec_av_on_stack.dmp │ │ │ ├── linux_divide_by_zero.dmp │ │ │ ├── linux_executable_heap.dmp │ │ │ ├── linux_executable_stack.dmp │ │ │ ├── linux_inside_module_exe_region1.dmp │ │ │ ├── linux_inside_module_exe_region2.dmp │ │ │ ├── linux_jmp_to_0.dmp │ │ │ ├── linux_jmp_to_module_not_exe_region.dmp │ │ │ ├── linux_null_dereference.dmp │ │ │ ├── linux_null_read_av.dmp │ │ │ ├── linux_outside_module.dmp │ │ │ ├── linux_overflow.dmp │ │ │ ├── linux_raise_sigabrt.dmp │ │ │ ├── linux_stack_pointer_in_module.dmp │ │ │ ├── linux_stack_pointer_in_stack.dmp │ │ │ ├── linux_stack_pointer_in_stack_alt_name.dmp │ │ │ ├── linux_stacksmash.dmp │ │ │ ├── linux_test_app.cc │ │ │ ├── linux_write_to_nonwritable_module.dmp │ │ │ ├── linux_write_to_nonwritable_region_math.dmp │ │ │ ├── linux_write_to_outside_module.dmp │ │ │ ├── linux_write_to_outside_module_via_math.dmp │ │ │ ├── linux_write_to_under_4k.dmp │ │ │ ├── microdump-arm.dmp │ │ │ ├── microdump-arm64.dmp │ │ │ ├── microdump-mips32.dmp │ │ │ ├── microdump-mips64.dmp │ │ │ ├── microdump-multiple.dmp │ │ │ ├── microdump-withcrashreason.dmp │ │ │ ├── microdump-x86.dmp │ │ │ ├── microdump.stackwalk-arm.out │ │ │ ├── microdump.stackwalk-arm64.out │ │ │ ├── microdump.stackwalk.machine_readable-arm.out │ │ │ ├── microdump.stackwalk.machine_readable-arm64.out │ │ │ ├── minidump2.dmp │ │ │ ├── minidump2.dump.out │ │ │ ├── minidump2.stackwalk.machine_readable.out │ │ │ ├── minidump2.stackwalk.out │ │ │ ├── minidump_32bit_crash_addr.dmp │ │ │ ├── module0.out │ │ │ ├── module1.out │ │ │ ├── module2.out │ │ │ ├── module3_bad.out │ │ │ ├── module4_bad.out │ │ │ ├── null_read_av.dmp │ │ │ ├── null_write_av.dmp │ │ │ ├── read_av_clobber_write.dmp │ │ │ ├── read_av_conditional.dmp │ │ │ ├── read_av_non_null.dmp │ │ │ ├── stack_exhaustion.dmp │ │ │ ├── symbols │ │ │ │ ├── ld-2.13.so │ │ │ │ │ └── C32AD7E235EA6112E02A5B9D6219C4850 │ │ │ │ │ │ └── ld-2.13.so.sym │ │ │ │ ├── libc-2.13.so │ │ │ │ │ └── F4F8DFCD5A5FB5A7CE64717E9E6AE3890 │ │ │ │ │ │ └── libc-2.13.so.sym │ │ │ │ ├── libgcc_s.so.1 │ │ │ │ │ └── 18B180F90887D8F8B5C35D185444AF4C0 │ │ │ │ │ │ └── libgcc_s.so.1.sym │ │ │ │ ├── microdump │ │ │ │ │ ├── breakpad_unittests │ │ │ │ │ │ ├── D6D1FEC9A15DE7F38A236898871A2E770 │ │ │ │ │ │ │ └── breakpad_unittests.sym │ │ │ │ │ │ └── DA7778FB66018A4E9B4110ED06E730D00 │ │ │ │ │ │ │ └── breakpad_unittests.sym │ │ │ │ │ └── crash_example │ │ │ │ │ │ ├── 6E72E2F1A5F59AB3D51356FDFE394D490 │ │ │ │ │ │ └── crash_example.sym │ │ │ │ │ │ └── 8F36148CC4647A8116CAF2A25F591F570 │ │ │ │ │ │ └── crash_example.sym │ │ │ │ ├── null_read_av │ │ │ │ │ └── 7B7D1968FF0D47AE4366E9C3A7E1B6750 │ │ │ │ │ │ └── null_read_av.sym │ │ │ │ └── overflow │ │ │ │ │ └── B0E1FC01EF48E39CAF5C881D2DF0C3840 │ │ │ │ │ └── overflow.sym │ │ │ ├── test_app.cc │ │ │ └── write_av_non_null.dmp │ │ ├── tokenize.cc │ │ ├── tokenize.h │ │ └── windows_frame_info.h │ │ ├── third_party │ │ ├── curl │ │ │ ├── COPYING │ │ │ ├── curl.h │ │ │ ├── curlbuild.h │ │ │ ├── curlrules.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ ├── typecheck-gcc.h │ │ │ └── types.h │ │ ├── libdisasm │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.breakpad │ │ │ ├── TODO │ │ │ ├── ia32_implicit.c │ │ │ ├── ia32_implicit.h │ │ │ ├── ia32_insn.c │ │ │ ├── ia32_insn.h │ │ │ ├── ia32_invariant.c │ │ │ ├── ia32_invariant.h │ │ │ ├── ia32_modrm.c │ │ │ ├── ia32_modrm.h │ │ │ ├── ia32_opcode_tables.c │ │ │ ├── ia32_opcode_tables.h │ │ │ ├── ia32_operand.c │ │ │ ├── ia32_operand.h │ │ │ ├── ia32_reg.c │ │ │ ├── ia32_reg.h │ │ │ ├── ia32_settings.c │ │ │ ├── ia32_settings.h │ │ │ ├── libdis.h │ │ │ ├── libdisasm.gyp │ │ │ ├── qword.h │ │ │ ├── swig │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── libdisasm.i │ │ │ │ ├── libdisasm_oop.i │ │ │ │ ├── perl │ │ │ │ │ ├── Makefile-swig │ │ │ │ │ └── Makefile.PL │ │ │ │ ├── python │ │ │ │ │ └── Makefile-swig │ │ │ │ ├── ruby │ │ │ │ │ ├── Makefile-swig │ │ │ │ │ └── extconf.rb │ │ │ │ └── tcl │ │ │ │ │ └── Makefile-swig │ │ │ ├── x86_disasm.c │ │ │ ├── x86_format.c │ │ │ ├── x86_imm.c │ │ │ ├── x86_imm.h │ │ │ ├── x86_insn.c │ │ │ ├── x86_misc.c │ │ │ ├── x86_operand_list.c │ │ │ └── x86_operand_list.h │ │ ├── linux │ │ │ └── include │ │ │ │ └── gflags │ │ │ │ └── gflags_completions.h │ │ ├── mac_headers │ │ │ ├── README │ │ │ ├── architecture │ │ │ │ └── byte_order.h │ │ │ ├── i386 │ │ │ │ └── _types.h │ │ │ ├── mach-o │ │ │ │ ├── arch.h │ │ │ │ ├── fat.h │ │ │ │ ├── loader.h │ │ │ │ └── nlist.h │ │ │ └── mach │ │ │ │ ├── boolean.h │ │ │ │ ├── i386 │ │ │ │ ├── boolean.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ │ ├── machine.h │ │ │ │ ├── machine │ │ │ │ ├── boolean.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ └── vm_types.h │ │ │ │ ├── thread_status.h │ │ │ │ └── vm_prot.h │ │ └── musl │ │ │ ├── COPYRIGHT │ │ │ ├── README │ │ │ ├── README.breakpad │ │ │ ├── VERSION │ │ │ └── include │ │ │ └── elf.h │ │ └── tools │ │ ├── linux │ │ ├── core2md │ │ │ └── core2md.cc │ │ ├── dump_syms │ │ │ └── dump_syms.cc │ │ ├── md2core │ │ │ ├── minidump-2-core.cc │ │ │ ├── minidump_memory_range.h │ │ │ └── minidump_memory_range_unittest.cc │ │ ├── symupload │ │ │ ├── minidump_upload.cc │ │ │ └── sym_upload.cc │ │ └── tools_linux.gypi │ │ ├── mac │ │ ├── crash_report │ │ │ ├── crash_report.mm │ │ │ ├── crash_report.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── on_demand_symbol_supplier.h │ │ │ └── on_demand_symbol_supplier.mm │ │ ├── dump_syms │ │ │ ├── dump_syms.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── dump_syms_tool.cc │ │ │ └── macho_dump.cc │ │ ├── symupload │ │ │ ├── minidump_upload.m │ │ │ ├── symupload.m │ │ │ └── symupload.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── tools_mac.gypi │ │ └── upload_system_symbols │ │ │ ├── arch_constants.h │ │ │ ├── arch_reader.go │ │ │ └── upload_system_symbols.go │ │ ├── python │ │ ├── deps-to-manifest.py │ │ ├── filter_syms.py │ │ └── tests │ │ │ └── filter_syms_unittest.py │ │ ├── solaris │ │ └── dump_syms │ │ │ ├── Makefile │ │ │ ├── dump_syms.cc │ │ │ ├── run_regtest.sh │ │ │ └── testdata │ │ │ ├── dump_syms_regtest.cc │ │ │ ├── dump_syms_regtest.o │ │ │ ├── dump_syms_regtest.stabs │ │ │ └── dump_syms_regtest.sym │ │ ├── tools.gyp │ │ └── windows │ │ ├── binaries │ │ ├── dump_syms.exe │ │ └── symupload.exe │ │ ├── build_all.vcxproj │ │ ├── converter │ │ ├── ms_symbol_server_converter.cc │ │ ├── ms_symbol_server_converter.gyp │ │ ├── ms_symbol_server_converter.h │ │ ├── ms_symbol_server_converter.sln │ │ ├── ms_symbol_server_converter.vcproj │ │ └── ms_symbol_server_converter.vcxproj │ │ ├── converter_exe │ │ ├── configure.cmd │ │ ├── converter.cc │ │ ├── converter.gyp │ │ ├── converter.sln │ │ ├── converter_exe.vcxproj │ │ ├── escaping.cc │ │ ├── escaping.h │ │ ├── http_client.h │ │ ├── http_download.cc │ │ ├── http_download.h │ │ ├── missing_symbols_test.txt │ │ ├── symsrv.yes │ │ ├── tokenizer.cc │ │ ├── tokenizer.h │ │ ├── winhttp_client.cc │ │ ├── winhttp_client.h │ │ ├── wininet_client.cc │ │ ├── wininet_client.h │ │ ├── winsymconv.cmd │ │ └── winsymconv_test.cmd │ │ ├── dump_syms │ │ ├── dump_syms.cc │ │ ├── dump_syms.gyp │ │ ├── dump_syms.sln │ │ ├── dump_syms.vcproj │ │ ├── dump_syms.vcxproj │ │ ├── dump_syms_unittest.cc │ │ ├── dump_syms_unittest.vcxproj │ │ ├── run_regtest.sh │ │ └── testdata │ │ │ ├── dump_syms_regtest.cc │ │ │ ├── dump_syms_regtest.sym │ │ │ ├── dump_syms_regtest64.exe │ │ │ ├── dump_syms_regtest64.sym │ │ │ ├── omap_reorder_bbs.sym │ │ │ ├── omap_reorder_funcs.sym │ │ │ ├── omap_stretched.sym │ │ │ ├── omap_stretched_filled.sym │ │ │ ├── pe_only_symbol_test.dll │ │ │ └── pe_only_symbol_test.sym │ │ ├── refresh_binaries.bat │ │ ├── symupload │ │ ├── symupload.cc │ │ ├── symupload.gyp │ │ ├── symupload.sln │ │ └── symupload.vcxproj │ │ ├── tools_windows.gyp │ │ └── tools_windows.sln ├── Catch2 │ ├── .conan │ │ ├── build.py │ │ └── test_package │ │ │ ├── CMakeLists.txt │ │ │ ├── conanfile.py │ │ │ └── test_package.cpp │ ├── .gitattributes │ ├── .github │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ └── pull_request_template.md │ ├── .gitignore │ ├── .travis.yml │ ├── CMake │ │ ├── Catch2Config.cmake.in │ │ ├── FindGcov.cmake │ │ ├── FindLcov.cmake │ │ ├── Findcodecov.cmake │ │ ├── MiscFunctions.cmake │ │ ├── catch2.pc.in │ │ └── llvm-cov-wrapper │ ├── CMakeLists.txt │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE.txt │ ├── README.md │ ├── appveyor.yml │ ├── artwork │ │ ├── catch2-c-logo.png │ │ ├── catch2-hand-logo.png │ │ └── catch2-logo-small.png │ ├── codecov.yml │ ├── conanfile.py │ ├── contrib │ │ ├── Catch.cmake │ │ ├── CatchAddTests.cmake │ │ ├── ParseAndAddCatchTests.cmake │ │ ├── gdbinit │ │ └── lldbinit │ ├── docs │ │ ├── Readme.md │ │ ├── assertions.md │ │ ├── benchmarks.md │ │ ├── ci-and-misc.md │ │ ├── cmake-integration.md │ │ ├── command-line.md │ │ ├── commercial-users.md │ │ ├── configuration.md │ │ ├── contributing.md │ │ ├── deprecations.md │ │ ├── event-listeners.md │ │ ├── generators.md │ │ ├── limitations.md │ │ ├── list-of-examples.md │ │ ├── logging.md │ │ ├── matchers.md │ │ ├── opensource-users.md │ │ ├── other-macros.md │ │ ├── own-main.md │ │ ├── release-notes.md │ │ ├── release-process.md │ │ ├── reporters.md │ │ ├── slow-compiles.md │ │ ├── test-cases-and-sections.md │ │ ├── test-fixtures.md │ │ ├── tostring.md │ │ ├── tutorial.md │ │ └── why-catch.md │ ├── examples │ │ ├── 000-CatchMain.cpp │ │ ├── 010-TestCase.cpp │ │ ├── 020-TestCase-1.cpp │ │ ├── 020-TestCase-2.cpp │ │ ├── 030-Asn-Require-Check.cpp │ │ ├── 100-Fix-Section.cpp │ │ ├── 110-Fix-ClassFixture.cpp │ │ ├── 120-Bdd-ScenarioGivenWhenThen.cpp │ │ ├── 200-Rpt-CatchMain.cpp │ │ ├── 207-Rpt-TeamCityReporter.cpp │ │ ├── 210-Evt-EventListeners.cpp │ │ ├── 231-Cfg-OutputStreams.cpp │ │ ├── 300-Gen-OwnGenerator.cpp │ │ ├── 301-Gen-MapTypeConversion.cpp │ │ ├── 310-Gen-VariablesInGenerators.cpp │ │ ├── 311-Gen-CustomCapture.cpp │ │ └── CMakeLists.txt │ ├── include │ │ ├── catch.hpp │ │ ├── catch_with_main.hpp │ │ ├── external │ │ │ └── clara.hpp │ │ ├── internal │ │ │ ├── benchmark │ │ │ │ ├── catch_benchmark.hpp │ │ │ │ ├── catch_chronometer.hpp │ │ │ │ ├── catch_clock.hpp │ │ │ │ ├── catch_constructor.hpp │ │ │ │ ├── catch_environment.hpp │ │ │ │ ├── catch_estimate.hpp │ │ │ │ ├── catch_execution_plan.hpp │ │ │ │ ├── catch_optimizer.hpp │ │ │ │ ├── catch_outlier_classification.hpp │ │ │ │ ├── catch_sample_analysis.hpp │ │ │ │ └── detail │ │ │ │ │ ├── catch_analyse.hpp │ │ │ │ │ ├── catch_benchmark_function.hpp │ │ │ │ │ ├── catch_complete_invoke.hpp │ │ │ │ │ ├── catch_estimate_clock.hpp │ │ │ │ │ ├── catch_measure.hpp │ │ │ │ │ ├── catch_repeat.hpp │ │ │ │ │ ├── catch_run_for_at_least.hpp │ │ │ │ │ ├── catch_stats.cpp │ │ │ │ │ ├── catch_stats.hpp │ │ │ │ │ └── catch_timing.hpp │ │ │ ├── catch_approx.cpp │ │ │ ├── catch_approx.h │ │ │ ├── catch_assertionhandler.cpp │ │ │ ├── catch_assertionhandler.h │ │ │ ├── catch_assertioninfo.h │ │ │ ├── catch_assertionresult.cpp │ │ │ ├── catch_assertionresult.h │ │ │ ├── catch_capture.hpp │ │ │ ├── catch_capture_matchers.cpp │ │ │ ├── catch_capture_matchers.h │ │ │ ├── catch_clara.h │ │ │ ├── catch_commandline.cpp │ │ │ ├── catch_commandline.h │ │ │ ├── catch_common.cpp │ │ │ ├── catch_common.h │ │ │ ├── catch_compiler_capabilities.h │ │ │ ├── catch_config.cpp │ │ │ ├── catch_config.hpp │ │ │ ├── catch_console_colour.cpp │ │ │ ├── catch_console_colour.h │ │ │ ├── catch_context.cpp │ │ │ ├── catch_context.h │ │ │ ├── catch_debug_console.cpp │ │ │ ├── catch_debug_console.h │ │ │ ├── catch_debugger.cpp │ │ │ ├── catch_debugger.h │ │ │ ├── catch_decomposer.cpp │ │ │ ├── catch_decomposer.h │ │ │ ├── catch_default_main.hpp │ │ │ ├── catch_enforce.cpp │ │ │ ├── catch_enforce.h │ │ │ ├── catch_enum_values_registry.cpp │ │ │ ├── catch_enum_values_registry.h │ │ │ ├── catch_errno_guard.cpp │ │ │ ├── catch_errno_guard.h │ │ │ ├── catch_exception_translator_registry.cpp │ │ │ ├── catch_exception_translator_registry.h │ │ │ ├── catch_external_interfaces.h │ │ │ ├── catch_fatal_condition.cpp │ │ │ ├── catch_fatal_condition.h │ │ │ ├── catch_generators.cpp │ │ │ ├── catch_generators.hpp │ │ │ ├── catch_generators_generic.hpp │ │ │ ├── catch_generators_specific.hpp │ │ │ ├── catch_impl.hpp │ │ │ ├── catch_interfaces_capture.cpp │ │ │ ├── catch_interfaces_capture.h │ │ │ ├── catch_interfaces_config.cpp │ │ │ ├── catch_interfaces_config.h │ │ │ ├── catch_interfaces_enum_values_registry.h │ │ │ ├── catch_interfaces_exception.cpp │ │ │ ├── catch_interfaces_exception.h │ │ │ ├── catch_interfaces_generatortracker.h │ │ │ ├── catch_interfaces_registry_hub.cpp │ │ │ ├── catch_interfaces_registry_hub.h │ │ │ ├── catch_interfaces_reporter.cpp │ │ │ ├── catch_interfaces_reporter.h │ │ │ ├── catch_interfaces_runner.cpp │ │ │ ├── catch_interfaces_runner.h │ │ │ ├── catch_interfaces_tag_alias_registry.h │ │ │ ├── catch_interfaces_testcase.cpp │ │ │ ├── catch_interfaces_testcase.h │ │ │ ├── catch_leak_detector.cpp │ │ │ ├── catch_leak_detector.h │ │ │ ├── catch_list.cpp │ │ │ ├── catch_list.h │ │ │ ├── catch_matchers.cpp │ │ │ ├── catch_matchers.h │ │ │ ├── catch_matchers_floating.cpp │ │ │ ├── catch_matchers_floating.h │ │ │ ├── catch_matchers_generic.cpp │ │ │ ├── catch_matchers_generic.hpp │ │ │ ├── catch_matchers_string.cpp │ │ │ ├── catch_matchers_string.h │ │ │ ├── catch_matchers_vector.h │ │ │ ├── catch_message.cpp │ │ │ ├── catch_message.h │ │ │ ├── catch_meta.hpp │ │ │ ├── catch_objc.hpp │ │ │ ├── catch_objc_arc.hpp │ │ │ ├── catch_option.hpp │ │ │ ├── catch_output_redirect.cpp │ │ │ ├── catch_output_redirect.h │ │ │ ├── catch_platform.h │ │ │ ├── catch_polyfills.cpp │ │ │ ├── catch_polyfills.hpp │ │ │ ├── catch_preprocessor.hpp │ │ │ ├── catch_random_number_generator.cpp │ │ │ ├── catch_random_number_generator.h │ │ │ ├── catch_reenable_warnings.h │ │ │ ├── catch_registry_hub.cpp │ │ │ ├── catch_reporter_registrars.hpp │ │ │ ├── catch_reporter_registry.cpp │ │ │ ├── catch_reporter_registry.h │ │ │ ├── catch_result_type.cpp │ │ │ ├── catch_result_type.h │ │ │ ├── catch_run_context.cpp │ │ │ ├── catch_run_context.h │ │ │ ├── catch_section.cpp │ │ │ ├── catch_section.h │ │ │ ├── catch_section_info.cpp │ │ │ ├── catch_section_info.h │ │ │ ├── catch_session.cpp │ │ │ ├── catch_session.h │ │ │ ├── catch_singletons.cpp │ │ │ ├── catch_singletons.hpp │ │ │ ├── catch_startup_exception_registry.cpp │ │ │ ├── catch_startup_exception_registry.h │ │ │ ├── catch_stream.cpp │ │ │ ├── catch_stream.h │ │ │ ├── catch_string_manip.cpp │ │ │ ├── catch_string_manip.h │ │ │ ├── catch_stringref.cpp │ │ │ ├── catch_stringref.h │ │ │ ├── catch_suppress_warnings.h │ │ │ ├── catch_tag_alias.cpp │ │ │ ├── catch_tag_alias.h │ │ │ ├── catch_tag_alias_autoregistrar.cpp │ │ │ ├── catch_tag_alias_autoregistrar.h │ │ │ ├── catch_tag_alias_registry.cpp │ │ │ ├── catch_tag_alias_registry.h │ │ │ ├── catch_test_case_info.cpp │ │ │ ├── catch_test_case_info.h │ │ │ ├── catch_test_case_registry_impl.cpp │ │ │ ├── catch_test_case_registry_impl.h │ │ │ ├── catch_test_case_tracker.cpp │ │ │ ├── catch_test_case_tracker.h │ │ │ ├── catch_test_registry.cpp │ │ │ ├── catch_test_registry.h │ │ │ ├── catch_test_spec.cpp │ │ │ ├── catch_test_spec.h │ │ │ ├── catch_test_spec_parser.cpp │ │ │ ├── catch_test_spec_parser.h │ │ │ ├── catch_text.h │ │ │ ├── catch_timer.cpp │ │ │ ├── catch_timer.h │ │ │ ├── catch_to_string.hpp │ │ │ ├── catch_tostring.cpp │ │ │ ├── catch_tostring.h │ │ │ ├── catch_totals.cpp │ │ │ ├── catch_totals.h │ │ │ ├── catch_uncaught_exceptions.cpp │ │ │ ├── catch_uncaught_exceptions.h │ │ │ ├── catch_user_interfaces.h │ │ │ ├── catch_version.cpp │ │ │ ├── catch_version.h │ │ │ ├── catch_wildcard_pattern.cpp │ │ │ ├── catch_wildcard_pattern.h │ │ │ ├── catch_windows_h_proxy.h │ │ │ ├── catch_xmlwriter.cpp │ │ │ └── catch_xmlwriter.h │ │ └── reporters │ │ │ ├── catch_reporter_automake.hpp │ │ │ ├── catch_reporter_bases.cpp │ │ │ ├── catch_reporter_bases.hpp │ │ │ ├── catch_reporter_compact.cpp │ │ │ ├── catch_reporter_compact.h │ │ │ ├── catch_reporter_console.cpp │ │ │ ├── catch_reporter_console.h │ │ │ ├── catch_reporter_junit.cpp │ │ │ ├── catch_reporter_junit.h │ │ │ ├── catch_reporter_listening.cpp │ │ │ ├── catch_reporter_listening.h │ │ │ ├── catch_reporter_tap.hpp │ │ │ ├── catch_reporter_teamcity.hpp │ │ │ ├── catch_reporter_xml.cpp │ │ │ └── catch_reporter_xml.h │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── appveyorBuildConfigurationScript.bat │ │ ├── appveyorMergeCoverageScript.py │ │ ├── appveyorTestRunScript.bat │ │ ├── coverage-helper.cpp │ │ └── installOpenCppCoverage.ps1 │ ├── projects │ │ ├── CMakeLists.txt │ │ ├── ExtraTests │ │ │ ├── CMakeLists.txt │ │ │ ├── ToDo.txt │ │ │ ├── X01-PrefixedMacros.cpp │ │ │ ├── X02-DisabledMacros.cpp │ │ │ ├── X03-DisabledExceptions-DefaultHandler.cpp │ │ │ ├── X04-DisabledExceptions-CustomHandler.cpp │ │ │ ├── X10-FallbackStringifier.cpp │ │ │ ├── X11-DisableStringification.cpp │ │ │ └── X20-BenchmarkingMacros.cpp │ │ ├── SelfTest │ │ │ ├── Baselines │ │ │ │ ├── automake.std.approved.txt │ │ │ │ ├── compact.sw.approved.txt │ │ │ │ ├── console.std.approved.txt │ │ │ │ ├── console.sw.approved.txt │ │ │ │ ├── console.swa4.approved.txt │ │ │ │ ├── junit.sw.approved.txt │ │ │ │ └── xml.sw.approved.txt │ │ │ ├── CompileTimePerfTests │ │ │ │ ├── 10.tests.cpp │ │ │ │ ├── 100.tests.cpp │ │ │ │ └── All.tests.cpp │ │ │ ├── IntrospectiveTests │ │ │ │ ├── CmdLine.tests.cpp │ │ │ │ ├── Details.tests.cpp │ │ │ │ ├── GeneratorsImpl.tests.cpp │ │ │ │ ├── InternalBenchmark.tests.cpp │ │ │ │ ├── PartTracker.tests.cpp │ │ │ │ ├── String.tests.cpp │ │ │ │ ├── StringManip.tests.cpp │ │ │ │ ├── Tag.tests.cpp │ │ │ │ ├── ToString.tests.cpp │ │ │ │ └── Xml.tests.cpp │ │ │ ├── SurrogateCpps │ │ │ │ ├── catch_console_colour.cpp │ │ │ │ ├── catch_debugger.cpp │ │ │ │ ├── catch_interfaces_reporter.cpp │ │ │ │ ├── catch_option.cpp │ │ │ │ ├── catch_stream.cpp │ │ │ │ ├── catch_test_case_tracker.cpp │ │ │ │ ├── catch_test_spec.cpp │ │ │ │ └── catch_xmlwriter.cpp │ │ │ ├── TestMain.cpp │ │ │ ├── UsageTests │ │ │ │ ├── Approx.tests.cpp │ │ │ │ ├── BDD.tests.cpp │ │ │ │ ├── Benchmark.tests.cpp │ │ │ │ ├── Class.tests.cpp │ │ │ │ ├── Compilation.tests.cpp │ │ │ │ ├── Condition.tests.cpp │ │ │ │ ├── Decomposition.tests.cpp │ │ │ │ ├── EnumToString.tests.cpp │ │ │ │ ├── Exception.tests.cpp │ │ │ │ ├── Generators.tests.cpp │ │ │ │ ├── Matchers.tests.cpp │ │ │ │ ├── Message.tests.cpp │ │ │ │ ├── Misc.tests.cpp │ │ │ │ ├── ToStringByte.tests.cpp │ │ │ │ ├── ToStringChrono.tests.cpp │ │ │ │ ├── ToStringGeneral.tests.cpp │ │ │ │ ├── ToStringOptional.tests.cpp │ │ │ │ ├── ToStringPair.tests.cpp │ │ │ │ ├── ToStringTuple.tests.cpp │ │ │ │ ├── ToStringVariant.tests.cpp │ │ │ │ ├── ToStringVector.tests.cpp │ │ │ │ ├── ToStringWhich.tests.cpp │ │ │ │ ├── Tricky.tests.cpp │ │ │ │ └── VariadicMacros.tests.cpp │ │ │ └── WarnAboutNoTests.cmake │ │ └── XCode │ │ │ └── OCTest │ │ │ ├── OCTest.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── OCTest │ │ │ ├── CatchOCTestCase.h │ │ │ ├── CatchOCTestCase.mm │ │ │ ├── Main.mm │ │ │ ├── OCTest.1 │ │ │ ├── OCTest.mm │ │ │ ├── TestObj.h │ │ │ └── TestObj.m │ │ │ └── catch_objc_impl.mm │ ├── scripts │ │ ├── approvalTests.py │ │ ├── approve.py │ │ ├── benchmarkCompile.py │ │ ├── benchmarkRunner.py │ │ ├── developBuild.py │ │ ├── embed.py │ │ ├── embedClara.py │ │ ├── extractFeaturesFromReleaseNotes.py │ │ ├── fixWhitespace.py │ │ ├── generateSingleHeader.py │ │ ├── majorRelease.py │ │ ├── minorRelease.py │ │ ├── patchRelease.py │ │ ├── releaseCommon.py │ │ ├── releaseNotes.py │ │ ├── scriptCommon.py │ │ ├── updateDocumentToC.py │ │ └── updateWandbox.py │ ├── single_include │ │ └── catch2 │ │ │ ├── catch.hpp │ │ │ ├── catch_reporter_automake.hpp │ │ │ ├── catch_reporter_tap.hpp │ │ │ └── catch_reporter_teamcity.hpp │ └── third_party │ │ └── clara.hpp ├── DirectFB │ ├── .cvsignore │ ├── .gitignore │ ├── AUTHORS │ ├── BUGS │ ├── CMakeLists.txt │ ├── CODING_STYLE │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README.++DFB │ ├── README.DiVine │ ├── README.FusionDale │ ├── README.FusionSound │ ├── README.OSX │ ├── README.SaWMan │ ├── TODO │ ├── Win32 │ │ ├── FormsTest │ │ │ ├── AssemblyInfo.cpp │ │ │ ├── Form1.h │ │ │ ├── Form1.resX │ │ │ ├── FormsTest.cpp │ │ │ ├── FormsTest.vcxproj │ │ │ ├── FormsTest.vcxproj.filters │ │ │ ├── ReadMe.txt │ │ │ ├── app.ico │ │ │ ├── app.rc │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── README │ │ ├── build-package.sh │ │ ├── dfbinfo │ │ │ ├── dfbinfo.vcxproj │ │ │ └── dfbinfo.vcxproj.filters │ │ ├── dfbshow │ │ │ ├── dfbshow.vcxproj │ │ │ └── dfbshow.vcxproj.filters │ │ ├── dfbtest_blit │ │ │ ├── dfbtest_blit.vcxproj │ │ │ └── dfbtest_blit.vcxproj.filters │ │ ├── dfbtest_fillrect │ │ │ ├── dfbtest_fillrect.vcxproj │ │ │ └── dfbtest_fillrect.vcxproj.filters │ │ ├── dfbtest_window │ │ │ ├── dfbtest_window.vcxproj │ │ │ └── dfbtest_window.vcxproj.filters │ │ ├── direct │ │ │ └── build.h │ │ ├── direct_result.c │ │ ├── direct_test │ │ │ ├── direct_test.vcxproj │ │ │ └── direct_test.vcxproj.filters │ │ ├── directfb_build.h │ │ ├── directfb_result.c │ │ ├── directfb_strings.h │ │ ├── directfb_version.h │ │ ├── fusion │ │ │ └── build.h │ │ ├── fusiondale_version.h │ │ ├── lib++dfb │ │ │ └── lib++dfb.vcxproj │ │ ├── libdirect │ │ │ ├── direct_result.c │ │ │ ├── dllmain.c │ │ │ ├── libdirect.vcxproj │ │ │ └── libdirect.vcxproj.filters │ │ ├── libdirectfb │ │ │ ├── directfb_result.c │ │ │ ├── dllmain.c │ │ │ ├── libdirectfb.vcxproj │ │ │ └── libdirectfb.vcxproj.filters │ │ ├── libdivine │ │ │ ├── dllmain.c │ │ │ └── libdivine.vcxproj │ │ ├── libfusion │ │ │ ├── dllmain.c │ │ │ ├── libfusion.vcxproj │ │ │ └── libfusion.vcxproj.filters │ │ ├── libfusiondale │ │ │ ├── dllmain.c │ │ │ └── libfusiondale.vcxproj │ │ ├── libvoodoo │ │ │ ├── dllmain.c │ │ │ ├── libvoodoo.vcxproj │ │ │ └── libvoodoo.vcxproj.filters │ │ └── voodooplay │ │ │ ├── voodooplay.vcxproj │ │ │ └── voodooplay.vcxproj.filters │ ├── autogen.sh │ ├── build-android │ │ ├── .gitignore │ │ ├── Android │ │ │ ├── android_keycodes.h │ │ │ ├── cutils │ │ │ │ └── native_handle.h │ │ │ ├── hardware │ │ │ │ ├── fb.h │ │ │ │ ├── gralloc.h │ │ │ │ └── hardware.h │ │ │ └── system │ │ │ │ ├── graphics.h │ │ │ │ └── window.h │ │ ├── Makefile.am │ │ ├── README │ │ ├── clanbomber2 │ │ │ ├── AndroidManifest.xml │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ ├── prepare.sh │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ └── icon.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── README │ │ ├── common_files │ │ │ ├── Application.mk │ │ │ ├── icon.png │ │ │ └── prepare.sh │ │ ├── df_andi │ │ │ ├── AndroidManifest.xml │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ ├── prepare.sh │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ └── icon.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── README │ │ ├── df_matrix │ │ │ ├── AndroidManifest.xml │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ ├── prepare.sh │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ └── icon.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── README │ │ ├── df_window │ │ │ ├── AndroidManifest.xml │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ ├── prepare.sh │ │ │ ├── res │ │ │ │ ├── drawable │ │ │ │ │ └── icon.png │ │ │ │ └── values │ │ │ │ │ └── strings.xml │ │ │ └── src │ │ │ │ └── README │ │ ├── direct │ │ │ └── build.h │ │ ├── directfb-env.mk │ │ ├── directfb.mk │ │ ├── directfb_build.h │ │ ├── fusion │ │ │ └── build.h │ │ └── prepare.sh │ ├── build-psp │ │ ├── direct │ │ │ └── build.h │ │ ├── fusion │ │ │ └── build.h │ │ └── psp-setup.c │ ├── cmake │ │ ├── DirectFBFunctions.cmake │ │ └── Modules │ │ │ └── FindWayland.cmake │ ├── configure.in │ ├── data │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── cursor.dat │ │ ├── cursor.png │ │ ├── decker.dgiff │ │ └── decker.ttf │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── directfb-config.1 │ │ ├── divine-spooky-1.7.install │ │ ├── fusiondale-bin-1.7.install │ │ ├── fusionsound-bin-1.7.install │ │ ├── libdirectfb-1.7-bin.install │ │ ├── libdirectfb-1.7-dev.install │ │ ├── libdirectfb-1.7-fontprovider-dgiff.install │ │ ├── libdirectfb-1.7-fontprovider-ft2.install │ │ ├── libdirectfb-1.7-gfxdriver-gles2.install │ │ ├── libdirectfb-1.7-imageprovider-bmp.install │ │ ├── libdirectfb-1.7-imageprovider-dfiff.install │ │ ├── libdirectfb-1.7-imageprovider-gif.install │ │ ├── libdirectfb-1.7-imageprovider-imlib2.install │ │ ├── libdirectfb-1.7-imageprovider-jpeg.install │ │ ├── libdirectfb-1.7-imageprovider-jpeg2000.install │ │ ├── libdirectfb-1.7-imageprovider-mpeg2.install │ │ ├── libdirectfb-1.7-imageprovider-png.install │ │ ├── libdirectfb-1.7-inputdriver-divine.install │ │ ├── libdirectfb-1.7-system-devmem.install │ │ ├── libdirectfb-1.7-system-egl.install │ │ ├── libdirectfb-1.7-system-fbdev.install │ │ ├── libdirectfb-1.7-system-vnc.install │ │ ├── libdirectfb-1.7-system-x11.install │ │ ├── libdirectfb-1.7-system-x11vdpau-dev.install │ │ ├── libdirectfb-1.7-system-x11vdpau.install │ │ ├── libdirectfb-1.7-videoprovider-ffmpeg.install │ │ ├── libdirectfb-1.7-videoprovider-gif.install │ │ ├── libdirectfb-1.7-videoprovider-mng.install │ │ ├── libdirectfb-1.7-videoprovider-v4l.install │ │ ├── libdirectfb-1.7-videoprovider-xine-vdpau.install │ │ ├── libdirectfb-1.7-videoprovider-xine.install │ │ ├── libdirectfb-1.7.install │ │ ├── libdivine-1.7-dev.install │ │ ├── libdivine-1.7.install │ │ ├── libfusiondale-1.7-dev.install │ │ ├── libfusiondale-1.7.install │ │ ├── libfusionsound-1.7-dev.install │ │ ├── libfusionsound-1.7-musicprovider-ffmpeg.install │ │ ├── libfusionsound-1.7-musicprovider-mad.install │ │ ├── libfusionsound-1.7-musicprovider-vorbis.install │ │ ├── libfusionsound-1.7.install │ │ ├── libsawman-1.7-dev.install │ │ ├── libsawman-1.7.install │ │ ├── rules │ │ └── sawman-bin-1.7.install │ ├── directfb-config.in │ ├── directfb-internal.pc.in │ ├── directfb.pc.in │ ├── directfb.spec.in │ ├── docs │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Compositing Application Manager.pdf │ │ ├── Compositing Application Manager.pptx │ │ ├── Core_Interfaces.txt │ │ ├── DirectFB Core Architecture.pdf │ │ ├── DirectFB Core Architecture.sxi │ │ ├── GeneFX.odp │ │ ├── GeneFX.pdf │ │ ├── Makefile.am │ │ ├── README.mga-tv │ │ ├── README.screenshots │ │ ├── ReferenceMaps.txt │ │ ├── SecureFusion.odp │ │ ├── SecureFusion_Status.txt │ │ ├── Window Updates.pdf │ │ ├── Window Updates.pptx │ │ ├── dfbg.1.in │ │ ├── direct │ │ │ ├── DirectList.eps │ │ │ ├── DirectList.pdf │ │ │ └── DirectList.sxd │ │ ├── directfb-csource.1.in │ │ ├── directfbrc.5.in │ │ ├── fusionsoundrc.5.in │ │ ├── html │ │ │ ├── .cvsignore │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ └── dfb_logo-alpha.png │ │ └── initialization.txt │ ├── examples │ │ ├── ++dfb │ │ │ ├── .cvsignore │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── dfbapp.cpp │ │ │ ├── dfbapp.h │ │ │ ├── dfbimage.cpp │ │ │ ├── dfbimage.h │ │ │ ├── dfbplay.cpp │ │ │ ├── dfbshow.cpp │ │ │ ├── dfbswitch.cpp │ │ │ ├── simple.cpp │ │ │ └── tests │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.am │ │ │ │ ├── data │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.am │ │ │ │ ├── test32x32.bmp │ │ │ │ ├── test32x32.dfiff │ │ │ │ ├── test32x32.gif │ │ │ │ ├── test32x32.jpeg │ │ │ │ ├── test32x32.png │ │ │ │ ├── test32x32.ppm │ │ │ │ ├── test32x32.tif │ │ │ │ └── test32x32x16.dfiff │ │ │ │ └── images.cpp │ │ ├── .gitignore │ │ ├── fusiondale │ │ │ ├── Makefile.am │ │ │ ├── ce_tune.c │ │ │ ├── ce_tuner.c │ │ │ ├── ce_tuner.h │ │ │ ├── ce_tuning_monitor.c │ │ │ ├── coma_test.c │ │ │ ├── data_test.c │ │ │ ├── fd_client.c │ │ │ ├── fd_proxy.c │ │ │ ├── fd_simple.c │ │ │ ├── fdmaster.c │ │ │ ├── t2_receiver.c │ │ │ └── t2_sender.c │ │ └── fusionsound │ │ │ ├── Makefile.am │ │ │ ├── fs_advanced.c │ │ │ ├── fs_simple.c │ │ │ ├── loader.c │ │ │ ├── loader.h │ │ │ ├── meter.c │ │ │ ├── music.c │ │ │ ├── music_loader.c │ │ │ ├── stop.png │ │ │ ├── stop_disabled.png │ │ │ ├── stop_highlighted.png │ │ │ ├── stop_pressed.png │ │ │ ├── stream.c │ │ │ ├── test.wav │ │ │ └── test2.wav │ ├── fb.modes │ ├── gfxdrivers │ │ ├── .cvsignore │ │ ├── Makefile.am │ │ ├── ati128 │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── ati128.c │ │ │ ├── ati128.h │ │ │ ├── ati128_overlay.c │ │ │ ├── ati128_state.c │ │ │ ├── ati128_state.h │ │ │ ├── mmio.h │ │ │ └── regs.h │ │ ├── cle266 │ │ │ ├── .cvsignore │ │ │ ├── Installation.txt │ │ │ ├── Makefile.am │ │ │ ├── Patching.txt │ │ │ ├── Readme.txt │ │ │ ├── changelog.txt │ │ │ ├── cle266vgaio.c │ │ │ ├── cle266vgaio.mk │ │ │ ├── hwdoc.txt │ │ │ ├── mmio.h │ │ │ ├── regs2d.h │ │ │ ├── regs3d.h │ │ │ ├── rops.h │ │ │ ├── uc_accel.c │ │ │ ├── uc_accel.h │ │ │ ├── uc_fifo.c │ │ │ ├── uc_fifo.h │ │ │ ├── uc_hw.h │ │ │ ├── uc_hwmap.c │ │ │ ├── uc_hwset.c │ │ │ ├── uc_overlay.c │ │ │ ├── uc_overlay.h │ │ │ ├── uc_ovl_hwmap.c │ │ │ ├── uc_ovl_hwset.c │ │ │ ├── uc_primary.c │ │ │ ├── uc_probe.c │ │ │ ├── uc_probe.h │ │ │ ├── uc_state.c │ │ │ ├── uc_state.h │ │ │ ├── unichrome.c │ │ │ ├── unichrome.h │ │ │ └── vidregs.h │ │ ├── cyber5k │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── cyber5k.c │ │ │ ├── cyber5k.h │ │ │ ├── cyber5k_alpha.c │ │ │ ├── cyber5k_alpha.h │ │ │ ├── cyber5k_overlay.c │ │ │ ├── cyber5k_overlay.h │ │ │ ├── cyber5k_underlay.c │ │ │ ├── mmio.h │ │ │ └── regs.h │ │ ├── davinci │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.kernel │ │ │ ├── c64xdump.c │ │ │ ├── davinci_2d.c │ │ │ ├── davinci_2d.h │ │ │ ├── davinci_c64x.c │ │ │ ├── davinci_c64x.h │ │ │ ├── davinci_gfxdriver.c │ │ │ ├── davinci_gfxdriver.h │ │ │ ├── davinci_osd.c │ │ │ ├── davinci_osd.h │ │ │ ├── davinci_osd_pool.c │ │ │ ├── davinci_osd_pool.h │ │ │ ├── davinci_screen.c │ │ │ ├── davinci_screen.h │ │ │ ├── davinci_video.c │ │ │ ├── davinci_video.h │ │ │ ├── davinci_video_pool.c │ │ │ ├── davinci_video_pool.h │ │ │ ├── davincifb.h │ │ │ ├── directfbrc │ │ │ └── kernel-module │ │ │ │ ├── .gitignore │ │ │ │ ├── c64x │ │ │ │ └── c64x.c │ │ │ │ └── include │ │ │ │ └── linux │ │ │ │ └── c64x.h │ │ ├── ep9x │ │ │ ├── Makefile.am │ │ │ ├── ep9x.c │ │ │ └── ep9x.h │ │ ├── gl │ │ │ ├── Makefile.am │ │ │ ├── gl_2d.c │ │ │ ├── gl_2d.h │ │ │ ├── gl_gfxdriver.c │ │ │ └── gl_gfxdriver.h │ │ ├── gles2 │ │ │ ├── Makefile.am │ │ │ ├── gles2_2d.c │ │ │ ├── gles2_2d.h │ │ │ ├── gles2_gfxdriver.c │ │ │ ├── gles2_gfxdriver.h │ │ │ ├── gles2_shaders.c │ │ │ └── gles2_shaders.h │ │ ├── gp2d │ │ │ ├── Makefile.am │ │ │ ├── gp2d_blt.c │ │ │ ├── gp2d_blt.h │ │ │ ├── gp2d_driver.c │ │ │ ├── gp2d_driver.h │ │ │ ├── gp2d_engine.cpp │ │ │ ├── gp2d_engine.h │ │ │ ├── gp2d_regs.h │ │ │ └── gp2d_types.h │ │ ├── i810 │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── i810.c │ │ │ ├── i810.h │ │ │ └── i810_overlay.c │ │ ├── i830 │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── i830.c │ │ │ ├── i830.h │ │ │ └── i830_overlay.c │ │ ├── mach64 │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── mach64.c │ │ │ ├── mach64.h │ │ │ ├── mach64_overlay.c │ │ │ ├── mach64_state.c │ │ │ ├── mach64_state.h │ │ │ ├── mmio.h │ │ │ └── regs.h │ │ ├── matrox │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── matrox.c │ │ │ ├── matrox.h │ │ │ ├── matrox_3d.c │ │ │ ├── matrox_3d.h │ │ │ ├── matrox_bes.c │ │ │ ├── matrox_crtc2.c │ │ │ ├── matrox_maven.c │ │ │ ├── matrox_maven.h │ │ │ ├── matrox_screen_crtc2.c │ │ │ ├── matrox_spic.c │ │ │ ├── matrox_state.c │ │ │ ├── matrox_state.h │ │ │ ├── mmio.h │ │ │ └── regs.h │ │ ├── neomagic │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── neo2200.c │ │ │ ├── neo_overlay.c │ │ │ ├── neomagic.c │ │ │ └── neomagic.h │ │ ├── nsc │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── include │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.am │ │ │ │ ├── gfx_regs.h │ │ │ │ ├── gfx_type.h │ │ │ │ ├── nsc_galproto.h │ │ │ │ └── pnl_defs.h │ │ │ ├── nsc.c │ │ │ └── nsc_galfns.c │ │ ├── nvidia │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── nvidia.c │ │ │ ├── nvidia.h │ │ │ ├── nvidia_2d.c │ │ │ ├── nvidia_2d.h │ │ │ ├── nvidia_3d.c │ │ │ ├── nvidia_3d.h │ │ │ ├── nvidia_accel.h │ │ │ ├── nvidia_objects.h │ │ │ ├── nvidia_overlay.c │ │ │ ├── nvidia_primary.c │ │ │ ├── nvidia_regs.h │ │ │ ├── nvidia_state.c │ │ │ └── nvidia_state.h │ │ ├── omap │ │ │ ├── Makefile.am │ │ │ ├── omap.c │ │ │ ├── omap.h │ │ │ ├── omap_primary.c │ │ │ └── omapfb.h │ │ ├── pvr2d │ │ │ ├── Makefile.am │ │ │ ├── pvr2d_2d.c │ │ │ ├── pvr2d_2d.h │ │ │ ├── pvr2d_gfxdriver.c │ │ │ └── pvr2d_gfxdriver.h │ │ ├── pxa3xx │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── pxa3xx-gcu.h │ │ │ ├── pxa3xx.c │ │ │ ├── pxa3xx.h │ │ │ ├── pxa3xx_blt.c │ │ │ ├── pxa3xx_blt.h │ │ │ ├── pxa3xx_dump.c │ │ │ ├── pxa3xx_regs.h │ │ │ └── pxa3xx_types.h │ │ ├── radeon │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── r100_3d.c │ │ │ ├── r100_state.c │ │ │ ├── r200_3d.c │ │ │ ├── r200_state.c │ │ │ ├── r300_3d.c │ │ │ ├── r300_program.h │ │ │ ├── r300_state.c │ │ │ ├── radeon.c │ │ │ ├── radeon.h │ │ │ ├── radeon_2d.c │ │ │ ├── radeon_2d.h │ │ │ ├── radeon_3d.h │ │ │ ├── radeon_chipsets.h │ │ │ ├── radeon_crtc1.c │ │ │ ├── radeon_crtc2.c │ │ │ ├── radeon_mmio.h │ │ │ ├── radeon_overlay.c │ │ │ ├── radeon_regs.h │ │ │ ├── radeon_state.h │ │ │ └── vertex_shader.h │ │ ├── savage │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── mmio.h │ │ │ ├── savage.c │ │ │ ├── savage.h │ │ │ ├── savage2000.c │ │ │ ├── savage2000.h │ │ │ ├── savage3d.c │ │ │ ├── savage3d.h │ │ │ ├── savage4.c │ │ │ ├── savage4.h │ │ │ ├── savage_bci.h │ │ │ ├── savage_streams_old.c │ │ │ └── savage_streams_old.h │ │ ├── sh772x │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.kernel │ │ │ ├── README.sh7722 │ │ │ ├── directfbrc.sh7722 │ │ │ ├── directfbrc.sh7723 │ │ │ ├── kernel-module │ │ │ │ ├── .gitignore │ │ │ │ ├── sh7722.c │ │ │ │ ├── sh7722.h │ │ │ │ ├── sh7723.c │ │ │ │ ├── sh7723.h │ │ │ │ ├── sh772x_driver.c │ │ │ │ └── sh772x_gfx.h │ │ │ ├── sh7722.c │ │ │ ├── sh7722.h │ │ │ ├── sh7722_blt.c │ │ │ ├── sh7722_blt.h │ │ │ ├── sh7722_jpeg.c │ │ │ ├── sh7722_layer.c │ │ │ ├── sh7722_layer.h │ │ │ ├── sh7722_lcd.c │ │ │ ├── sh7722_lcd.h │ │ │ ├── sh7722_multi.c │ │ │ ├── sh7722_multi.h │ │ │ ├── sh7722_regs.h │ │ │ ├── sh7722_screen.c │ │ │ ├── sh7722_screen.h │ │ │ ├── sh7722_types.h │ │ │ ├── sh7723_blt.c │ │ │ └── sh7723_blt.h │ │ ├── sis315 │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── sis315.c │ │ │ ├── sis315.h │ │ │ ├── sis315_accel.c │ │ │ ├── sis315_accel.h │ │ │ ├── sis315_compat.h │ │ │ ├── sis315_mmio.c │ │ │ ├── sis315_mmio.h │ │ │ ├── sis315_regs.h │ │ │ ├── sis315_state.c │ │ │ └── sis315_state.h │ │ ├── tdfx │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── tdfx.c │ │ │ └── tdfx.h │ │ ├── unichrome │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── Readme.txt │ │ │ ├── find_revision.sh │ │ │ ├── mmio.h │ │ │ ├── regs2d.h │ │ │ ├── regs3d.h │ │ │ ├── uc_accel.c │ │ │ ├── uc_accel.h │ │ │ ├── uc_fifo.c │ │ │ ├── uc_fifo.h │ │ │ ├── uc_hw.h │ │ │ ├── uc_hwmap.c │ │ │ ├── uc_hwset.c │ │ │ ├── uc_ioctl.h │ │ │ ├── uc_overlay.c │ │ │ ├── uc_overlay.h │ │ │ ├── uc_ovl_hwmap.c │ │ │ ├── uc_ovl_hwset.c │ │ │ ├── uc_primary.c │ │ │ ├── uc_probe.h │ │ │ ├── uc_spic.c │ │ │ ├── uc_state.c │ │ │ ├── uc_state.h │ │ │ ├── ucio.c │ │ │ ├── ucio.mk │ │ │ ├── unichrome.c │ │ │ ├── unichrome.h │ │ │ └── vidregs.h │ │ ├── vdpau │ │ │ ├── Makefile.am │ │ │ ├── vdpau_2d.c │ │ │ ├── vdpau_2d.h │ │ │ ├── vdpau_gfxdriver.c │ │ │ └── vdpau_gfxdriver.h │ │ └── vmware │ │ │ ├── Makefile.am │ │ │ ├── vmware_2d.c │ │ │ ├── vmware_2d.h │ │ │ ├── vmware_gfxdriver.c │ │ │ └── vmware_gfxdriver.h │ ├── include │ │ ├── ++dfb │ │ │ ├── ++dfb.h │ │ │ ├── ++dfb_mangle.h │ │ │ ├── ++dfb_unmangle.h │ │ │ ├── Makefile.am │ │ │ ├── idirectfb.h │ │ │ ├── idirectfbdatabuffer.h │ │ │ ├── idirectfbdisplaylayer.h │ │ │ ├── idirectfbeventbuffer.h │ │ │ ├── idirectfbfont.h │ │ │ ├── idirectfbimageprovider.h │ │ │ ├── idirectfbinputdevice.h │ │ │ ├── idirectfbpalette.h │ │ │ ├── idirectfbscreen.h │ │ │ ├── idirectfbsurface.h │ │ │ ├── idirectfbvideoprovider.h │ │ │ └── idirectfbwindow.h │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── dfb_types.h │ │ ├── dfiff.h │ │ ├── dgiff.h │ │ ├── directfb++.h │ │ ├── directfb.h │ │ ├── directfb_build.h.in │ │ ├── directfb_graphics.h │ │ ├── directfb_keyboard.h │ │ ├── directfb_util.h │ │ ├── directfb_version.h.in │ │ ├── directfb_water.h │ │ ├── directfb_windows.h │ │ ├── directfbgl.h │ │ └── directfbgl2.h │ ├── inputdrivers │ │ ├── .cvsignore │ │ ├── Makefile.am │ │ ├── dbox2remote │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── dbox2remote.c │ │ ├── divine │ │ │ ├── Makefile.am │ │ │ └── divine.c │ │ ├── dreamboxremote │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── dreamboxremote.c │ │ ├── dynapro │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── dynapro.c │ │ ├── elo │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── elo.c │ │ ├── gunze │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── dfb-calib.c │ │ │ └── gunze.c │ │ ├── h3600_ts │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── h3600_ts.c │ │ ├── input_hub │ │ │ ├── Makefile.am │ │ │ └── input_hub_driver.c │ │ ├── joystick │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── joystick.c │ │ ├── keyboard │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── keyboard.c │ │ ├── linux_input │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── input_fake.h │ │ │ └── linux_input.c │ │ ├── lirc │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── lirc.c │ │ ├── mutouch │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── mutouch.c │ │ ├── penmount │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── penmount.c │ │ ├── ps2mouse │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── ps2mouse.c │ │ ├── serialmouse │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── serialmouse.c │ │ ├── sonypi │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── sonypi.c │ │ ├── tslib │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── tslib.c │ │ ├── ucb1x00_ts │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── ucb1x00_ts.c │ │ ├── wm97xx_ts │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ └── wm97xx_ts.c │ │ └── zytronic │ │ │ ├── Makefile.am │ │ │ └── zytronic.c │ ├── interfaces │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── ICoreResourceManager │ │ │ ├── Makefile.am │ │ │ ├── icoreresourcemanager_test.c │ │ │ ├── icoreresourcemanager_test.h │ │ │ ├── icoreresourcemanager_test_client.c │ │ │ └── icoreresourcemanager_test_client.h │ │ ├── IDirectFBFont │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── idirectfbfont_dgiff.c │ │ │ ├── idirectfbfont_ft2.c │ │ │ └── idirectfbfont_lino.c │ │ ├── IDirectFBGL │ │ │ ├── EGL │ │ │ │ ├── Makefile.am │ │ │ │ └── idirectfbgl_egl.c │ │ │ └── Makefile.am │ │ ├── IDirectFBImageProvider │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── idirectfbimageprovider_bmp.c │ │ │ ├── idirectfbimageprovider_dfiff.c │ │ │ ├── idirectfbimageprovider_ffmpeg.c │ │ │ ├── idirectfbimageprovider_gif.c │ │ │ ├── idirectfbimageprovider_imlib2.c │ │ │ ├── idirectfbimageprovider_jpeg.c │ │ │ ├── idirectfbimageprovider_jpeg2000.c │ │ │ ├── idirectfbimageprovider_mpeg2.c │ │ │ ├── idirectfbimageprovider_png.c │ │ │ ├── idirectfbimageprovider_pnm.c │ │ │ ├── idirectfbimageprovider_svg.c │ │ │ ├── idirectfbimageprovider_tiff.c │ │ │ ├── idirectfbimageprovider_webp.c │ │ │ └── mpeg2 │ │ │ │ ├── Makefile.am │ │ │ │ ├── getbits.c │ │ │ │ ├── getblk.c │ │ │ │ ├── gethdr.c │ │ │ │ ├── getpic.c │ │ │ │ ├── getvlc.c │ │ │ │ ├── getvlc.h │ │ │ │ ├── global.h │ │ │ │ ├── idct.c │ │ │ │ ├── idctref.c │ │ │ │ ├── motion.c │ │ │ │ ├── mpeg2dec.c │ │ │ │ ├── mpeg2dec.h │ │ │ │ ├── recon.c │ │ │ │ ├── store.c │ │ │ │ └── systems.c │ │ ├── IDirectFBVideoProvider │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── idirectfbvideoprovider_avifile.cpp │ │ │ ├── idirectfbvideoprovider_ffmpeg.c │ │ │ ├── idirectfbvideoprovider_gif.c │ │ │ ├── idirectfbvideoprovider_gstreamer.c │ │ │ ├── idirectfbvideoprovider_libmpeg3.c │ │ │ ├── idirectfbvideoprovider_mng.c │ │ │ ├── idirectfbvideoprovider_openquicktime.c │ │ │ ├── idirectfbvideoprovider_swf.c │ │ │ ├── idirectfbvideoprovider_swfdec.c │ │ │ ├── idirectfbvideoprovider_v4l.c │ │ │ ├── idirectfbvideoprovider_xine.c │ │ │ ├── idirectfbvideoprovider_xine_vdpau.c │ │ │ ├── video_out_dfb │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.am │ │ │ │ ├── video_out_dfb.c │ │ │ │ ├── video_out_dfb.h │ │ │ │ ├── video_out_dfb_blend.h │ │ │ │ └── video_out_dfb_mix.h │ │ │ ├── videodev.h │ │ │ └── videodev2.h │ │ ├── IDirectFBWindows │ │ │ ├── Makefile.am │ │ │ ├── idirectfbwindows_default.c │ │ │ ├── idirectfbwindows_default.h │ │ │ ├── idirectfbwindows_dispatcher.c │ │ │ ├── idirectfbwindows_dispatcher.h │ │ │ ├── idirectfbwindows_requestor.c │ │ │ └── idirectfbwindows_requestor.h │ │ ├── IFusionSound │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── ifusionsound_module.c │ │ ├── IFusionSoundMusicProvider │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── ifusionsoundmusicprovider_cdda.c │ │ │ ├── ifusionsoundmusicprovider_ffmpeg.c │ │ │ ├── ifusionsoundmusicprovider_mad.c │ │ │ ├── ifusionsoundmusicprovider_playlist.c │ │ │ ├── ifusionsoundmusicprovider_timidity.c │ │ │ ├── ifusionsoundmusicprovider_vorbis.c │ │ │ └── ifusionsoundmusicprovider_wave.c │ │ ├── IWater │ │ │ ├── Makefile.am │ │ │ ├── elements.c │ │ │ ├── elements.h │ │ │ ├── iwater_default.c │ │ │ ├── iwater_default.h │ │ │ ├── transform.c │ │ │ ├── transform.h │ │ │ ├── util.c │ │ │ └── util.h │ │ └── Makefile.am │ ├── lib │ │ ├── ++dfb │ │ │ ├── ++dfb.pc.in │ │ │ ├── ++dfb_internal.h │ │ │ ├── .cvsignore │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── idirectfb.cpp │ │ │ ├── idirectfbdatabuffer.cpp │ │ │ ├── idirectfbdisplaylayer.cpp │ │ │ ├── idirectfbeventbuffer.cpp │ │ │ ├── idirectfbfont.cpp │ │ │ ├── idirectfbimageprovider.cpp │ │ │ ├── idirectfbinputdevice.cpp │ │ │ ├── idirectfbpalette.cpp │ │ │ ├── idirectfbscreen.cpp │ │ │ ├── idirectfbsurface.cpp │ │ │ ├── idirectfbvideoprovider.cpp │ │ │ ├── idirectfbwindow.cpp │ │ │ └── ppdfb.cpp │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── One │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── One.c │ │ │ ├── One.h │ │ │ ├── OneQueue.h │ │ │ ├── OneThread.h │ │ │ ├── OneTypes.h │ │ │ └── one.pc.in │ │ ├── direct │ │ │ ├── .cvsignore │ │ │ ├── .gitignore │ │ │ ├── Base.cpp │ │ │ ├── Base.h │ │ │ ├── CMakeLists.txt │ │ │ ├── EvLog.cpp │ │ │ ├── EvLog.h │ │ │ ├── Lists.h │ │ │ ├── LockWQ.h │ │ │ ├── Magic.h │ │ │ ├── Makefile.am │ │ │ ├── Mutex.h │ │ │ ├── Performer.h │ │ │ ├── String.cpp │ │ │ ├── String.h │ │ │ ├── TLSObject.h │ │ │ ├── ToString.cpp │ │ │ ├── ToString.h │ │ │ ├── Type.h │ │ │ ├── Types++.h │ │ │ ├── Utils.cpp │ │ │ ├── Utils.h │ │ │ ├── armasm_memcpy.S │ │ │ ├── armasm_memcpy.h │ │ │ ├── atomic.h │ │ │ ├── build.h.in │ │ │ ├── clock.c │ │ │ ├── clock.h │ │ │ ├── compiler.h │ │ │ ├── conf.c │ │ │ ├── conf.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── direct.c │ │ │ ├── direct.h │ │ │ ├── direct.pc.in │ │ │ ├── fastlz.c │ │ │ ├── fastlz.h │ │ │ ├── fifo.c │ │ │ ├── fifo.h │ │ │ ├── filesystem.h │ │ │ ├── flz.c │ │ │ ├── flz.h │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── init.c │ │ │ ├── init.h │ │ │ ├── interface.c │ │ │ ├── interface.h │ │ │ ├── interface_implementation.h │ │ │ ├── kernelmod.c │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── log_domain.c │ │ │ ├── log_domain.h │ │ │ ├── map.c │ │ │ ├── map.h │ │ │ ├── mem.c │ │ │ ├── mem.h │ │ │ ├── memcpy.c │ │ │ ├── memcpy.h │ │ │ ├── messages.c │ │ │ ├── messages.h │ │ │ ├── modules.c │ │ │ ├── modules.h │ │ │ ├── os │ │ │ │ ├── Makefile.am │ │ │ │ ├── clock.h │ │ │ │ ├── filesystem.h │ │ │ │ ├── linux │ │ │ │ │ ├── glibc │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── deprecated.c │ │ │ │ │ │ ├── filesystem.c │ │ │ │ │ │ ├── filesystem.h │ │ │ │ │ │ ├── log.c │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ ├── mutex.c │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── signals.c │ │ │ │ │ │ ├── system.c │ │ │ │ │ │ ├── thread.c │ │ │ │ │ │ ├── thread.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── util.c │ │ │ │ │ │ └── waitqueue.h │ │ │ │ │ └── kernel │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── divdi3.c │ │ │ │ │ │ ├── filesystem.c │ │ │ │ │ │ ├── filesystem.h │ │ │ │ │ │ ├── log.c │ │ │ │ │ │ ├── mem.c │ │ │ │ │ │ ├── moddi3.c │ │ │ │ │ │ ├── mutex.h │ │ │ │ │ │ ├── qdivrem.c │ │ │ │ │ │ ├── quad.h │ │ │ │ │ │ ├── signals.c │ │ │ │ │ │ ├── system.c │ │ │ │ │ │ ├── thread.c │ │ │ │ │ │ ├── thread.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── udivdi3.c │ │ │ │ │ │ ├── umoddi3.c │ │ │ │ │ │ └── waitqueue.h │ │ │ │ ├── log.h │ │ │ │ ├── mem.h │ │ │ │ ├── mutex.h │ │ │ │ ├── psp │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── deprecated.c │ │ │ │ │ ├── filesystem.c │ │ │ │ │ ├── filesystem.h │ │ │ │ │ ├── log.c │ │ │ │ │ ├── mem.c │ │ │ │ │ ├── mutex.h │ │ │ │ │ ├── pthread.h │ │ │ │ │ ├── signals.c │ │ │ │ │ ├── system.c │ │ │ │ │ ├── thread.c │ │ │ │ │ ├── thread.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── util.c │ │ │ │ │ └── waitqueue.h │ │ │ │ ├── signals.h │ │ │ │ ├── system.h │ │ │ │ ├── thread.h │ │ │ │ ├── tls.h │ │ │ │ ├── types.h │ │ │ │ ├── waitqueue.h │ │ │ │ └── win32 │ │ │ │ │ ├── clock_win32.c │ │ │ │ │ ├── deprecated.c │ │ │ │ │ ├── filesystem.h │ │ │ │ │ ├── filesystem_win32.c │ │ │ │ │ ├── log_win32.c │ │ │ │ │ ├── mem_win32.c │ │ │ │ │ ├── mutex.h │ │ │ │ │ ├── signal.c │ │ │ │ │ ├── signals.c │ │ │ │ │ ├── system_win32.c │ │ │ │ │ ├── thread.h │ │ │ │ │ ├── thread_win32.c │ │ │ │ │ ├── types.h │ │ │ │ │ ├── util_win32.c │ │ │ │ │ ├── vsscanf.cpp │ │ │ │ │ └── waitqueue.h │ │ │ ├── perf.c │ │ │ ├── perf.h │ │ │ ├── plusplus.cpp │ │ │ ├── ppc_asm.h │ │ │ ├── ppcasm_memcpy.S │ │ │ ├── ppcasm_memcpy.h │ │ │ ├── ppcasm_memcpy_cachable.S │ │ │ ├── print.c │ │ │ ├── print.h │ │ │ ├── processor.c │ │ │ ├── processor.h │ │ │ ├── result.c │ │ │ ├── result.h │ │ │ ├── serial.c │ │ │ ├── serial.h │ │ │ ├── signals.c │ │ │ ├── signals.h │ │ │ ├── stream.c │ │ │ ├── stream.h │ │ │ ├── system.c │ │ │ ├── system.h │ │ │ ├── thread.c │ │ │ ├── thread.h │ │ │ ├── trace.c │ │ │ ├── trace.h │ │ │ ├── tree.c │ │ │ ├── tree.h │ │ │ ├── types.h │ │ │ ├── utf8.c │ │ │ ├── utf8.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── uuid.c │ │ │ └── uuid.h │ │ ├── divine │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── divine.c │ │ │ ├── divine.h │ │ │ ├── divine.pc.in │ │ │ ├── idivine.c │ │ │ └── idivine.h │ │ ├── dvc │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── dvc.c │ │ │ ├── dvc.h │ │ │ ├── dvc_mmx.h │ │ │ └── dvc_test.c │ │ ├── egl │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── DIRECTFB_GetConfigAttribs.cpp │ │ │ ├── DIRECTFB_GetConfigAttribs.h │ │ │ ├── EGL │ │ │ │ ├── Makefile.am │ │ │ │ ├── egl.h │ │ │ │ ├── egldfbext.h │ │ │ │ ├── egldfbmangle.h │ │ │ │ ├── egldfbunmangle.h │ │ │ │ ├── eglext.h │ │ │ │ └── eglplatform.h │ │ │ ├── EGLCoreWayland │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EGLDisplayWayland.cpp │ │ │ │ ├── EGLDisplayWayland.h │ │ │ │ └── Makefile.am │ │ │ ├── GLES2 │ │ │ │ ├── Makefile.am │ │ │ │ ├── gl2.h │ │ │ │ ├── gl2ext.h │ │ │ │ └── gl2platform.h │ │ │ ├── KHR │ │ │ │ ├── Makefile.am │ │ │ │ └── khrplatform.h │ │ │ ├── Makefile.am │ │ │ ├── api.cpp │ │ │ ├── build.h.in │ │ │ ├── config.cpp │ │ │ ├── context.cpp │ │ │ ├── core.cpp │ │ │ ├── dfbegl.h │ │ │ ├── dfbegl.pc.in │ │ │ ├── display.cpp │ │ │ ├── egl.pc.in │ │ │ ├── egl_api.cpp │ │ │ ├── egl_result.h │ │ │ ├── image.cpp │ │ │ ├── image.h │ │ │ ├── library.cpp │ │ │ ├── option.cpp │ │ │ ├── surface.cpp │ │ │ ├── tls.cpp │ │ │ └── util.cpp │ │ ├── fusion │ │ │ ├── .cvsignore │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Debug.cpp │ │ │ ├── Debug.h │ │ │ ├── Makefile.am │ │ │ ├── arena.c │ │ │ ├── arena.h │ │ │ ├── build.h.in │ │ │ ├── call.c │ │ │ ├── call.h │ │ │ ├── conf.c │ │ │ ├── conf.h │ │ │ ├── fusion.c │ │ │ ├── fusion.h │ │ │ ├── fusion.pc.in │ │ │ ├── fusion_internal.h │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── init.c │ │ │ ├── init.h │ │ │ ├── lock.c │ │ │ ├── lock.h │ │ │ ├── object.cpp │ │ │ ├── object.h │ │ │ ├── property.c │ │ │ ├── property.h │ │ │ ├── protocol.h │ │ │ ├── reactor.c │ │ │ ├── reactor.h │ │ │ ├── ref.c │ │ │ ├── ref.h │ │ │ ├── shm │ │ │ │ ├── .cvsignore │ │ │ │ ├── Makefile.am │ │ │ │ ├── fake.c │ │ │ │ ├── heap.c │ │ │ │ ├── pool.c │ │ │ │ ├── pool.h │ │ │ │ ├── shm.c │ │ │ │ ├── shm.h │ │ │ │ └── shm_internal.h │ │ │ ├── shmalloc.c │ │ │ ├── shmalloc.h │ │ │ ├── types.h │ │ │ ├── vector.c │ │ │ └── vector.h │ │ ├── fusiondale │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── coma │ │ │ │ ├── Makefile.am │ │ │ │ ├── coma.c │ │ │ │ ├── coma.h │ │ │ │ ├── coma_types.h │ │ │ │ ├── component.c │ │ │ │ ├── component.h │ │ │ │ ├── icoma.c │ │ │ │ ├── icoma.h │ │ │ │ ├── icomacomponent.c │ │ │ │ ├── icomacomponent.h │ │ │ │ ├── policy.c │ │ │ │ ├── policy.h │ │ │ │ ├── thread.c │ │ │ │ └── thread.h │ │ │ ├── core │ │ │ │ ├── Makefile.am │ │ │ │ ├── dale_core.c │ │ │ │ ├── dale_core.h │ │ │ │ ├── dale_types.h │ │ │ │ ├── messenger.c │ │ │ │ ├── messenger.h │ │ │ │ ├── messenger_port.c │ │ │ │ └── messenger_port.h │ │ │ ├── fusiondale.c │ │ │ ├── fusiondale.h │ │ │ ├── fusiondale.pc.in │ │ │ ├── fusiondale_util.h │ │ │ ├── fusiondale_version.h.in │ │ │ ├── ifusiondale.c │ │ │ ├── ifusiondale.h │ │ │ ├── messenger │ │ │ │ ├── Makefile.am │ │ │ │ ├── ifusiondalemessenger.c │ │ │ │ └── ifusiondalemessenger.h │ │ │ ├── misc │ │ │ │ ├── Makefile.am │ │ │ │ ├── dale_config.c │ │ │ │ └── dale_config.h │ │ │ └── one │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── icoma_one.c │ │ │ │ ├── icoma_one.h │ │ │ │ ├── icomacomponent_one.c │ │ │ │ ├── icomacomponent_one.h │ │ │ │ ├── ifusiondale_one.c │ │ │ │ ├── ifusiondale_one.h │ │ │ │ ├── ifusiondalemessenger_one.c │ │ │ │ └── ifusiondalemessenger_one.h │ │ ├── fusionsound │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── core │ │ │ │ ├── Makefile.am │ │ │ │ ├── core_sound.c │ │ │ │ ├── core_sound.h │ │ │ │ ├── fs_types.h │ │ │ │ ├── playback.c │ │ │ │ ├── playback.h │ │ │ │ ├── playback_internal.h │ │ │ │ ├── sound_buffer.c │ │ │ │ ├── sound_buffer.h │ │ │ │ ├── sound_device.c │ │ │ │ ├── sound_device.h │ │ │ │ ├── sound_driver.h │ │ │ │ ├── sound_mix.h │ │ │ │ └── types_sound.h │ │ │ ├── drivers │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── alsa.c │ │ │ │ ├── dummy.c │ │ │ │ ├── oss.c │ │ │ │ └── wave.c │ │ │ ├── fusionsound-internal.pc.in │ │ │ ├── fusionsound.c │ │ │ ├── fusionsound.h │ │ │ ├── fusionsound.pc.in │ │ │ ├── fusionsound_limits.h.in │ │ │ ├── fusionsound_version.h.in │ │ │ ├── ifusionsound.c │ │ │ ├── ifusionsound.h │ │ │ ├── ifusionsoundbuffer.c │ │ │ ├── ifusionsoundbuffer.h │ │ │ ├── ifusionsoundplayback.c │ │ │ ├── ifusionsoundplayback.h │ │ │ ├── ifusionsoundstream.c │ │ │ ├── ifusionsoundstream.h │ │ │ ├── media │ │ │ │ ├── Makefile.am │ │ │ │ ├── ifusionsoundmusicprovider.c │ │ │ │ └── ifusionsoundmusicprovider.h │ │ │ └── misc │ │ │ │ ├── Makefile.am │ │ │ │ ├── sound_conf.c │ │ │ │ ├── sound_conf.h │ │ │ │ ├── sound_util.c │ │ │ │ └── sound_util.h │ │ ├── sawman │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Debug.cpp │ │ │ ├── Debug.h │ │ │ ├── Makefile.am │ │ │ ├── SaWMan.flux │ │ │ ├── SaWManManager.flux │ │ │ ├── SaWManManager_includes.h │ │ │ ├── SaWManManager_real.cpp │ │ │ ├── SaWManProcess.flux │ │ │ ├── SaWManProcess_includes.h │ │ │ ├── SaWManProcess_real.cpp │ │ │ ├── SaWMan_includes.h │ │ │ ├── SaWMan_real.cpp │ │ │ ├── isawman.c │ │ │ ├── isawman.h │ │ │ ├── isawmanmanager.c │ │ │ ├── isawmanmanager.h │ │ │ ├── region.c │ │ │ ├── region.h │ │ │ ├── sawman.pc.in │ │ │ ├── sawman_config.c │ │ │ ├── sawman_config.h │ │ │ ├── sawman_core.c │ │ │ ├── sawman_draw.c │ │ │ ├── sawman_draw.h │ │ │ ├── sawman_internal.h │ │ │ ├── sawman_types.h │ │ │ ├── sawman_updates.c │ │ │ ├── sawman_updates.h │ │ │ ├── sawman_window.c │ │ │ └── sawman_window.h │ │ ├── voodoo │ │ │ ├── .cvsignore │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── TODO │ │ │ ├── app.h │ │ │ ├── build.h.in │ │ │ ├── client.c │ │ │ ├── client.h │ │ │ ├── conf.c │ │ │ ├── conf.h │ │ │ ├── connection.cpp │ │ │ ├── connection.h │ │ │ ├── connection_link.cpp │ │ │ ├── connection_link.h │ │ │ ├── connection_packet.cpp │ │ │ ├── connection_packet.h │ │ │ ├── connection_raw.cpp │ │ │ ├── connection_raw.h │ │ │ ├── dispatcher.cpp │ │ │ ├── dispatcher.h │ │ │ ├── init.c │ │ │ ├── init.h │ │ │ ├── instance.cpp │ │ │ ├── instance.h │ │ │ ├── interface.c │ │ │ ├── interface.h │ │ │ ├── internal.h │ │ │ ├── ivoodooplayer.c │ │ │ ├── ivoodooplayer.h │ │ │ ├── ivoodooplayer_dispatcher.c │ │ │ ├── ivoodooplayer_dispatcher.h │ │ │ ├── ivoodooplayer_requestor.c │ │ │ ├── link.h │ │ │ ├── manager.cpp │ │ │ ├── manager.h │ │ │ ├── manager_c.cpp │ │ │ ├── message.h │ │ │ ├── packet.h │ │ │ ├── play.c │ │ │ ├── play.h │ │ │ ├── play_internal.h │ │ │ ├── play_server.c │ │ │ ├── play_server.h │ │ │ ├── server.c │ │ │ ├── server.h │ │ │ ├── types.h │ │ │ ├── unix │ │ │ │ ├── Makefile.am │ │ │ │ ├── interfaces_unix.c │ │ │ │ └── link_unix.c │ │ │ ├── voodoo.pc.in │ │ │ └── win32 │ │ │ │ ├── interfaces.cpp │ │ │ │ ├── link_win32.c │ │ │ │ └── server_win32.c │ │ ├── wayland-dfb │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── wayland-dfb-client-protocol.h │ │ │ ├── wayland-dfb-protocol.c │ │ │ ├── wayland-dfb-server-protocol.h │ │ │ ├── wayland-dfb.cpp │ │ │ ├── wayland-dfb.h │ │ │ ├── wayland-dfb.pc.in │ │ │ └── wayland-dfb.xml │ │ └── wayland-egl │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── wayland-egl-priv.h │ │ │ ├── wayland-egl.c │ │ │ ├── wayland-egl.h │ │ │ └── wayland-egl.pc.in │ ├── m4 │ │ ├── .gitignore │ │ └── as-ac-expand.m4 │ ├── mkchlog │ ├── patches │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── README.davincifb │ │ ├── README.fusion │ │ ├── README.matroxfb-vsync-irq-patch │ │ ├── README.radeonfb-r300fix │ │ ├── README.savagefb │ │ ├── agpgart-noroot-2.6.10.patch.bz2 │ │ ├── davincifb-triple-osd0-2.6.10.patch.bz2 │ │ ├── linux-3.8-rc6_GP2D_2013-04-05.patch.bz2 │ │ ├── matroxfb-full-memory-linux-2.4.21-rc2.patch.bz2 │ │ ├── matroxfb-full-memory-linux-2.6.6.patch.bz2 │ │ ├── matroxfb-g400-clock-2.4.22.patch.bz2 │ │ ├── matroxfb-g400-clock-2.6.6.patch.bz2 │ │ ├── matroxfb-vsync-irq-2.4.20.patch.bz2 │ │ ├── matroxfb-vsync-irq-2.4.21-pre6.patch.bz2 │ │ ├── radeonfb-r300fix-2.6.17.patch.bz2 │ │ ├── radeonfb-r300fix-2.6.18.patch.bz2 │ │ ├── radeonfb-r300fix-2.6.22.patch.bz2 │ │ ├── rivafb-nv2030fix-2.6.10.patch.bz2 │ │ ├── rivafb-nv2030fix-2.6.9.patch.bz2 │ │ ├── rivafb-nv20fix-2.4.28.patch.bz2 │ │ ├── savagefb-0.3.2-linux-2.4.26.patch.bz2 │ │ ├── savagefb-0.4.0-linux-2.4.19.patch.bz2 │ │ ├── savagefb-0.4.0-linux-2.4.21-rc2.patch.bz2 │ │ └── vmwarefb-0.7.0-linux-2.4.22.patch.bz2 │ ├── proxy │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── compressor │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── dpack.c │ │ │ ├── dpack.h │ │ │ └── dpack_proto.h │ │ ├── dispatcher │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── icoma_dispatcher.c │ │ │ ├── icoma_dispatcher.h │ │ │ ├── icomacomponent_dispatcher.c │ │ │ ├── icomacomponent_dispatcher.h │ │ │ ├── idirectfb_dispatcher.c │ │ │ ├── idirectfb_dispatcher.h │ │ │ ├── idirectfbdatabuffer_dispatcher.c │ │ │ ├── idirectfbdatabuffer_dispatcher.h │ │ │ ├── idirectfbdisplaylayer_dispatcher.c │ │ │ ├── idirectfbdisplaylayer_dispatcher.h │ │ │ ├── idirectfbeventbuffer_dispatcher.c │ │ │ ├── idirectfbeventbuffer_dispatcher.h │ │ │ ├── idirectfbfont_dispatcher.c │ │ │ ├── idirectfbfont_dispatcher.h │ │ │ ├── idirectfbfoo_dispatcher.c │ │ │ ├── idirectfbfoo_dispatcher.h │ │ │ ├── idirectfbimageprovider_dispatcher.c │ │ │ ├── idirectfbimageprovider_dispatcher.h │ │ │ ├── idirectfbinputdevice_dispatcher.c │ │ │ ├── idirectfbinputdevice_dispatcher.h │ │ │ ├── idirectfbpalette_dispatcher.c │ │ │ ├── idirectfbpalette_dispatcher.h │ │ │ ├── idirectfbscreen_dispatcher.c │ │ │ ├── idirectfbscreen_dispatcher.h │ │ │ ├── idirectfbsurface_dispatcher.c │ │ │ ├── idirectfbsurface_dispatcher.h │ │ │ ├── idirectfbwindow_dispatcher.c │ │ │ ├── idirectfbwindow_dispatcher.h │ │ │ ├── idivine_dispatcher.c │ │ │ ├── idivine_dispatcher.h │ │ │ ├── ifusiondale_dispatcher.c │ │ │ ├── ifusiondale_dispatcher.h │ │ │ ├── ifusionsound_dispatcher.c │ │ │ ├── ifusionsound_dispatcher.h │ │ │ ├── ifusionsoundbuffer_dispatcher.c │ │ │ ├── ifusionsoundbuffer_dispatcher.h │ │ │ ├── ifusionsoundplayback_dispatcher.c │ │ │ ├── ifusionsoundplayback_dispatcher.h │ │ │ ├── ifusionsoundstream_dispatcher.c │ │ │ └── ifusionsoundstream_dispatcher.h │ │ └── requestor │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── icoma_requestor.c │ │ │ ├── icoma_requestor.h │ │ │ ├── icomacomponent_requestor.c │ │ │ ├── idirectfb_requestor.c │ │ │ ├── idirectfbdatabuffer_requestor.c │ │ │ ├── idirectfbdisplaylayer_requestor.c │ │ │ ├── idirectfbdisplaylayer_requestor.h │ │ │ ├── idirectfbeventbuffer_requestor.c │ │ │ ├── idirectfbeventbuffer_requestor.h │ │ │ ├── idirectfbfont_requestor.c │ │ │ ├── idirectfbfont_requestor.h │ │ │ ├── idirectfbfoo_requestor.c │ │ │ ├── idirectfbfoo_requestor.h │ │ │ ├── idirectfbimageprovider_requestor.c │ │ │ ├── idirectfbinputdevice_requestor.c │ │ │ ├── idirectfbinputdevice_requestor.h │ │ │ ├── idirectfbpalette_requestor.c │ │ │ ├── idirectfbpalette_requestor.h │ │ │ ├── idirectfbscreen_requestor.c │ │ │ ├── idirectfbsurface_requestor.c │ │ │ ├── idirectfbsurface_requestor.h │ │ │ ├── idirectfbwindow_requestor.c │ │ │ ├── idirectfbwindow_requestor.h │ │ │ ├── idivine_requestor.c │ │ │ ├── ifusiondale_requestor.c │ │ │ ├── ifusionsound_requestor.c │ │ │ ├── ifusionsoundbuffer_requestor.c │ │ │ ├── ifusionsoundplayback_requestor.c │ │ │ └── ifusionsoundstream_requestor.c │ ├── rules │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── flux_comp.make │ │ ├── flux_comp_sawman.make │ │ ├── libobject.make │ │ ├── libs_deps.make │ │ └── nmfile.make │ ├── src │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── core │ │ │ ├── .cvsignore │ │ │ ├── .gitignore │ │ │ ├── CoreDFB.flux │ │ │ ├── CoreDFB_CallMode.h │ │ │ ├── CoreDFB_includes.h │ │ │ ├── CoreDFB_real.cpp │ │ │ ├── CoreGraphicsState.flux │ │ │ ├── CoreGraphicsStateClient.cpp │ │ │ ├── CoreGraphicsStateClient.h │ │ │ ├── CoreGraphicsState_includes.h │ │ │ ├── CoreGraphicsState_real.cpp │ │ │ ├── CoreInputDevice.flux │ │ │ ├── CoreInputDevice_includes.h │ │ │ ├── CoreInputDevice_real.cpp │ │ │ ├── CoreLayer.flux │ │ │ ├── CoreLayerContext.flux │ │ │ ├── CoreLayerContext_includes.h │ │ │ ├── CoreLayerContext_real.cpp │ │ │ ├── CoreLayerRegion.flux │ │ │ ├── CoreLayerRegion_includes.h │ │ │ ├── CoreLayerRegion_real.cpp │ │ │ ├── CoreLayer_includes.h │ │ │ ├── CoreLayer_real.cpp │ │ │ ├── CorePalette.flux │ │ │ ├── CorePalette_includes.h │ │ │ ├── CorePalette_real.cpp │ │ │ ├── CoreScreen.flux │ │ │ ├── CoreScreen_includes.h │ │ │ ├── CoreScreen_real.cpp │ │ │ ├── CoreSlave.flux │ │ │ ├── CoreSlave_includes.h │ │ │ ├── CoreSlave_real.cpp │ │ │ ├── CoreSurface.flux │ │ │ ├── CoreSurfaceAllocation.flux │ │ │ ├── CoreSurfaceAllocation_includes.h │ │ │ ├── CoreSurfaceAllocation_real.cpp │ │ │ ├── CoreSurfaceClient.flux │ │ │ ├── CoreSurfaceClient_includes.h │ │ │ ├── CoreSurfaceClient_real.cpp │ │ │ ├── CoreSurface_includes.h │ │ │ ├── CoreSurface_real.cpp │ │ │ ├── CoreWindow.flux │ │ │ ├── CoreWindowStack.flux │ │ │ ├── CoreWindowStack_includes.h │ │ │ ├── CoreWindowStack_real.cpp │ │ │ ├── CoreWindow_includes.h │ │ │ ├── CoreWindow_real.cpp │ │ │ ├── Debug.cpp │ │ │ ├── Debug.h │ │ │ ├── DisplayTask.cpp │ │ │ ├── DisplayTask.h │ │ │ ├── Fifo.h │ │ │ ├── Graphics.cpp │ │ │ ├── Graphics.h │ │ │ ├── Interface.cpp │ │ │ ├── Interface.h │ │ │ ├── Makefile.am │ │ │ ├── PacketBuffer.h │ │ │ ├── Renderer.cpp │ │ │ ├── Renderer.h │ │ │ ├── SurfaceTask.cpp │ │ │ ├── SurfaceTask.h │ │ │ ├── Task.cpp │ │ │ ├── Task.h │ │ │ ├── TaskManager.cpp │ │ │ ├── TaskManager.h │ │ │ ├── TaskThreadsQ.cpp │ │ │ ├── TaskThreadsQ.h │ │ │ ├── Util.cpp │ │ │ ├── Util.h │ │ │ ├── clipboard.c │ │ │ ├── clipboard.h │ │ │ ├── colorhash.c │ │ │ ├── colorhash.h │ │ │ ├── core.c │ │ │ ├── core.h │ │ │ ├── core_parts.c │ │ │ ├── core_parts.h │ │ │ ├── core_system.h │ │ │ ├── coredefs.h │ │ │ ├── coretypes.h │ │ │ ├── fonts.c │ │ │ ├── fonts.h │ │ │ ├── gfxcard.c │ │ │ ├── gfxcard.h │ │ │ ├── graphics_driver.h │ │ │ ├── graphics_state.c │ │ │ ├── graphics_state.h │ │ │ ├── input.c │ │ │ ├── input.h │ │ │ ├── input_driver.h │ │ │ ├── input_hub.c │ │ │ ├── input_hub.h │ │ │ ├── layer_context.c │ │ │ ├── layer_context.h │ │ │ ├── layer_control.c │ │ │ ├── layer_control.h │ │ │ ├── layer_region.c │ │ │ ├── layer_region.h │ │ │ ├── layers.c │ │ │ ├── layers.h │ │ │ ├── layers_internal.h │ │ │ ├── local_surface_pool.c │ │ │ ├── palette.c │ │ │ ├── palette.h │ │ │ ├── prealloc_surface_pool.c │ │ │ ├── prealloc_surface_pool_bridge.c │ │ │ ├── screen.c │ │ │ ├── screen.h │ │ │ ├── screens.c │ │ │ ├── screens.h │ │ │ ├── screens_internal.h │ │ │ ├── shared_secure_surface_pool.c │ │ │ ├── shared_surface_pool.c │ │ │ ├── state.c │ │ │ ├── state.h │ │ │ ├── surface.c │ │ │ ├── surface.h │ │ │ ├── surface_allocation.cpp │ │ │ ├── surface_allocation.h │ │ │ ├── surface_buffer.c │ │ │ ├── surface_buffer.h │ │ │ ├── surface_client.c │ │ │ ├── surface_client.h │ │ │ ├── surface_core.c │ │ │ ├── surface_core.h │ │ │ ├── surface_pool.c │ │ │ ├── surface_pool.h │ │ │ ├── surface_pool_bridge.c │ │ │ ├── surface_pool_bridge.h │ │ │ ├── system.c │ │ │ ├── system.h │ │ │ ├── windows.c │ │ │ ├── windows.h │ │ │ ├── windows_internal.h │ │ │ ├── windowstack.c │ │ │ ├── windowstack.h │ │ │ ├── wm.c │ │ │ ├── wm.h │ │ │ └── wm_module.h │ │ ├── directfb.c │ │ ├── display │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── idirectfbdisplaylayer.c │ │ │ ├── idirectfbdisplaylayer.h │ │ │ ├── idirectfbpalette.c │ │ │ ├── idirectfbpalette.h │ │ │ ├── idirectfbscreen.c │ │ │ ├── idirectfbscreen.h │ │ │ ├── idirectfbsurface.c │ │ │ ├── idirectfbsurface.h │ │ │ ├── idirectfbsurface_layer.c │ │ │ ├── idirectfbsurface_layer.h │ │ │ ├── idirectfbsurface_window.c │ │ │ ├── idirectfbsurface_window.h │ │ │ ├── idirectfbsurfaceallocation.c │ │ │ └── idirectfbsurfaceallocation.h │ │ ├── dummy.cpp │ │ ├── gfx │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── clip.c │ │ │ ├── clip.h │ │ │ ├── convert.c │ │ │ ├── convert.h │ │ │ ├── generic │ │ │ │ ├── .cvsignore │ │ │ │ ├── GenefxEngine.cpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── duffs_device.h │ │ │ │ ├── generic.c │ │ │ │ ├── generic.h │ │ │ │ ├── generic_64.h │ │ │ │ ├── generic_blit.c │ │ │ │ ├── generic_draw_line.c │ │ │ │ ├── generic_dummy.c │ │ │ │ ├── generic_fill_rectangle.c │ │ │ │ ├── generic_mmx.h │ │ │ │ ├── generic_stretch_blit.c │ │ │ │ ├── generic_texture_triangles.c │ │ │ │ ├── generic_util.c │ │ │ │ ├── stretch_hvx_16.h │ │ │ │ ├── stretch_hvx_32.h │ │ │ │ ├── stretch_hvx_8.h │ │ │ │ ├── stretch_hvx_88.h │ │ │ │ ├── stretch_hvx_N.h │ │ │ │ ├── stretch_up_down_16.h │ │ │ │ ├── stretch_up_down_16_indexed.h │ │ │ │ ├── stretch_up_down_32.h │ │ │ │ ├── stretch_up_down_32_indexed.h │ │ │ │ ├── stretch_up_down_8.h │ │ │ │ ├── stretch_up_down_88.h │ │ │ │ ├── stretch_up_down_table.h │ │ │ │ ├── template_acc_16.h │ │ │ │ ├── template_acc_24.h │ │ │ │ ├── template_acc_32.h │ │ │ │ ├── template_colorkey_16.h │ │ │ │ ├── template_colorkey_24.h │ │ │ │ └── template_colorkey_32.h │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── idirectfb.c │ │ ├── idirectfb.h │ │ ├── init.c │ │ ├── init.h │ │ ├── input │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── idirectfbinputbuffer.c │ │ │ ├── idirectfbinputbuffer.h │ │ │ ├── idirectfbinputdevice.c │ │ │ └── idirectfbinputdevice.h │ │ ├── media │ │ │ ├── .cvsignore │ │ │ ├── .gitignore │ │ │ ├── DataBuffer.flux │ │ │ ├── DataBuffer_includes.h │ │ │ ├── DataBuffer_real.cpp │ │ │ ├── ImageProvider.flux │ │ │ ├── ImageProvider_includes.h │ │ │ ├── ImageProvider_real.cpp │ │ │ ├── Makefile.am │ │ │ ├── idirectfbdatabuffer.c │ │ │ ├── idirectfbdatabuffer.h │ │ │ ├── idirectfbdatabuffer_client.c │ │ │ ├── idirectfbdatabuffer_client.h │ │ │ ├── idirectfbdatabuffer_file.c │ │ │ ├── idirectfbdatabuffer_memory.c │ │ │ ├── idirectfbdatabuffer_streamed.c │ │ │ ├── idirectfbfont.c │ │ │ ├── idirectfbfont.h │ │ │ ├── idirectfbimageprovider.c │ │ │ ├── idirectfbimageprovider.h │ │ │ ├── idirectfbimageprovider_client.c │ │ │ ├── idirectfbimageprovider_client.h │ │ │ ├── idirectfbvideoprovider.c │ │ │ └── idirectfbvideoprovider.h │ │ ├── misc │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── conf.c │ │ │ ├── conf.h │ │ │ ├── dither.h │ │ │ ├── dither565.h │ │ │ ├── gfx_util.c │ │ │ ├── gfx_util.h │ │ │ ├── util.c │ │ │ └── util.h │ │ └── windows │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── idirectfbwindow.c │ │ │ └── idirectfbwindow.h │ ├── systems │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── android │ │ │ ├── Makefile.am │ │ │ ├── android_input.c │ │ │ ├── android_layer.c │ │ │ ├── android_main.c │ │ │ ├── android_screen.c │ │ │ ├── android_surface_pool_gr.c │ │ │ ├── android_surface_pool_gr.h │ │ │ ├── android_system.c │ │ │ ├── android_system.h │ │ │ ├── fbo_surface_pool.c │ │ │ ├── fbo_surface_pool.h │ │ │ ├── idirectfbgl2.c │ │ │ ├── idirectfbgl2context.c │ │ │ └── idirectfbimageprovider_android.c │ │ ├── devmem │ │ │ ├── Makefile.am │ │ │ ├── devmem.c │ │ │ ├── devmem.h │ │ │ ├── devmem_surface_pool.c │ │ │ ├── surfacemanager.c │ │ │ └── surfacemanager.h │ │ ├── drmkms │ │ │ ├── Makefile.am │ │ │ ├── drmkms_layer.c │ │ │ ├── drmkms_screen.c │ │ │ ├── drmkms_surface_pool.c │ │ │ ├── drmkms_system.c │ │ │ ├── drmkms_system.h │ │ │ ├── vt.c │ │ │ └── vt.h │ │ ├── dummy │ │ │ ├── Makefile.am │ │ │ ├── dummy.c │ │ │ └── dummy.h │ │ ├── egl │ │ │ ├── Makefile.am │ │ │ ├── egl_primary.c │ │ │ ├── egl_primary.h │ │ │ ├── egl_surface_pool.c │ │ │ ├── egl_system.c │ │ │ └── egl_system.h │ │ ├── fbdev │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── agp.c │ │ │ ├── agp.h │ │ │ ├── fb.h │ │ │ ├── fbdev.c │ │ │ ├── fbdev.h │ │ │ ├── fbdev_surface_pool.c │ │ │ ├── surfacemanager.c │ │ │ ├── surfacemanager.h │ │ │ ├── vt.c │ │ │ └── vt.h │ │ ├── mesa │ │ │ ├── Makefile.am │ │ │ ├── idirectfbgl2.c │ │ │ ├── idirectfbgl2context.c │ │ │ ├── mesa_layer.c │ │ │ ├── mesa_screen.c │ │ │ ├── mesa_surface_pool.c │ │ │ ├── mesa_system.c │ │ │ ├── mesa_system.h │ │ │ ├── vt.c │ │ │ └── vt.h │ │ ├── osx │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── osx.c │ │ │ ├── osx.h │ │ │ ├── osxinput.c │ │ │ ├── primary.c │ │ │ └── primary.h │ │ ├── pvr2d │ │ │ ├── Makefile.am │ │ │ ├── pvr2d_primary.c │ │ │ ├── pvr2d_primary.h │ │ │ ├── pvr2d_surface_pool.c │ │ │ ├── pvr2d_system.c │ │ │ └── pvr2d_system.h │ │ ├── sdl │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── primary.c │ │ │ ├── primary.h │ │ │ ├── sdl.c │ │ │ ├── sdl.h │ │ │ ├── sdl_surface_pool.c │ │ │ ├── sdlgfx.c │ │ │ └── sdlinput.c │ │ ├── vnc │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── primary.c │ │ │ ├── primary.h │ │ │ ├── vnc.c │ │ │ ├── vnc.h │ │ │ └── vncinput.c │ │ ├── x11 │ │ │ ├── .cvsignore │ │ │ ├── CMakeLists.txt │ │ │ ├── EGLDisplayX11.cpp │ │ │ ├── EGLDisplayX11.h │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── X11EGLImpl.cpp │ │ │ ├── X11EGLImpl.h │ │ │ ├── glx_surface_pool.c │ │ │ ├── glx_surface_pool.h │ │ │ ├── idirectfbgl.c │ │ │ ├── primary.c │ │ │ ├── primary.h │ │ │ ├── surfacemanager.c │ │ │ ├── surfacemanager.h │ │ │ ├── vpsmem_surface_pool.c │ │ │ ├── vpsmem_surface_pool.h │ │ │ ├── x11.c │ │ │ ├── x11.h │ │ │ ├── x11_surface_pool.c │ │ │ ├── x11_surface_pool.h │ │ │ ├── x11_surface_pool_bridge.c │ │ │ ├── x11_surface_pool_bridge.h │ │ │ ├── x11_window_pool.c │ │ │ ├── x11image.c │ │ │ ├── x11image.h │ │ │ ├── x11input.c │ │ │ ├── x11types.h │ │ │ ├── xwindow.c │ │ │ └── xwindow.h │ │ └── x11vdpau │ │ │ ├── .cvsignore │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── primary.c │ │ │ ├── primary.h │ │ │ ├── x11.c │ │ │ ├── x11.h │ │ │ ├── x11input.c │ │ │ ├── x11types.h │ │ │ ├── x11vdpau_surface_pool.c │ │ │ └── x11vdpau_surface_pool.h │ ├── tests │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── OneBench.c │ │ ├── OneTest.c │ │ ├── coretest_blit2.c │ │ ├── coretest_task.cpp │ │ ├── coretest_task_fillrect.cpp │ │ ├── dfbtest_alloc.c │ │ ├── dfbtest_blit.c │ │ ├── dfbtest_blit2.c │ │ ├── dfbtest_blit_multi.c │ │ ├── dfbtest_blit_threads.c │ │ ├── dfbtest_clipboard.c │ │ ├── dfbtest_egl.c │ │ ├── dfbtest_eglblit.c │ │ ├── dfbtest_eglimage.cpp │ │ ├── dfbtest_fillrect.c │ │ ├── dfbtest_flip.c │ │ ├── dfbtest_font.c │ │ ├── dfbtest_gears.c │ │ ├── dfbtest_gl1.c │ │ ├── dfbtest_gl2.c │ │ ├── dfbtest_gl3.c │ │ ├── dfbtest_init.c │ │ ├── dfbtest_input.c │ │ ├── dfbtest_layer.c │ │ ├── dfbtest_layer_setsurface.cpp │ │ ├── dfbtest_layers.c │ │ ├── dfbtest_mirror.c │ │ ├── dfbtest_old_gl2.c │ │ ├── dfbtest_prealloc.c │ │ ├── dfbtest_reinit.c │ │ ├── dfbtest_resize.c │ │ ├── dfbtest_scale.c │ │ ├── dfbtest_scale_nv21.c │ │ ├── dfbtest_stereo.c │ │ ├── dfbtest_stereo_window.c │ │ ├── dfbtest_surface_compositor.c │ │ ├── dfbtest_surface_compositor_threads.c │ │ ├── dfbtest_surface_updates.c │ │ ├── dfbtest_sync.c │ │ ├── dfbtest_video.c │ │ ├── dfbtest_waitserial.c │ │ ├── dfbtest_water.c │ │ ├── dfbtest_window.c │ │ ├── dfbtest_window_cursor.c │ │ ├── dfbtest_window_flip.c │ │ ├── dfbtest_window_flip_once.c │ │ ├── dfbtest_window_surface.c │ │ ├── dfbtest_window_update.c │ │ ├── dfbtest_windows_watcher.c │ │ ├── direct_stream.c │ │ ├── direct_test.c │ │ ├── divine_test.c │ │ ├── fdtest_bench.c │ │ ├── fdtest_coma.c │ │ ├── fdtest_init.c │ │ ├── fusion_call.c │ │ ├── fusion_call_bench.c │ │ ├── fusion_fork.c │ │ ├── fusion_reactor.c │ │ ├── fusion_skirmish.c │ │ ├── fusion_stream.c │ │ ├── sample1.c │ │ ├── testman.c │ │ ├── testrun.c │ │ ├── voodoo │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── voodoo_client.c │ │ │ ├── voodoo_server.c │ │ │ └── voodoo_test.h │ │ ├── voodoo_bench.c │ │ ├── voodoo_bench_client.c │ │ ├── voodoo_bench_client_unix.c │ │ ├── voodoo_bench_server.c │ │ ├── voodoo_bench_server_unix.c │ │ └── voodoo_bench_socketpair.c │ ├── tools │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── README │ │ ├── dfbdump.c │ │ ├── dfbdumpinput.c │ │ ├── dfbfx.c │ │ ├── dfbg.c │ │ ├── dfbinfo.c │ │ ├── dfbinput.c │ │ ├── dfbinspector.c │ │ ├── dfblayer.c │ │ ├── dfbmaster.c │ │ ├── dfbpenmount.c │ │ ├── dfbproxy.c │ │ ├── dfbscreen.c │ │ ├── dfbsummon.c │ │ ├── directfb-csource.c │ │ ├── fddump.c │ │ ├── fdmaster.c │ │ ├── fsdump.c │ │ ├── fsmaster.c │ │ ├── fsplay.c │ │ ├── fsproxy.c │ │ ├── fsvolume.c │ │ ├── fusion_bench.c │ │ ├── gendoc.pl │ │ ├── mkdfiff.c │ │ ├── mkdgiff.c │ │ ├── mkdgifft.cpp │ │ ├── mknames.sh │ │ ├── mkresult.sh │ │ ├── raw15toraw24.c │ │ ├── raw16toraw24.c │ │ ├── raw32toraw24.c │ │ ├── scroll_circle.spooky │ │ ├── scroll_diagonal.spooky │ │ ├── scroll_vertical.spooky │ │ ├── spooky.c │ │ ├── swmdump.c │ │ ├── voodooplay.c │ │ ├── voodooplay_client.c │ │ └── voodooplay_server.c │ └── wm │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── default │ │ ├── .cvsignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── default.c │ │ ├── sawman │ │ ├── .cvsignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ └── sawman_wm.c │ │ └── unique │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── FLOW │ │ ├── IDEAS │ │ ├── Makefile.am │ │ ├── STRET │ │ ├── classes │ │ ├── .cvsignore │ │ ├── Makefile.am │ │ ├── foo.c │ │ ├── frame.c │ │ ├── root.c │ │ └── window.c │ │ ├── context.c │ │ ├── context.h │ │ ├── data │ │ ├── .cvsignore │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── foo_e.png │ │ ├── foo_n.png │ │ ├── foo_ne.png │ │ ├── foo_nw.png │ │ ├── foo_s.png │ │ ├── foo_se.png │ │ ├── foo_sw.png │ │ └── foo_w.png │ │ ├── decoration.c │ │ ├── decoration.h │ │ ├── device.c │ │ ├── device.h │ │ ├── devices │ │ ├── .cvsignore │ │ ├── Makefile.am │ │ ├── keyboard.c │ │ ├── pointer.c │ │ └── wheel.c │ │ ├── input_channel.c │ │ ├── input_channel.h │ │ ├── input_events.h │ │ ├── input_switch.c │ │ ├── input_switch.h │ │ ├── internal.h │ │ ├── stret.c │ │ ├── stret.h │ │ ├── stret_iteration.c │ │ ├── stret_iteration.h │ │ ├── stret_test.c │ │ ├── test_color.c │ │ ├── test_foo.c │ │ ├── types.h │ │ ├── unique.c │ │ ├── uniquewm.c │ │ ├── uniquewm.h │ │ ├── uwmdump.c │ │ ├── window.c │ │ └── window.h ├── JSON │ └── json.hpp ├── LVGL │ ├── CMakeLists.txt │ ├── LVGL.vcxproj │ ├── LVGL.vcxproj.filters │ ├── lv_conf.h │ ├── lv_drivers │ │ ├── .gitignore │ │ ├── README.md │ │ ├── display │ │ │ ├── R61581.c │ │ │ ├── R61581.h │ │ │ ├── SSD1963.c │ │ │ ├── SSD1963.h │ │ │ ├── ST7565.c │ │ │ ├── ST7565.h │ │ │ ├── display.mk │ │ │ ├── fbdev.c │ │ │ ├── fbdev.h │ │ │ ├── monitor.c │ │ │ └── monitor.h │ │ ├── docs │ │ │ ├── astyle_c │ │ │ └── astyle_h │ │ ├── indev │ │ │ ├── AD_touch.c │ │ │ ├── AD_touch.h │ │ │ ├── FT5406EE8.c │ │ │ ├── FT5406EE8.h │ │ │ ├── XPT2046.c │ │ │ ├── XPT2046.h │ │ │ ├── evdev.c │ │ │ ├── evdev.h │ │ │ ├── indev.mk │ │ │ ├── keyboard.c │ │ │ ├── keyboard.h │ │ │ ├── libinput.c │ │ │ ├── libinput.h │ │ │ ├── mouse.c │ │ │ ├── mouse.h │ │ │ ├── mousewheel.c │ │ │ └── mousewheel.h │ │ ├── lv_drivers.mk │ │ ├── lv_drv_conf_templ.h │ │ ├── win_drv.c │ │ └── win_drv.h │ ├── lv_drv_conf.h │ ├── lv_ex_conf.h │ ├── lvgl │ │ ├── .clang-format │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── LICENCE.txt │ │ ├── README.md │ │ ├── docs │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CODING_STYLE.md │ │ │ └── CONTRIBUTING.md │ │ ├── lv_conf_template.h │ │ ├── lvgl.h │ │ ├── lvgl.mk │ │ ├── porting │ │ │ ├── lv_port_disp_template.c │ │ │ ├── lv_port_disp_template.h │ │ │ ├── lv_port_fs_template.c │ │ │ ├── lv_port_fs_template.h │ │ │ ├── lv_port_indev_template.c │ │ │ └── lv_port_indev_template.h │ │ ├── scripts │ │ │ ├── Doxyfile │ │ │ ├── built_in_font │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ └── built_in_font_gen.py │ │ │ ├── clang-formatter.sh │ │ │ ├── cppcheck_run.sh │ │ │ └── lv_conf_checker.py │ │ └── src │ │ │ ├── lv_conf_checker.h │ │ │ ├── lv_core │ │ │ ├── lv_core.mk │ │ │ ├── lv_debug.c │ │ │ ├── lv_debug.h │ │ │ ├── lv_disp.c │ │ │ ├── lv_disp.h │ │ │ ├── lv_group.c │ │ │ ├── lv_group.h │ │ │ ├── lv_indev.c │ │ │ ├── lv_indev.h │ │ │ ├── lv_obj.c │ │ │ ├── lv_obj.h │ │ │ ├── lv_refr.c │ │ │ ├── lv_refr.h │ │ │ ├── lv_style.c │ │ │ └── lv_style.h │ │ │ ├── lv_draw │ │ │ ├── lv_draw.c │ │ │ ├── lv_draw.h │ │ │ ├── lv_draw.mk │ │ │ ├── lv_draw_arc.c │ │ │ ├── lv_draw_arc.h │ │ │ ├── lv_draw_basic.c │ │ │ ├── lv_draw_basic.h │ │ │ ├── lv_draw_img.c │ │ │ ├── lv_draw_img.h │ │ │ ├── lv_draw_label.c │ │ │ ├── lv_draw_label.h │ │ │ ├── lv_draw_line.c │ │ │ ├── lv_draw_line.h │ │ │ ├── lv_draw_rect.c │ │ │ ├── lv_draw_rect.h │ │ │ ├── lv_draw_triangle.c │ │ │ ├── lv_draw_triangle.h │ │ │ ├── lv_img_cache.c │ │ │ ├── lv_img_cache.h │ │ │ ├── lv_img_decoder.c │ │ │ └── lv_img_decoder.h │ │ │ ├── lv_font │ │ │ ├── lv_font.c │ │ │ ├── lv_font.h │ │ │ ├── lv_font.mk │ │ │ ├── lv_font_fmt_txt.c │ │ │ ├── lv_font_fmt_txt.h │ │ │ ├── lv_font_roboto_12.c │ │ │ ├── lv_font_roboto_16.c │ │ │ ├── lv_font_roboto_22.c │ │ │ ├── lv_font_roboto_28.c │ │ │ ├── lv_font_unscii_8.c │ │ │ └── lv_symbol_def.h │ │ │ ├── lv_hal │ │ │ ├── lv_hal.h │ │ │ ├── lv_hal.mk │ │ │ ├── lv_hal_disp.c │ │ │ ├── lv_hal_disp.h │ │ │ ├── lv_hal_indev.c │ │ │ ├── lv_hal_indev.h │ │ │ ├── lv_hal_tick.c │ │ │ └── lv_hal_tick.h │ │ │ ├── lv_misc │ │ │ ├── lv_anim.c │ │ │ ├── lv_anim.h │ │ │ ├── lv_area.c │ │ │ ├── lv_area.h │ │ │ ├── lv_async.c │ │ │ ├── lv_async.h │ │ │ ├── lv_circ.c │ │ │ ├── lv_circ.h │ │ │ ├── lv_color.c │ │ │ ├── lv_color.h │ │ │ ├── lv_fs.c │ │ │ ├── lv_fs.h │ │ │ ├── lv_gc.c │ │ │ ├── lv_gc.h │ │ │ ├── lv_ll.c │ │ │ ├── lv_ll.h │ │ │ ├── lv_log.c │ │ │ ├── lv_log.h │ │ │ ├── lv_math.c │ │ │ ├── lv_math.h │ │ │ ├── lv_mem.c │ │ │ ├── lv_mem.h │ │ │ ├── lv_misc.mk │ │ │ ├── lv_printf.c │ │ │ ├── lv_printf.h │ │ │ ├── lv_task.c │ │ │ ├── lv_task.h │ │ │ ├── lv_templ.c │ │ │ ├── lv_templ.h │ │ │ ├── lv_txt.c │ │ │ ├── lv_txt.h │ │ │ ├── lv_types.h │ │ │ ├── lv_utils.c │ │ │ └── lv_utils.h │ │ │ ├── lv_objx │ │ │ ├── lv_arc.c │ │ │ ├── lv_arc.h │ │ │ ├── lv_bar.c │ │ │ ├── lv_bar.h │ │ │ ├── lv_btn.c │ │ │ ├── lv_btn.h │ │ │ ├── lv_btnm.c │ │ │ ├── lv_btnm.h │ │ │ ├── lv_calendar.c │ │ │ ├── lv_calendar.h │ │ │ ├── lv_canvas.c │ │ │ ├── lv_canvas.h │ │ │ ├── lv_cb.c │ │ │ ├── lv_cb.h │ │ │ ├── lv_chart.c │ │ │ ├── lv_chart.h │ │ │ ├── lv_cont.c │ │ │ ├── lv_cont.h │ │ │ ├── lv_ddlist.c │ │ │ ├── lv_ddlist.h │ │ │ ├── lv_gauge.c │ │ │ ├── lv_gauge.h │ │ │ ├── lv_img.c │ │ │ ├── lv_img.h │ │ │ ├── lv_imgbtn.c │ │ │ ├── lv_imgbtn.h │ │ │ ├── lv_kb.c │ │ │ ├── lv_kb.h │ │ │ ├── lv_label.c │ │ │ ├── lv_label.h │ │ │ ├── lv_led.c │ │ │ ├── lv_led.h │ │ │ ├── lv_line.c │ │ │ ├── lv_line.h │ │ │ ├── lv_list.c │ │ │ ├── lv_list.h │ │ │ ├── lv_lmeter.c │ │ │ ├── lv_lmeter.h │ │ │ ├── lv_mbox.c │ │ │ ├── lv_mbox.h │ │ │ ├── lv_objx.mk │ │ │ ├── lv_objx_templ.c │ │ │ ├── lv_objx_templ.h │ │ │ ├── lv_page.c │ │ │ ├── lv_page.h │ │ │ ├── lv_preload.c │ │ │ ├── lv_preload.h │ │ │ ├── lv_roller.c │ │ │ ├── lv_roller.h │ │ │ ├── lv_slider.c │ │ │ ├── lv_slider.h │ │ │ ├── lv_spinbox.c │ │ │ ├── lv_spinbox.h │ │ │ ├── lv_sw.c │ │ │ ├── lv_sw.h │ │ │ ├── lv_ta.c │ │ │ ├── lv_ta.h │ │ │ ├── lv_table.c │ │ │ ├── lv_table.h │ │ │ ├── lv_tabview.c │ │ │ ├── lv_tabview.h │ │ │ ├── lv_tileview.c │ │ │ ├── lv_tileview.h │ │ │ ├── lv_win.c │ │ │ └── lv_win.h │ │ │ ├── lv_themes │ │ │ ├── lv_theme.c │ │ │ ├── lv_theme.h │ │ │ ├── lv_theme_alien.c │ │ │ ├── lv_theme_alien.h │ │ │ ├── lv_theme_default.c │ │ │ ├── lv_theme_default.h │ │ │ ├── lv_theme_material.c │ │ │ ├── lv_theme_material.h │ │ │ ├── lv_theme_mono.c │ │ │ ├── lv_theme_mono.h │ │ │ ├── lv_theme_nemo.c │ │ │ ├── lv_theme_nemo.h │ │ │ ├── lv_theme_night.c │ │ │ ├── lv_theme_night.h │ │ │ ├── lv_theme_templ.c │ │ │ ├── lv_theme_templ.h │ │ │ ├── lv_theme_zen.c │ │ │ ├── lv_theme_zen.h │ │ │ └── lv_themes.mk │ │ │ └── lv_version.h │ ├── visual_studio_2017_sdl.vcxproj │ └── visual_studio_2017_sdl.vcxproj.filters ├── MXML │ ├── CHANGES.md │ ├── LICENSE │ ├── Makefile.in │ ├── NOTICE │ ├── README.md │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── doc │ │ ├── body.man │ │ ├── body.md │ │ ├── footer.man │ │ ├── mxml-cover.jpg │ │ ├── mxml-cover.opacity │ │ ├── mxml-cover.png │ │ ├── mxml.3 │ │ ├── mxml.epub │ │ ├── mxml.html │ │ ├── mxml.opacity │ │ └── mxml.png │ ├── install-sh │ ├── mxml-attr.c │ ├── mxml-entity.c │ ├── mxml-file.c │ ├── mxml-get.c │ ├── mxml-index.c │ ├── mxml-node.c │ ├── mxml-private.c │ ├── mxml-private.h │ ├── mxml-search.c │ ├── mxml-set.c │ ├── mxml-string.c │ ├── mxml.h │ ├── mxml.pc.in │ ├── mxml.spec │ ├── test.xml │ ├── test │ │ ├── class.cxx │ │ ├── dotest.sh │ │ ├── enum.cxx │ │ ├── function.cxx │ │ ├── functype.cxx │ │ ├── struct.cxx │ │ └── type.cxx │ ├── testmxml.c │ ├── vcnet │ │ ├── config.h │ │ ├── mxml.sln │ │ ├── mxml1.def │ │ ├── mxml1.vcxproj │ │ ├── mxml1.vcxproj.filters │ │ ├── mxmlstat.vcxproj │ │ ├── mxmlstat.vcxproj.filters │ │ ├── packages.config │ │ ├── testmxml.vcxproj │ │ └── testmxml.vcxproj.filters │ └── xcode │ │ ├── config.h │ │ └── mxml.xcodeproj │ │ └── project.pbxproj ├── SDL2-2.0.10 │ ├── Android.mk │ ├── BUGS.txt │ ├── CMakeLists.txt │ ├── CMakeSettings.json │ ├── COPYING.txt │ ├── CREDITS.txt │ ├── INSTALL.txt │ ├── Makefile.in │ ├── Makefile.minimal │ ├── Makefile.os2 │ ├── Makefile.pandora │ ├── Makefile.psp │ ├── Makefile.wiz │ ├── README-SDL.txt │ ├── README.txt │ ├── SDL2.spec │ ├── SDL2.spec.in │ ├── SDL2Config.cmake │ ├── TODO.txt │ ├── VisualC-WinRT │ │ ├── SDL2-WinRT.nuspec │ │ ├── SDL2-WinRT.targets │ │ ├── SDL2main-WinRT-NonXAML.nuspec │ │ ├── SDL2main-WinRT-NonXAML.targets │ │ ├── UWP_VS2015 │ │ │ ├── SDL-UWP.sln │ │ │ ├── SDL-UWP.vcxproj │ │ │ └── SDL-UWP.vcxproj.filters │ │ ├── WinPhone81_VS2013 │ │ │ ├── SDL-WinPhone81.sln │ │ │ ├── SDL-WinPhone81.vcxproj │ │ │ └── SDL-WinPhone81.vcxproj.filters │ │ ├── WinRT81_VS2013 │ │ │ ├── SDL-WinRT81.sln │ │ │ ├── SDL-WinRT81.vcxproj │ │ │ └── SDL-WinRT81.vcxproj.filters │ │ └── tests │ │ │ ├── loopwave │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ ├── Package.appxmanifest │ │ │ └── loopwave_VS2012.vcxproj │ │ │ └── testthread │ │ │ ├── Assets │ │ │ ├── Logo.png │ │ │ ├── SmallLogo.png │ │ │ ├── SplashScreen.png │ │ │ └── StoreLogo.png │ │ │ ├── Package.appxmanifest │ │ │ └── testthread_VS2012.vcxproj │ ├── VisualC.html │ ├── VisualC │ │ ├── SDL.sln │ │ ├── SDL │ │ │ ├── SDL.vcxproj │ │ │ └── SDL.vcxproj.filters │ │ ├── SDLmain │ │ │ └── SDLmain.vcxproj │ │ ├── SDLtest │ │ │ └── SDLtest.vcxproj │ │ ├── clean.sh │ │ ├── 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 │ │ │ ├── testshape │ │ │ │ └── testshape.vcxproj │ │ │ ├── testsprite2 │ │ │ │ └── testsprite2.vcxproj │ │ │ ├── testvulkan │ │ │ │ └── testvulkan.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 │ │ │ ├── Info.plist │ │ │ ├── README │ │ │ ├── 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 │ │ ├── SDL │ │ │ └── SDL.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── All-iOS.xcscheme │ │ │ │ ├── All-tvOS.xcscheme │ │ │ │ ├── PrepareXcodeProjectTemplate.xcscheme │ │ │ │ ├── libSDL-iOS-dylib.xcscheme │ │ │ │ ├── libSDL-iOS.xcscheme │ │ │ │ ├── libSDL-tvOS-dylib.xcscheme │ │ │ │ ├── libSDL-tvOS.xcscheme │ │ │ │ ├── libSDLmain-iOS.xcscheme │ │ │ │ └── libSDLmain-tvOS.xcscheme │ │ ├── SDLtest │ │ │ └── SDL2test.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── Template │ │ │ └── SDL iOS Application │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Icon.png │ │ │ │ ├── Info.plist │ │ │ │ ├── ___PROJECTNAME___.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── TemplateInfo.plist │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── main.c │ │ └── Test │ │ │ ├── Info.plist │ │ │ ├── README │ │ │ └── TestiPhoneOS.xcodeproj │ │ │ └── project.pbxproj │ ├── Xcode │ │ ├── SDL │ │ │ ├── Info-Framework.plist │ │ │ ├── SDL.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── pkg-support │ │ │ │ ├── SDL.info │ │ │ │ ├── resources │ │ │ │ ├── License.txt │ │ │ │ ├── ReadMe.txt │ │ │ │ └── SDL_DS_Store │ │ │ │ └── sdl_logo.pdf │ │ ├── SDLTest │ │ │ ├── SDLTest.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── TestDropFile-Info.plist │ │ └── XcodeDocSet │ │ │ └── Doxyfile │ ├── acinclude │ │ ├── ac_check_define.m4 │ │ ├── alsa.m4 │ │ ├── ax_check_compiler_flags.m4 │ │ ├── ax_gcc_archflag.m4 │ │ ├── ax_gcc_x86_cpuid.m4 │ │ ├── esd.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── pkg_config.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 │ ├── 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 │ │ │ │ └── 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 │ │ ├── androidbuild.sh │ │ ├── androidbuildlibs.sh │ │ ├── checker-buildbot.sh │ │ ├── config.guess │ │ ├── config.sub │ │ ├── config.sub.patch │ │ ├── emscripten-buildbot.sh │ │ ├── g++-fat.sh │ │ ├── gcc-fat.sh │ │ ├── install-sh │ │ ├── iosbuild.sh │ │ ├── ltmain.sh │ │ ├── mkinstalldirs │ │ ├── nacl-buildbot.sh │ │ ├── naclbuild.sh │ │ ├── os2-buildbot.sh │ │ ├── raspberrypi-buildbot.sh │ │ ├── showrev.sh │ │ ├── strip_fPIC.sh │ │ ├── update-copyright.sh │ │ ├── updaterev.sh │ │ ├── windows-buildbot-zipper.bat │ │ ├── winrtbuild.bat │ │ └── winrtbuild.ps1 │ ├── cmake │ │ ├── macros.cmake │ │ └── sdlchecks.cmake │ ├── cmake_uninstall.cmake.in │ ├── configure │ ├── configure.ac │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── docs │ │ ├── libsdl2-dev.install │ │ ├── libsdl2-dev.manpages │ │ ├── libsdl2.install │ │ ├── rules │ │ ├── sdl2-config.1 │ │ ├── source │ │ │ └── format │ │ └── watch │ ├── docs │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gesture.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-linux.md │ │ ├── README-macosx.md │ │ ├── README-nacl.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-touch.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ └── doxyfile │ ├── 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_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.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_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_metal.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_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 │ ├── out │ │ └── build │ │ │ └── x64-Debug │ │ │ └── .cmake │ │ │ └── api │ │ │ └── v1 │ │ │ └── query │ │ │ └── client-MicrosoftVS │ │ │ └── query.json │ ├── 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_hints.c │ │ ├── SDL_internal.h │ │ ├── SDL_log.c │ │ ├── atomic │ │ │ ├── SDL_atomic.c │ │ │ └── SDL_spinlock.c │ │ ├── audio │ │ │ ├── SDL_audio.c │ │ │ ├── SDL_audio_c.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── paudio │ │ │ │ ├── SDL_paudio.c │ │ │ │ └── SDL_paudio.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 │ │ │ ├── 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 │ │ │ │ └── keyinfotable.h │ │ │ ├── linux │ │ │ │ ├── SDL_dbus.c │ │ │ │ ├── SDL_dbus.h │ │ │ │ ├── SDL_evdev.c │ │ │ │ ├── SDL_evdev.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_threadprio.c │ │ │ │ ├── SDL_udev.c │ │ │ │ └── SDL_udev.h │ │ │ ├── unix │ │ │ │ ├── SDL_poll.c │ │ │ │ └── SDL_poll.h │ │ │ ├── windows │ │ │ │ ├── SDL_directx.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 │ │ │ ├── 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_mouse.c │ │ │ ├── SDL_mouse_c.h │ │ │ ├── SDL_quit.c │ │ │ ├── SDL_sysevents.h │ │ │ ├── SDL_touch.c │ │ │ ├── SDL_touch_c.h │ │ │ ├── SDL_windowevents.c │ │ │ ├── SDL_windowevents_c.h │ │ │ ├── blank_cursor.h │ │ │ ├── default_cursor.h │ │ │ ├── scancodes_darwin.h │ │ │ ├── scancodes_linux.h │ │ │ ├── scancodes_windows.h │ │ │ └── scancodes_xfree86.h │ │ ├── file │ │ │ ├── SDL_rwops.c │ │ │ └── cocoa │ │ │ │ ├── SDL_rwopsbundlesupport.h │ │ │ │ └── SDL_rwopsbundlesupport.m │ │ ├── filesystem │ │ │ ├── android │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── cocoa │ │ │ │ └── SDL_sysfilesystem.m │ │ │ ├── dummy │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── emscripten │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── haiku │ │ │ │ └── SDL_sysfilesystem.cc │ │ │ ├── nacl │ │ │ │ └── SDL_sysfilesystem.c │ │ │ ├── unix │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ │ ├── hid.cpp │ │ │ │ └── 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_sysjoystick.h │ │ │ ├── android │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── bsd │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── controller_type.h │ │ │ ├── darwin │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── dummy │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── emscripten │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── haiku │ │ │ │ └── SDL_haikujoystick.cc │ │ │ ├── hidapi │ │ │ │ ├── SDL_hidapi_ps4.c │ │ │ │ ├── SDL_hidapi_switch.c │ │ │ │ ├── SDL_hidapi_xbox360.c │ │ │ │ ├── SDL_hidapi_xboxone.c │ │ │ │ ├── SDL_hidapijoystick.c │ │ │ │ └── SDL_hidapijoystick_c.h │ │ │ ├── iphoneos │ │ │ │ ├── SDL_sysjoystick.m │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── linux │ │ │ │ ├── SDL_sysjoystick.c │ │ │ │ └── SDL_sysjoystick_c.h │ │ │ ├── psp │ │ │ │ └── SDL_sysjoystick.c │ │ │ ├── sort_controllers.py │ │ │ ├── steam │ │ │ │ ├── SDL_steamcontroller.c │ │ │ │ └── SDL_steamcontroller.h │ │ │ └── windows │ │ │ │ ├── SDL_dinputjoystick.c │ │ │ │ ├── SDL_dinputjoystick_c.h │ │ │ │ ├── SDL_mmjoystick.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 │ │ │ └── windows │ │ │ │ └── SDL_sysloadso.c │ │ ├── main │ │ │ ├── android │ │ │ │ └── SDL_android_main.c │ │ │ ├── dummy │ │ │ │ └── SDL_dummy_main.c │ │ │ ├── haiku │ │ │ │ ├── SDL_BApp.h │ │ │ │ ├── SDL_BeApp.cc │ │ │ │ └── SDL_BeApp.h │ │ │ ├── nacl │ │ │ │ └── SDL_nacl_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 │ │ ├── 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 │ │ │ ├── psp │ │ │ │ └── SDL_syspower.c │ │ │ ├── uikit │ │ │ │ ├── SDL_syspower.h │ │ │ │ └── SDL_syspower.m │ │ │ ├── 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 │ │ │ ├── metal │ │ │ │ ├── SDL_render_metal.m │ │ │ │ ├── SDL_shaders_metal.metal │ │ │ │ ├── SDL_shaders_metal_ios.h │ │ │ │ ├── SDL_shaders_metal_osx.h │ │ │ │ ├── SDL_shaders_metal_tvos.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 │ │ │ ├── psp │ │ │ │ └── SDL_render_psp.c │ │ │ └── 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 │ │ ├── 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 │ │ ├── stdlib │ │ │ ├── SDL_getenv.c │ │ │ ├── SDL_iconv.c │ │ │ ├── SDL_malloc.c │ │ │ ├── SDL_qsort.c │ │ │ ├── SDL_stdlib.c │ │ │ └── SDL_string.c │ │ ├── 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_sysmutex.c │ │ │ │ ├── SDL_sysmutex_c.h │ │ │ │ ├── SDL_syssem.c │ │ │ │ ├── SDL_systhread.c │ │ │ │ ├── SDL_systhread_c.h │ │ │ │ └── SDL_systls.c │ │ │ ├── psp │ │ │ │ ├── SDL_syscond.c │ │ │ │ ├── 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 │ │ │ └── windows │ │ │ │ ├── SDL_sysmutex.c │ │ │ │ ├── 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 │ │ │ ├── psp │ │ │ │ └── SDL_systimer.c │ │ │ ├── unix │ │ │ │ └── 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_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 │ │ │ ├── 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_cocoamousetap.h │ │ │ ├── SDL_cocoamousetap.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_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_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_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 │ │ │ └── vulkan │ │ │ │ ├── vk_icd.h │ │ │ │ ├── vk_layer.h │ │ │ │ ├── vk_platform.h │ │ │ │ ├── vk_sdk_platform.h │ │ │ │ ├── vulkan.h │ │ │ │ ├── vulkan.hpp │ │ │ │ ├── vulkan_android.h │ │ │ │ ├── vulkan_core.h │ │ │ │ ├── vulkan_fuchsia.h │ │ │ │ ├── vulkan_ios.h │ │ │ │ ├── vulkan_macos.h │ │ │ │ ├── vulkan_mir.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 │ │ │ ├── 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 │ │ │ ├── offscreen │ │ │ ├── SDL_offscreenevents.c │ │ │ ├── SDL_offscreenevents_c.h │ │ │ ├── SDL_offscreenframebuffer.c │ │ │ ├── SDL_offscreenframebuffer_c.h │ │ │ ├── SDL_offscreenopengl.c │ │ │ ├── SDL_offscreenopengl.h │ │ │ ├── SDL_offscreenvideo.c │ │ │ ├── SDL_offscreenvideo.h │ │ │ ├── SDL_offscreenwindow.c │ │ │ └── SDL_offscreenwindow.h │ │ │ ├── pandora │ │ │ ├── SDL_pandora.c │ │ │ ├── SDL_pandora.h │ │ │ ├── SDL_pandora_events.c │ │ │ └── SDL_pandora_events.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 │ │ │ ├── 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 │ │ │ └── keyinfotable.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_waylandmouse.c │ │ │ ├── SDL_waylandmouse.h │ │ │ ├── SDL_waylandopengles.c │ │ │ ├── SDL_waylandopengles.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_windowstaskdialog.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_x11xinput2.c │ │ │ ├── SDL_x11xinput2.h │ │ │ ├── edid-parse.c │ │ │ ├── edid.h │ │ │ ├── imKStoUCS.c │ │ │ └── imKStoUCS.h │ │ │ └── yuv2rgb │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── yuv_rgb.c │ │ │ ├── yuv_rgb.h │ │ │ ├── yuv_rgb_sse_func.h │ │ │ └── yuv_rgb_std_func.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── Makefile.in │ │ ├── Makefile.os2 │ │ ├── README │ │ ├── acinclude.m4 │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── axis.bmp │ │ ├── button.bmp │ │ ├── checkkeys.c │ │ ├── configure │ │ ├── configure.ac │ │ ├── controllermap.bmp │ │ ├── controllermap.c │ │ ├── emscripten │ │ │ └── joystick-pre.js │ │ ├── gcc-fat.sh │ │ ├── icon.bmp │ │ ├── loopwave.c │ │ ├── loopwavequeue.c │ │ ├── moose.dat │ │ ├── nacl │ │ │ ├── Makefile │ │ │ ├── background.js │ │ │ ├── common.js │ │ │ ├── index.html │ │ │ └── manifest.json │ │ ├── picture.xbm │ │ ├── relative_mode.markdown │ │ ├── sample.bmp │ │ ├── sample.wav │ │ ├── shapes │ │ │ ├── p01_shape24.bmp │ │ │ ├── p01_shape32alpha.bmp │ │ │ ├── p01_shape8.bmp │ │ │ ├── p02_shape24.bmp │ │ │ ├── p02_shape32alpha.bmp │ │ │ ├── p02_shape8.bmp │ │ │ ├── p03_shape24.bmp │ │ │ ├── p03_shape8.bmp │ │ │ ├── p04_shape1.bmp │ │ │ ├── p04_shape24.bmp │ │ │ ├── p04_shape32alpha.bmp │ │ │ ├── p04_shape8.bmp │ │ │ ├── p05_shape8.bmp │ │ │ ├── p06_shape1alpha.bmp │ │ │ ├── p06_shape24.bmp │ │ │ ├── p06_shape32alpha.bmp │ │ │ ├── p06_shape8.bmp │ │ │ ├── p07_shape24.bmp │ │ │ ├── p07_shape32alpha.bmp │ │ │ ├── p07_shape8.bmp │ │ │ ├── p08_shape24.bmp │ │ │ ├── p08_shape32alpha.bmp │ │ │ ├── p08_shape8.bmp │ │ │ ├── p09_shape24.bmp │ │ │ ├── p09_shape32alpha.bmp │ │ │ ├── p09_shape8.bmp │ │ │ ├── p10_shape1.bmp │ │ │ ├── p10_shape24.bmp │ │ │ ├── p10_shape32alpha.bmp │ │ │ ├── p10_shape8.bmp │ │ │ ├── p11_shape24.bmp │ │ │ ├── p11_shape32alpha.bmp │ │ │ ├── p11_shape8.bmp │ │ │ ├── p12_shape24.bmp │ │ │ ├── p12_shape8.bmp │ │ │ ├── p13_shape24.bmp │ │ │ ├── p13_shape32alpha.bmp │ │ │ ├── p13_shape8.bmp │ │ │ ├── p14_shape24.bmp │ │ │ ├── p14_shape8.bmp │ │ │ ├── p15_shape24.bmp │ │ │ ├── p15_shape32alpha.bmp │ │ │ ├── p15_shape8.bmp │ │ │ ├── p16_shape1.bmp │ │ │ ├── p16_shape24.bmp │ │ │ ├── p16_shape8.bmp │ │ │ ├── trollface_24.bmp │ │ │ └── trollface_32alpha.bmp │ │ ├── testatomic.c │ │ ├── testaudiocapture.c │ │ ├── testaudiohotplug.c │ │ ├── testaudioinfo.c │ │ ├── testautomation.c │ │ ├── testautomation_audio.c │ │ ├── testautomation_clipboard.c │ │ ├── testautomation_events.c │ │ ├── testautomation_hints.c │ │ ├── testautomation_keyboard.c │ │ ├── testautomation_main.c │ │ ├── testautomation_mouse.c │ │ ├── testautomation_pixels.c │ │ ├── testautomation_platform.c │ │ ├── testautomation_rect.c │ │ ├── testautomation_render.c │ │ ├── testautomation_rwops.c │ │ ├── testautomation_sdltest.c │ │ ├── testautomation_stdlib.c │ │ ├── testautomation_suites.h │ │ ├── testautomation_surface.c │ │ ├── testautomation_syswm.c │ │ ├── testautomation_timer.c │ │ ├── testautomation_video.c │ │ ├── testbounds.c │ │ ├── testcustomcursor.c │ │ ├── testdisplayinfo.c │ │ ├── testdraw2.c │ │ ├── testdrawchessboard.c │ │ ├── testdropfile.c │ │ ├── testerror.c │ │ ├── testfile.c │ │ ├── testfilesystem.c │ │ ├── testgamecontroller.c │ │ ├── testgesture.c │ │ ├── testgl2.c │ │ ├── testgles.c │ │ ├── testgles2.c │ │ ├── testhaptic.c │ │ ├── testhittesting.c │ │ ├── testhotplug.c │ │ ├── testiconv.c │ │ ├── testime.c │ │ ├── testintersections.c │ │ ├── testjoystick.c │ │ ├── testkeys.c │ │ ├── testloadso.c │ │ ├── testlock.c │ │ ├── testmessage.c │ │ ├── testmultiaudio.c │ │ ├── testnative.c │ │ ├── testnative.h │ │ ├── testnativecocoa.m │ │ ├── testnativew32.c │ │ ├── testnativex11.c │ │ ├── testoffscreen.c │ │ ├── testoverlay2.c │ │ ├── testplatform.c │ │ ├── testpower.c │ │ ├── testqsort.c │ │ ├── testrelative.c │ │ ├── testrendercopyex.c │ │ ├── testrendertarget.c │ │ ├── testresample.c │ │ ├── testrumble.c │ │ ├── testscale.c │ │ ├── testsem.c │ │ ├── testsensor.c │ │ ├── testshader.c │ │ ├── testshape.c │ │ ├── testsprite2.c │ │ ├── testspriteminimal.c │ │ ├── teststreaming.c │ │ ├── testthread.c │ │ ├── testtimer.c │ │ ├── testver.c │ │ ├── testviewport.c │ │ ├── testvulkan.c │ │ ├── testwm2.c │ │ ├── testyuv.bmp │ │ ├── testyuv.c │ │ ├── testyuv_cvt.c │ │ ├── testyuv_cvt.h │ │ ├── torturethread.c │ │ └── utf8.txt │ ├── visualtest │ │ ├── COPYING.txt │ │ ├── Makefile.in │ │ ├── README.txt │ │ ├── acinclude.m4 │ │ ├── autogen.sh │ │ ├── compile │ │ ├── config.h │ │ ├── config.h.in │ │ ├── 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.in │ │ ├── depcomp │ │ ├── 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 │ │ ├── install-sh │ │ ├── launch_harness.cmd │ │ ├── launch_harness.sh │ │ ├── missing │ │ ├── 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 │ │ ├── stamp-h1 │ │ ├── testsprite2_sample.actions │ │ ├── testsprite2_sample.config │ │ ├── testsprite2_sample.parameters │ │ └── unittest │ │ │ ├── testquit.actions │ │ │ ├── testquit.c │ │ │ ├── testquit.config │ │ │ └── testquit.parameters │ └── wayland-protocols │ │ ├── org-kde-kwin-server-decoration-manager.xml │ │ ├── pointer-constraints-unstable-v1.xml │ │ ├── relative-pointer-unstable-v1.xml │ │ ├── wayland.xml │ │ ├── xdg-decoration-unstable-v1.xml │ │ ├── xdg-shell-unstable-v6.xml │ │ └── xdg-shell.xml ├── freetype-2.10.1 │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── ChangeLog.20 │ ├── ChangeLog.21 │ ├── ChangeLog.22 │ ├── ChangeLog.23 │ ├── ChangeLog.24 │ ├── ChangeLog.25 │ ├── ChangeLog.26 │ ├── ChangeLog.27 │ ├── ChangeLog.28 │ ├── ChangeLog.29 │ ├── Jamfile │ ├── Jamrules │ ├── Makefile │ ├── README │ ├── README.git │ ├── autogen.sh │ ├── builds │ │ ├── amiga │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ └── ftmodule.h │ │ │ ├── makefile │ │ │ ├── makefile.os4 │ │ │ ├── smakefile │ │ │ └── src │ │ │ │ └── base │ │ │ │ ├── ftdebug.c │ │ │ │ └── ftsystem.c │ │ ├── ansi │ │ │ ├── ansi-def.mk │ │ │ └── ansi.mk │ │ ├── atari │ │ │ ├── ATARI.H │ │ │ ├── FNames.SIC │ │ │ ├── FREETYPE.PRJ │ │ │ ├── README.TXT │ │ │ ├── deflinejoiner.awk │ │ │ └── gen-purec-patch.sh │ │ ├── beos │ │ │ ├── beos-def.mk │ │ │ ├── beos.mk │ │ │ └── detect.mk │ │ ├── cmake │ │ │ ├── FindHarfBuzz.cmake │ │ │ ├── iOS.cmake │ │ │ └── testbuild.sh │ │ ├── compiler │ │ │ ├── ansi-cc.mk │ │ │ ├── bcc-dev.mk │ │ │ ├── bcc.mk │ │ │ ├── emx.mk │ │ │ ├── gcc-dev.mk │ │ │ ├── gcc.mk │ │ │ ├── intelc.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── visualage.mk │ │ │ ├── visualc.mk │ │ │ ├── watcom.mk │ │ │ └── win-lcc.mk │ │ ├── detect.mk │ │ ├── dos │ │ │ ├── detect.mk │ │ │ ├── dos-def.mk │ │ │ ├── dos-emx.mk │ │ │ ├── dos-gcc.mk │ │ │ └── dos-wat.mk │ │ ├── exports.mk │ │ ├── freetype.mk │ │ ├── link_dos.mk │ │ ├── link_std.mk │ │ ├── mac │ │ │ ├── FreeType.m68k_cfm.make.txt │ │ │ ├── FreeType.m68k_far.make.txt │ │ │ ├── FreeType.ppc_carbon.make.txt │ │ │ ├── FreeType.ppc_classic.make.txt │ │ │ ├── README │ │ │ ├── ascii2mpw.py │ │ │ ├── freetype-Info.plist │ │ │ ├── ftlib.prj.xml │ │ │ └── ftmac.c │ │ ├── modules.mk │ │ ├── os2 │ │ │ ├── detect.mk │ │ │ ├── os2-def.mk │ │ │ ├── os2-dev.mk │ │ │ └── os2-gcc.mk │ │ ├── symbian │ │ │ ├── bld.inf │ │ │ └── freetype.mmp │ │ ├── toplevel.mk │ │ ├── unix │ │ │ ├── aclocal.m4 │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── configure.raw │ │ │ ├── detect.mk │ │ │ ├── freetype-config.in │ │ │ ├── freetype2.in │ │ │ ├── freetype2.m4 │ │ │ ├── ft-munmap.m4 │ │ │ ├── ftconfig.in │ │ │ ├── ftsystem.c │ │ │ ├── install-sh │ │ │ ├── install.mk │ │ │ ├── ltmain.sh │ │ │ ├── pkg.m4 │ │ │ ├── unix-cc.in │ │ │ ├── unix-def.in │ │ │ ├── unix-dev.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── unix.mk │ │ │ └── unixddef.mk │ │ ├── vms │ │ │ ├── LIBS.OPT_IA64 │ │ │ ├── _LINK.OPT_IA64 │ │ │ ├── ftconfig.h │ │ │ ├── ftsystem.c │ │ │ └── vmslib.dat │ │ ├── wince │ │ │ ├── ftdebug.c │ │ │ ├── vc2005-ce │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ └── vc2008-ce │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ └── windows │ │ │ ├── detect.mk │ │ │ ├── ftdebug.c │ │ │ ├── vc2010 │ │ │ ├── freetype.sln │ │ │ ├── freetype.user.props │ │ │ ├── freetype.vcxproj │ │ │ ├── freetype.vcxproj.filters │ │ │ └── index.html │ │ │ ├── visualc │ │ │ ├── freetype.dsp │ │ │ ├── freetype.dsw │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ ├── freetype.vcxproj │ │ │ ├── freetype.vcxproj.filters │ │ │ └── index.html │ │ │ ├── visualce │ │ │ ├── freetype.dsp │ │ │ ├── freetype.dsw │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ ├── w32-bcc.mk │ │ │ ├── w32-bccd.mk │ │ │ ├── w32-dev.mk │ │ │ ├── w32-gcc.mk │ │ │ ├── w32-icc.mk │ │ │ ├── w32-intl.mk │ │ │ ├── w32-lcc.mk │ │ │ ├── w32-mingw32.mk │ │ │ ├── w32-vcc.mk │ │ │ ├── w32-wat.mk │ │ │ └── win32-def.mk │ ├── configure │ ├── devel │ │ ├── ft2build.h │ │ └── ftoption.h │ ├── docs │ │ ├── CHANGES │ │ ├── CMAKE │ │ ├── CUSTOMIZE │ │ ├── DEBUG │ │ ├── DOCGUIDE │ │ ├── FTL.TXT │ │ ├── GPLv2.TXT │ │ ├── INSTALL │ │ ├── INSTALL.ANY │ │ ├── INSTALL.CROSS │ │ ├── INSTALL.GNU │ │ ├── INSTALL.MAC │ │ ├── INSTALL.UNIX │ │ ├── INSTALL.VMS │ │ ├── LICENSE.TXT │ │ ├── MAKEPP │ │ ├── PROBLEMS │ │ ├── TODO │ │ ├── VERSIONS.TXT │ │ ├── formats.txt │ │ ├── freetype-config.1 │ │ ├── raster.txt │ │ ├── reference │ │ │ ├── README │ │ │ └── site │ │ │ │ ├── 404.html │ │ │ │ ├── assets │ │ │ │ ├── fonts │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ ├── material-icons.css │ │ │ │ │ └── specimen │ │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ │ ├── FontAwesome.woff │ │ │ │ │ │ ├── FontAwesome.woff2 │ │ │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ │ │ └── MaterialIcons-Regular.woff2 │ │ │ │ ├── images │ │ │ │ │ ├── favicon.png │ │ │ │ │ └── icons │ │ │ │ │ │ ├── bitbucket.1b09e088.svg │ │ │ │ │ │ ├── github.f0b8504a.svg │ │ │ │ │ │ └── gitlab.6dd19c00.svg │ │ │ │ ├── javascripts │ │ │ │ │ ├── application.d9aa80ab.js │ │ │ │ │ ├── lunr │ │ │ │ │ │ ├── lunr.da.js │ │ │ │ │ │ ├── lunr.de.js │ │ │ │ │ │ ├── lunr.du.js │ │ │ │ │ │ ├── lunr.es.js │ │ │ │ │ │ ├── lunr.fi.js │ │ │ │ │ │ ├── lunr.fr.js │ │ │ │ │ │ ├── lunr.hu.js │ │ │ │ │ │ ├── lunr.it.js │ │ │ │ │ │ ├── lunr.ja.js │ │ │ │ │ │ ├── lunr.jp.js │ │ │ │ │ │ ├── lunr.multi.js │ │ │ │ │ │ ├── lunr.nl.js │ │ │ │ │ │ ├── lunr.no.js │ │ │ │ │ │ ├── lunr.pt.js │ │ │ │ │ │ ├── lunr.ro.js │ │ │ │ │ │ ├── lunr.ru.js │ │ │ │ │ │ ├── lunr.stemmer.support.js │ │ │ │ │ │ ├── lunr.sv.js │ │ │ │ │ │ ├── lunr.th.js │ │ │ │ │ │ ├── lunr.tr.js │ │ │ │ │ │ ├── tinyseg.js │ │ │ │ │ │ └── wordcut.js │ │ │ │ │ └── modernizr.1f0bcf2b.js │ │ │ │ └── stylesheets │ │ │ │ │ ├── application-palette.224b79ff.css │ │ │ │ │ └── application.982221ab.css │ │ │ │ ├── ft2-auto_hinter.html │ │ │ │ ├── ft2-base_interface.html │ │ │ │ ├── ft2-basic_types.html │ │ │ │ ├── ft2-bdf_fonts.html │ │ │ │ ├── ft2-bitmap_handling.html │ │ │ │ ├── ft2-bzip2.html │ │ │ │ ├── ft2-cache_subsystem.html │ │ │ │ ├── ft2-cff_driver.html │ │ │ │ ├── ft2-cid_fonts.html │ │ │ │ ├── ft2-color_management.html │ │ │ │ ├── ft2-computations.html │ │ │ │ ├── ft2-error_code_values.html │ │ │ │ ├── ft2-error_enumerations.html │ │ │ │ ├── ft2-font_formats.html │ │ │ │ ├── ft2-gasp_table.html │ │ │ │ ├── ft2-glyph_management.html │ │ │ │ ├── ft2-glyph_stroker.html │ │ │ │ ├── ft2-glyph_variants.html │ │ │ │ ├── ft2-gx_validation.html │ │ │ │ ├── ft2-gzip.html │ │ │ │ ├── ft2-header_file_macros.html │ │ │ │ ├── ft2-header_inclusion.html │ │ │ │ ├── ft2-incremental.html │ │ │ │ ├── ft2-index.html │ │ │ │ ├── ft2-layer_management.html │ │ │ │ ├── ft2-lcd_rendering.html │ │ │ │ ├── ft2-list_processing.html │ │ │ │ ├── ft2-lzw.html │ │ │ │ ├── ft2-mac_specific.html │ │ │ │ ├── ft2-module_management.html │ │ │ │ ├── ft2-multiple_masters.html │ │ │ │ ├── ft2-ot_validation.html │ │ │ │ ├── ft2-outline_processing.html │ │ │ │ ├── ft2-parameter_tags.html │ │ │ │ ├── ft2-pcf_driver.html │ │ │ │ ├── ft2-pfr_fonts.html │ │ │ │ ├── ft2-properties.html │ │ │ │ ├── ft2-quick_advance.html │ │ │ │ ├── ft2-raster.html │ │ │ │ ├── ft2-sfnt_names.html │ │ │ │ ├── ft2-sizes_management.html │ │ │ │ ├── ft2-system_interface.html │ │ │ │ ├── ft2-t1_cid_driver.html │ │ │ │ ├── ft2-truetype_engine.html │ │ │ │ ├── ft2-truetype_tables.html │ │ │ │ ├── ft2-tt_driver.html │ │ │ │ ├── ft2-type1_tables.html │ │ │ │ ├── ft2-user_allocation.html │ │ │ │ ├── ft2-version.html │ │ │ │ ├── ft2-winfnt_fonts.html │ │ │ │ ├── images │ │ │ │ └── favico.ico │ │ │ │ ├── index.html │ │ │ │ ├── javascripts │ │ │ │ └── extra.js │ │ │ │ ├── search │ │ │ │ └── search_index.json │ │ │ │ ├── sitemap.xml │ │ │ │ ├── sitemap.xml.gz │ │ │ │ └── stylesheets │ │ │ │ └── extra.css │ │ └── release │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftbzip2.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── ftcolor.h │ │ │ ├── ftdriver.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftfntfmt.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftparams.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── cffotypes.h │ │ │ │ ├── cfftypes.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdrv.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── fthash.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpsprop.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcfftl.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svfntfmt.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmetric.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svprop.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ └── svwinfnt.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ ├── tttypes.h │ │ │ │ └── wofftypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ └── tttags.h │ │ └── ft2build.h │ ├── modules.cfg │ ├── objs │ │ └── README │ ├── src │ │ ├── Jamfile │ │ ├── autofit │ │ │ ├── Jamfile │ │ │ ├── afangles.c │ │ │ ├── afangles.h │ │ │ ├── afblue.c │ │ │ ├── afblue.cin │ │ │ ├── afblue.dat │ │ │ ├── afblue.h │ │ │ ├── afblue.hin │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afcover.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── aflatin2.c │ │ │ ├── aflatin2.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── afranges.c │ │ │ ├── afranges.h │ │ │ ├── afscript.h │ │ │ ├── afshaper.c │ │ │ ├── afshaper.h │ │ │ ├── afstyles.h │ │ │ ├── aftypes.h │ │ │ ├── afwarp.c │ │ │ ├── afwarp.h │ │ │ ├── afwrtsys.h │ │ │ ├── autofit.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── base │ │ │ ├── Jamfile │ │ │ ├── ftadvanc.c │ │ │ ├── ftbase.c │ │ │ ├── ftbase.h │ │ │ ├── ftbbox.c │ │ │ ├── ftbdf.c │ │ │ ├── ftbitmap.c │ │ │ ├── ftcalc.c │ │ │ ├── ftcid.c │ │ │ ├── ftcolor.c │ │ │ ├── ftdbgmem.c │ │ │ ├── ftdebug.c │ │ │ ├── fterrors.c │ │ │ ├── ftfntfmt.c │ │ │ ├── ftfstype.c │ │ │ ├── ftgasp.c │ │ │ ├── ftgloadr.c │ │ │ ├── ftglyph.c │ │ │ ├── ftgxval.c │ │ │ ├── fthash.c │ │ │ ├── ftinit.c │ │ │ ├── ftlcdfil.c │ │ │ ├── ftmac.c │ │ │ ├── ftmm.c │ │ │ ├── ftobjs.c │ │ │ ├── ftotval.c │ │ │ ├── ftoutln.c │ │ │ ├── ftpatent.c │ │ │ ├── ftpfr.c │ │ │ ├── ftpsprop.c │ │ │ ├── ftrfork.c │ │ │ ├── ftsnames.c │ │ │ ├── ftstream.c │ │ │ ├── ftstroke.c │ │ │ ├── ftsynth.c │ │ │ ├── ftsystem.c │ │ │ ├── fttrigon.c │ │ │ ├── fttype1.c │ │ │ ├── ftutil.c │ │ │ ├── ftver.rc │ │ │ ├── ftwinfnt.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ └── rules.mk │ │ ├── bdf │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ ├── bdflib.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── bzip2 │ │ │ ├── Jamfile │ │ │ ├── ftbzip2.c │ │ │ └── rules.mk │ │ ├── cache │ │ │ ├── Jamfile │ │ │ ├── ftcache.c │ │ │ ├── ftcbasic.c │ │ │ ├── ftccache.c │ │ │ ├── ftccache.h │ │ │ ├── ftccback.h │ │ │ ├── ftccmap.c │ │ │ ├── ftcerror.h │ │ │ ├── ftcglyph.c │ │ │ ├── ftcglyph.h │ │ │ ├── ftcimage.c │ │ │ ├── ftcimage.h │ │ │ ├── ftcmanag.c │ │ │ ├── ftcmanag.h │ │ │ ├── ftcmru.c │ │ │ ├── ftcmru.h │ │ │ ├── ftcsbits.c │ │ │ ├── ftcsbits.h │ │ │ └── rules.mk │ │ ├── cff │ │ │ ├── Jamfile │ │ │ ├── cff.c │ │ │ ├── cffcmap.c │ │ │ ├── cffcmap.h │ │ │ ├── cffdrivr.c │ │ │ ├── cffdrivr.h │ │ │ ├── cfferrs.h │ │ │ ├── cffgload.c │ │ │ ├── cffgload.h │ │ │ ├── cffload.c │ │ │ ├── cffload.h │ │ │ ├── cffobjs.c │ │ │ ├── cffobjs.h │ │ │ ├── cffparse.c │ │ │ ├── cffparse.h │ │ │ ├── cfftoken.h │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── cid │ │ │ ├── Jamfile │ │ │ ├── ciderrs.h │ │ │ ├── cidgload.c │ │ │ ├── cidgload.h │ │ │ ├── cidload.c │ │ │ ├── cidload.h │ │ │ ├── cidobjs.c │ │ │ ├── cidobjs.h │ │ │ ├── cidparse.c │ │ │ ├── cidparse.h │ │ │ ├── cidriver.c │ │ │ ├── cidriver.h │ │ │ ├── cidtoken.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── type1cid.c │ │ ├── gxvalid │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── gxvalid.c │ │ │ ├── gxvalid.h │ │ │ ├── gxvbsln.c │ │ │ ├── gxvcommn.c │ │ │ ├── gxvcommn.h │ │ │ ├── gxverror.h │ │ │ ├── gxvfeat.c │ │ │ ├── gxvfeat.h │ │ │ ├── gxvfgen.c │ │ │ ├── gxvjust.c │ │ │ ├── gxvkern.c │ │ │ ├── gxvlcar.c │ │ │ ├── gxvmod.c │ │ │ ├── gxvmod.h │ │ │ ├── gxvmort.c │ │ │ ├── gxvmort.h │ │ │ ├── gxvmort0.c │ │ │ ├── gxvmort1.c │ │ │ ├── gxvmort2.c │ │ │ ├── gxvmort4.c │ │ │ ├── gxvmort5.c │ │ │ ├── gxvmorx.c │ │ │ ├── gxvmorx.h │ │ │ ├── gxvmorx0.c │ │ │ ├── gxvmorx1.c │ │ │ ├── gxvmorx2.c │ │ │ ├── gxvmorx4.c │ │ │ ├── gxvmorx5.c │ │ │ ├── gxvopbd.c │ │ │ ├── gxvprop.c │ │ │ ├── gxvtrak.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── gzip │ │ │ ├── Jamfile │ │ │ ├── adler32.c │ │ │ ├── ftgzip.c │ │ │ ├── ftzconf.h │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── rules.mk │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── lzw │ │ │ ├── Jamfile │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ ├── ftzopen.h │ │ │ └── rules.mk │ │ ├── otvalid │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── otvalid.c │ │ │ ├── otvalid.h │ │ │ ├── otvbase.c │ │ │ ├── otvcommn.c │ │ │ ├── otvcommn.h │ │ │ ├── otverror.h │ │ │ ├── otvgdef.c │ │ │ ├── otvgpos.c │ │ │ ├── otvgpos.h │ │ │ ├── otvgsub.c │ │ │ ├── otvjstf.c │ │ │ ├── otvmath.c │ │ │ ├── otvmod.c │ │ │ ├── otvmod.h │ │ │ └── rules.mk │ │ ├── pcf │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── module.mk │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ ├── pcfutil.h │ │ │ └── rules.mk │ │ ├── pfr │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pfr.c │ │ │ ├── pfrcmap.c │ │ │ ├── pfrcmap.h │ │ │ ├── pfrdrivr.c │ │ │ ├── pfrdrivr.h │ │ │ ├── pfrerror.h │ │ │ ├── pfrgload.c │ │ │ ├── pfrgload.h │ │ │ ├── pfrload.c │ │ │ ├── pfrload.h │ │ │ ├── pfrobjs.c │ │ │ ├── pfrobjs.h │ │ │ ├── pfrsbit.c │ │ │ ├── pfrsbit.h │ │ │ ├── pfrtypes.h │ │ │ └── rules.mk │ │ ├── psaux │ │ │ ├── Jamfile │ │ │ ├── afmparse.c │ │ │ ├── afmparse.h │ │ │ ├── cffdecode.c │ │ │ ├── cffdecode.h │ │ │ ├── module.mk │ │ │ ├── psarrst.c │ │ │ ├── psarrst.h │ │ │ ├── psaux.c │ │ │ ├── psauxerr.h │ │ │ ├── psauxmod.c │ │ │ ├── psauxmod.h │ │ │ ├── psblues.c │ │ │ ├── psblues.h │ │ │ ├── psconv.c │ │ │ ├── psconv.h │ │ │ ├── pserror.c │ │ │ ├── pserror.h │ │ │ ├── psfixed.h │ │ │ ├── psfont.c │ │ │ ├── psfont.h │ │ │ ├── psft.c │ │ │ ├── psft.h │ │ │ ├── psglue.h │ │ │ ├── pshints.c │ │ │ ├── pshints.h │ │ │ ├── psintrp.c │ │ │ ├── psintrp.h │ │ │ ├── psobjs.c │ │ │ ├── psobjs.h │ │ │ ├── psread.c │ │ │ ├── psread.h │ │ │ ├── psstack.c │ │ │ ├── psstack.h │ │ │ ├── pstypes.h │ │ │ ├── rules.mk │ │ │ ├── t1cmap.c │ │ │ ├── t1cmap.h │ │ │ ├── t1decode.c │ │ │ └── t1decode.h │ │ ├── pshinter │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pshalgo.c │ │ │ ├── pshalgo.h │ │ │ ├── pshglob.c │ │ │ ├── pshglob.h │ │ │ ├── pshinter.c │ │ │ ├── pshmod.c │ │ │ ├── pshmod.h │ │ │ ├── pshnterr.h │ │ │ ├── pshrec.c │ │ │ ├── pshrec.h │ │ │ └── rules.mk │ │ ├── psnames │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pstables.h │ │ │ └── rules.mk │ │ ├── raster │ │ │ ├── Jamfile │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ └── rules.mk │ │ ├── sfnt │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── sfwoff.c │ │ │ ├── sfwoff.h │ │ │ ├── ttbdf.c │ │ │ ├── ttbdf.h │ │ │ ├── ttcmap.c │ │ │ ├── ttcmap.h │ │ │ ├── ttcmapc.h │ │ │ ├── ttcolr.c │ │ │ ├── ttcolr.h │ │ │ ├── ttcpal.c │ │ │ ├── ttcpal.h │ │ │ ├── ttkern.c │ │ │ ├── ttkern.h │ │ │ ├── ttload.c │ │ │ ├── ttload.h │ │ │ ├── ttmtx.c │ │ │ ├── ttmtx.h │ │ │ ├── ttpost.c │ │ │ ├── ttpost.h │ │ │ ├── ttsbit.c │ │ │ └── ttsbit.h │ │ ├── smooth │ │ │ ├── Jamfile │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ ├── tools │ │ │ ├── Jamfile │ │ │ ├── afblue.pl │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── ftrandom │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── no-copyright │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ ├── test_trig.c │ │ │ ├── update-copyright │ │ │ └── update-copyright-year │ │ ├── truetype │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── truetype.c │ │ │ ├── ttdriver.c │ │ │ ├── ttdriver.h │ │ │ ├── tterrors.h │ │ │ ├── ttgload.c │ │ │ ├── ttgload.h │ │ │ ├── ttgxvar.c │ │ │ ├── ttgxvar.h │ │ │ ├── ttinterp.c │ │ │ ├── ttinterp.h │ │ │ ├── ttobjs.c │ │ │ ├── ttobjs.h │ │ │ ├── ttpload.c │ │ │ ├── ttpload.h │ │ │ ├── ttsubpix.c │ │ │ └── ttsubpix.h │ │ ├── type1 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t1afm.c │ │ │ ├── t1afm.h │ │ │ ├── t1driver.c │ │ │ ├── t1driver.h │ │ │ ├── t1errors.h │ │ │ ├── t1gload.c │ │ │ ├── t1gload.h │ │ │ ├── t1load.c │ │ │ ├── t1load.h │ │ │ ├── t1objs.c │ │ │ ├── t1objs.h │ │ │ ├── t1parse.c │ │ │ ├── t1parse.h │ │ │ ├── t1tokens.h │ │ │ └── type1.c │ │ ├── type42 │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── t42drivr.c │ │ │ ├── t42drivr.h │ │ │ ├── t42error.h │ │ │ ├── t42objs.c │ │ │ ├── t42objs.h │ │ │ ├── t42parse.c │ │ │ ├── t42parse.h │ │ │ ├── t42types.h │ │ │ └── type42.c │ │ └── winfonts │ │ │ ├── Jamfile │ │ │ ├── fnterrs.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ ├── version.sed │ └── vms_make.com ├── libimagequant │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── COPYRIGHT │ ├── Cargo.toml │ ├── Makefile │ ├── README.md │ ├── blur.c │ ├── blur.h │ ├── configure │ ├── example.c │ ├── imagequant.pc.in │ ├── kmeans.c │ ├── kmeans.h │ ├── libimagequant.c │ ├── libimagequant.cs │ ├── libimagequant.h │ ├── libimagequant │ │ ├── libimagequant.vcxproj │ │ └── libimagequant.vcxproj.filters │ ├── mediancut.c │ ├── mediancut.h │ ├── mempool.c │ ├── mempool.h │ ├── nearest.c │ ├── nearest.h │ ├── pam.c │ ├── pam.h │ └── pom.xml └── spdlog-1.x │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── bench │ ├── CMakeLists.txt │ ├── async_bench.cpp │ ├── bench.cpp │ ├── formatter-bench.cpp │ ├── latency.cpp │ ├── meson.build │ └── utils.h │ ├── cmake │ ├── ide.cmake │ ├── spdlog.pc.in │ ├── spdlogCPack.cmake │ ├── spdlogConfig.cmake.in │ └── utils.cmake │ ├── example │ ├── CMakeLists.txt │ ├── example.cpp │ └── meson.build │ ├── include │ └── spdlog │ │ ├── async.h │ │ ├── async_logger-inl.h │ │ ├── async_logger.h │ │ ├── common-inl.h │ │ ├── common.h │ │ ├── details │ │ ├── backtracer-inl.h │ │ ├── backtracer.h │ │ ├── circular_q.h │ │ ├── console_globals.h │ │ ├── file_helper-inl.h │ │ ├── file_helper.h │ │ ├── fmt_helper.h │ │ ├── log_msg-inl.h │ │ ├── log_msg.h │ │ ├── log_msg_buffer-inl.h │ │ ├── log_msg_buffer.h │ │ ├── mpmc_blocking_q.h │ │ ├── null_mutex.h │ │ ├── os-inl.h │ │ ├── os.h │ │ ├── pattern_formatter-inl.h │ │ ├── pattern_formatter.h │ │ ├── periodic_worker-inl.h │ │ ├── periodic_worker.h │ │ ├── registry-inl.h │ │ ├── registry.h │ │ ├── synchronous_factory.h │ │ ├── thread_pool-inl.h │ │ └── thread_pool.h │ │ ├── fmt │ │ ├── bin_to_hex.h │ │ ├── bundled │ │ │ ├── LICENSE.rst │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── locale.h │ │ │ ├── ostream.h │ │ │ ├── posix.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ └── safe-duration-cast.h │ │ ├── fmt.h │ │ └── ostr.h │ │ ├── formatter.h │ │ ├── logger-inl.h │ │ ├── logger.h │ │ ├── sinks │ │ ├── android_sink.h │ │ ├── ansicolor_sink-inl.h │ │ ├── ansicolor_sink.h │ │ ├── base_sink-inl.h │ │ ├── base_sink.h │ │ ├── basic_file_sink-inl.h │ │ ├── basic_file_sink.h │ │ ├── daily_file_sink.h │ │ ├── dist_sink.h │ │ ├── dup_filter_sink.h │ │ ├── msvc_sink.h │ │ ├── null_sink.h │ │ ├── ostream_sink.h │ │ ├── rotating_file_sink-inl.h │ │ ├── rotating_file_sink.h │ │ ├── sink-inl.h │ │ ├── sink.h │ │ ├── stdout_color_sinks-inl.h │ │ ├── stdout_color_sinks.h │ │ ├── stdout_sinks-inl.h │ │ ├── stdout_sinks.h │ │ ├── syslog_sink.h │ │ ├── systemd_sink.h │ │ ├── wincolor_sink-inl.h │ │ └── wincolor_sink.h │ │ ├── spdlog-inl.h │ │ ├── spdlog.h │ │ ├── tweakme.h │ │ └── version.h │ ├── meson.build │ ├── meson_options.txt │ ├── scripts │ ├── .clang-format │ ├── .clang-tidy │ ├── clang_tidy.sh │ ├── extract_version.py │ └── format.sh │ ├── spdlog │ ├── spdlog.vcxproj │ ├── spdlog.vcxproj.filters │ └── spdlog.vcxproj.user │ ├── src │ ├── async.cpp │ ├── color_sinks.cpp │ ├── file_sinks.cpp │ ├── fmt.cpp │ ├── spdlog.cpp │ └── stdout_sinks.cpp │ └── tests │ ├── CMakeLists.txt │ ├── catch.hpp │ ├── catch.license │ ├── includes.h │ ├── main.cpp │ ├── meson.build │ ├── test_async.cpp │ ├── test_backtrace.cpp │ ├── test_daily_logger.cpp │ ├── test_dup_filter.cpp │ ├── test_errors.cpp │ ├── test_file_helper.cpp │ ├── test_file_logging.cpp │ ├── test_fmt_helper.cpp │ ├── test_macros.cpp │ ├── test_misc.cpp │ ├── test_mpmc_q.cpp │ ├── test_pattern_formatter.cpp │ ├── test_registry.cpp │ ├── test_sink.h │ ├── test_stdout_api.cpp │ ├── test_systemd.cpp │ ├── utils.cpp │ └── utils.h ├── CMakeLists.txt ├── CodeGeneration ├── CodeGeneration.vcxproj ├── CodeGeneration.vcxproj.filters ├── CodeGeneratorBase.cpp ├── CodeGeneratorBase.h ├── ResultItem.h ├── ResultLog.cpp └── ResultsLog.h ├── Docker └── dockerfile ├── Doxyfile ├── ImgLib ├── CMakeLists.txt ├── ImgLib.vcxproj ├── ImgLib.vcxproj.filters ├── LVImageConvert.cpp ├── LVImageConvert.h ├── stb.h └── stb_image.h ├── Jenkinsfile ├── LICENSE ├── LVSerial ├── CMakeLists.txt ├── LVSerial.vcxproj ├── LVSerial.vcxproj.filters └── Serialization │ ├── Area.h │ ├── Base64.cpp │ ├── Base64.h │ ├── FontDsc.json │ ├── LVArc.cpp │ ├── LVArc.h │ ├── LVBar.cpp │ ├── LVBar.h │ ├── LVButton.cpp │ ├── LVButton.h │ ├── LVButtonMatrix.cpp │ ├── LVButtonMatrix.h │ ├── LVCalendar.cpp │ ├── LVCalendar.h │ ├── LVCanvas.cpp │ ├── LVCanvas.h │ ├── LVCheckBox.cpp │ ├── LVCheckBox.h │ ├── LVFont.cpp │ ├── LVFont.h │ ├── LVFontCMap.cpp │ ├── LVFontCMap.h │ ├── LVFontDsc.cpp │ ├── LVFontDsc.h │ ├── LVFontGlyphDsc.cpp │ ├── LVFontGlyphDsc.h │ ├── LVFontKernDSC.cpp │ ├── LVFontKernDSC.h │ ├── LVImage.cpp │ ├── LVImage.h │ ├── LVLabel.cpp │ ├── LVLabel.h │ ├── LVObject.cpp │ ├── LVObject.h │ ├── ObjectSerializer.cpp │ ├── ObjectSerializer.h │ ├── ObjectUserData.h │ ├── PNGToArray.cpp │ ├── PNGToArray.h │ ├── Page.cpp │ ├── Page.h │ ├── Realign.h │ ├── Serializers.h │ ├── Style.cpp │ ├── Style.h │ ├── lodepng.cpp │ └── lodepng.h ├── Tests └── UnitTests │ ├── ImgLib │ ├── CMakeLists.txt │ ├── ImgLib.vcxproj │ ├── ImgLib.vcxproj.filters │ ├── JPEG.cpp │ ├── JPEG.h │ ├── Main.cpp │ ├── jpeg1.jpg │ ├── jpeg2.jpg │ ├── jpeg3.jpg │ └── jpeg4.jpg │ └── Serialization │ ├── Arc.cpp │ ├── Area.cpp │ ├── Bar.cpp │ ├── Button.cpp │ ├── ButtonMatrix.cpp │ ├── CMakeLists.txt │ ├── Calendar.cpp │ ├── Canvas.cpp │ ├── Font.cpp │ ├── Image.png │ ├── Main.cpp │ ├── PNGToArray.cpp │ ├── Realign.cpp │ ├── Serialization.vcxproj │ ├── Serialization.vcxproj.filters │ └── Style.cpp ├── UICreator.sln └── UICreator ├── CMakeLists.txt ├── FontDsc.json ├── Fonts ├── FTFont.cpp ├── FTFont.h └── TTFs │ ├── THSarabunNew Bold001.ttf │ ├── THSarabunNew BoldItalic001.ttf │ ├── THSarabunNew Italic001.ttf │ └── THSarabunNew001.ttf ├── LICENSE ├── Makefile ├── ObjectCreation ├── Arc.cpp ├── Arc.h ├── Bar.cpp ├── Bar.h ├── Button.cpp ├── Button.h ├── ButtonMatrix.cpp ├── ButtonMatrix.h ├── Calendar.cpp ├── Calendar.h ├── Canvas.cpp ├── Canvas.h ├── Chart.cpp ├── Chart.h ├── CheckBox.cpp ├── CheckBox.h ├── Container.cpp └── Container.h ├── README.md ├── UICreator.vcxproj ├── UICreator.vcxproj.filters ├── Utils ├── ObjectTools.cpp └── ObjectTools.h ├── Variable ├── Variable.cpp └── Variable.h ├── Widgets ├── CollapsableWindow.cpp ├── CollapsableWindow.h ├── CollapsableWindowManager.cpp ├── CollapsableWindowManager.h ├── ColorPicker.cpp ├── ColorPicker.h ├── FileBrowser.cpp ├── FileBrowser.h ├── ListBox.cpp ├── ListBox.h ├── MinimizableWindow.cpp ├── MinimizableWindow.h ├── TreeNode.cpp ├── TreeNode.h ├── TreeView.cpp └── TreeView.h ├── Windows ├── BaseProperties.h ├── PropertyFunctions.h ├── PropertyWindow.cpp ├── PropertyWindow.h ├── PropertyWindows │ ├── ArcProperties.cpp │ ├── ArcProperties.h │ ├── BarProperties.cpp │ ├── BarProperties.h │ ├── BaseProperties.cpp │ ├── BaseProperties.h │ ├── BtnProperties.cpp │ ├── BtnProperties.h │ ├── BtnmEditorWindow.cpp │ ├── BtnmEditorWindow.h │ ├── BtnmProperties.cpp │ ├── BtnmProperties.h │ ├── PropertyControls.cpp │ └── PropertyControls.h ├── SimWindow.cpp ├── SimWindow.h ├── Themes.h ├── ToolBar.cpp ├── ToolBar.h ├── ToolTray.cpp ├── ToolTray.h ├── UI.cpp ├── UI.h ├── UIObjectData.h ├── VariableCreateWindow.cpp └── VariableCreateWindow.h ├── config.h ├── custom_widget.c ├── custom_widget.h ├── dataset.c ├── dataset.h ├── gencode.c ├── gencode.h ├── interface.c ├── interface.h ├── json.txt ├── loadproj.c ├── loadproj.h ├── lv_conf.h ├── lv_drv_conf.h ├── lv_ex_conf.h ├── main.cpp ├── mouse_cursor_icon.c ├── saveproj.c ├── saveproj.h ├── setting.c ├── setting.h ├── toolbox.c └── toolbox.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /3rdParty/Breakpad/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/.travis.yml -------------------------------------------------------------------------------- /3rdParty/Breakpad/AUTHORS: -------------------------------------------------------------------------------- 1 | opensource@google.com 2 | -------------------------------------------------------------------------------- /3rdParty/Breakpad/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdParty/Breakpad/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/DEPS -------------------------------------------------------------------------------- /3rdParty/Breakpad/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/INSTALL -------------------------------------------------------------------------------- /3rdParty/Breakpad/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/LICENSE -------------------------------------------------------------------------------- /3rdParty/Breakpad/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/Makefile.am -------------------------------------------------------------------------------- /3rdParty/Breakpad/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/Makefile.in -------------------------------------------------------------------------------- /3rdParty/Breakpad/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdParty/Breakpad/README.ANDROID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/README.ANDROID -------------------------------------------------------------------------------- /3rdParty/Breakpad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/README.md -------------------------------------------------------------------------------- /3rdParty/Breakpad/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/aclocal.m4 -------------------------------------------------------------------------------- /3rdParty/Breakpad/android/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/android/test-driver -------------------------------------------------------------------------------- /3rdParty/Breakpad/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/appveyor.yml -------------------------------------------------------------------------------- /3rdParty/Breakpad/autotools/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/autotools/ar-lib -------------------------------------------------------------------------------- /3rdParty/Breakpad/autotools/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/autotools/compile -------------------------------------------------------------------------------- /3rdParty/Breakpad/autotools/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/autotools/depcomp -------------------------------------------------------------------------------- /3rdParty/Breakpad/autotools/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/autotools/ltmain.sh -------------------------------------------------------------------------------- /3rdParty/Breakpad/autotools/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/autotools/missing -------------------------------------------------------------------------------- /3rdParty/Breakpad/breakpad.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/breakpad.pc.in -------------------------------------------------------------------------------- /3rdParty/Breakpad/codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/codereview.settings -------------------------------------------------------------------------------- /3rdParty/Breakpad/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/configure -------------------------------------------------------------------------------- /3rdParty/Breakpad/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/configure.ac -------------------------------------------------------------------------------- /3rdParty/Breakpad/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/default.xml -------------------------------------------------------------------------------- /3rdParty/Breakpad/docs/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /3rdParty/Breakpad/docs/breakpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/docs/breakpad.png -------------------------------------------------------------------------------- /3rdParty/Breakpad/docs/breakpad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/docs/breakpad.svg -------------------------------------------------------------------------------- /3rdParty/Breakpad/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /3rdParty/Breakpad/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/m4/libtool.m4 -------------------------------------------------------------------------------- /3rdParty/Breakpad/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/m4/ltoptions.m4 -------------------------------------------------------------------------------- /3rdParty/Breakpad/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/m4/ltsugar.m4 -------------------------------------------------------------------------------- /3rdParty/Breakpad/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/m4/ltversion.m4 -------------------------------------------------------------------------------- /3rdParty/Breakpad/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/build/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/src/build/all.gyp -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/common/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/src/common/macros.h -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/common/md5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/src/common/md5.cc -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/common/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/src/common/md5.h -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/common/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/src/common/module.h -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/src/config.h.in -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/processor/microdump_stackwalk_test_vars: -------------------------------------------------------------------------------- 1 | MICRODUMP_SUPPORTED_ARCHS="arm arm64" 2 | -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/third_party/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/third_party/mac_headers/mach/machine/thread_status.h: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank */ 2 | -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/third_party/musl/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.14 2 | -------------------------------------------------------------------------------- /3rdParty/Breakpad/src/tools/tools.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Breakpad/src/tools/tools.gyp -------------------------------------------------------------------------------- /3rdParty/Catch2/.conan/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/.conan/build.py -------------------------------------------------------------------------------- /3rdParty/Catch2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/.gitattributes -------------------------------------------------------------------------------- /3rdParty/Catch2/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: horenmar 2 | -------------------------------------------------------------------------------- /3rdParty/Catch2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/.gitignore -------------------------------------------------------------------------------- /3rdParty/Catch2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/.travis.yml -------------------------------------------------------------------------------- /3rdParty/Catch2/CMake/FindGcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/CMake/FindGcov.cmake -------------------------------------------------------------------------------- /3rdParty/Catch2/CMake/FindLcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/CMake/FindLcov.cmake -------------------------------------------------------------------------------- /3rdParty/Catch2/CMake/catch2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/CMake/catch2.pc.in -------------------------------------------------------------------------------- /3rdParty/Catch2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/CMakeLists.txt -------------------------------------------------------------------------------- /3rdParty/Catch2/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /3rdParty/Catch2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/LICENSE.txt -------------------------------------------------------------------------------- /3rdParty/Catch2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/README.md -------------------------------------------------------------------------------- /3rdParty/Catch2/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/appveyor.yml -------------------------------------------------------------------------------- /3rdParty/Catch2/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/codecov.yml -------------------------------------------------------------------------------- /3rdParty/Catch2/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/conanfile.py -------------------------------------------------------------------------------- /3rdParty/Catch2/contrib/Catch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/contrib/Catch.cmake -------------------------------------------------------------------------------- /3rdParty/Catch2/contrib/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/contrib/gdbinit -------------------------------------------------------------------------------- /3rdParty/Catch2/contrib/lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/contrib/lldbinit -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/Readme.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/assertions.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/benchmarks.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/ci-and-misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/ci-and-misc.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/command-line.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/configuration.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/contributing.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/deprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/deprecations.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/generators.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/limitations.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/logging.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/matchers.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/other-macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/other-macros.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/own-main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/own-main.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/release-notes.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/reporters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/reporters.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/slow-compiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/slow-compiles.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/test-fixtures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/test-fixtures.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/tostring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/tostring.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/tutorial.md -------------------------------------------------------------------------------- /3rdParty/Catch2/docs/why-catch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/docs/why-catch.md -------------------------------------------------------------------------------- /3rdParty/Catch2/include/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/include/catch.hpp -------------------------------------------------------------------------------- /3rdParty/Catch2/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/misc/CMakeLists.txt -------------------------------------------------------------------------------- /3rdParty/Catch2/projects/XCode/OCTest/OCTest/Main.mm: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #import "catch.hpp" 3 | -------------------------------------------------------------------------------- /3rdParty/Catch2/scripts/approve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/scripts/approve.py -------------------------------------------------------------------------------- /3rdParty/Catch2/scripts/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/scripts/embed.py -------------------------------------------------------------------------------- /3rdParty/Catch2/scripts/embedClara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/scripts/embedClara.py -------------------------------------------------------------------------------- /3rdParty/Catch2/third_party/clara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/Catch2/third_party/clara.hpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/AUTHORS -------------------------------------------------------------------------------- /3rdParty/DirectFB/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/BUGS -------------------------------------------------------------------------------- /3rdParty/DirectFB/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/CMakeLists.txt -------------------------------------------------------------------------------- /3rdParty/DirectFB/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/CODING_STYLE -------------------------------------------------------------------------------- /3rdParty/DirectFB/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/COPYING -------------------------------------------------------------------------------- /3rdParty/DirectFB/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/ChangeLog -------------------------------------------------------------------------------- /3rdParty/DirectFB/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/NEWS -------------------------------------------------------------------------------- /3rdParty/DirectFB/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/README -------------------------------------------------------------------------------- /3rdParty/DirectFB/README.++DFB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/README.++DFB -------------------------------------------------------------------------------- /3rdParty/DirectFB/README.DiVine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/README.DiVine -------------------------------------------------------------------------------- /3rdParty/DirectFB/README.FusionDale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/README.FusionDale -------------------------------------------------------------------------------- /3rdParty/DirectFB/README.FusionSound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/README.FusionSound -------------------------------------------------------------------------------- /3rdParty/DirectFB/README.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/README.OSX -------------------------------------------------------------------------------- /3rdParty/DirectFB/README.SaWMan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/README.SaWMan -------------------------------------------------------------------------------- /3rdParty/DirectFB/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/TODO -------------------------------------------------------------------------------- /3rdParty/DirectFB/Win32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/Win32/README -------------------------------------------------------------------------------- /3rdParty/DirectFB/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/autogen.sh -------------------------------------------------------------------------------- /3rdParty/DirectFB/build-android/clanbomber2/jni/Application.mk: -------------------------------------------------------------------------------- 1 | ../../common_files/Application.mk -------------------------------------------------------------------------------- /3rdParty/DirectFB/build-android/clanbomber2/prepare.sh: -------------------------------------------------------------------------------- 1 | ../common_files/prepare.sh -------------------------------------------------------------------------------- /3rdParty/DirectFB/build-android/df_andi/jni/Application.mk: -------------------------------------------------------------------------------- 1 | ../../common_files/Application.mk -------------------------------------------------------------------------------- /3rdParty/DirectFB/build-android/df_andi/prepare.sh: -------------------------------------------------------------------------------- 1 | ../common_files/prepare.sh -------------------------------------------------------------------------------- /3rdParty/DirectFB/build-android/df_matrix/jni/Application.mk: -------------------------------------------------------------------------------- 1 | ../../common_files/Application.mk -------------------------------------------------------------------------------- /3rdParty/DirectFB/build-android/df_matrix/prepare.sh: -------------------------------------------------------------------------------- 1 | ../common_files/prepare.sh -------------------------------------------------------------------------------- /3rdParty/DirectFB/build-android/df_window/jni/Application.mk: -------------------------------------------------------------------------------- 1 | ../../common_files/Application.mk -------------------------------------------------------------------------------- /3rdParty/DirectFB/build-android/df_window/prepare.sh: -------------------------------------------------------------------------------- 1 | ../common_files/prepare.sh -------------------------------------------------------------------------------- /3rdParty/DirectFB/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/configure.in -------------------------------------------------------------------------------- /3rdParty/DirectFB/data/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/data/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/data/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/data/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/data/cursor.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/data/cursor.dat -------------------------------------------------------------------------------- /3rdParty/DirectFB/data/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/data/cursor.png -------------------------------------------------------------------------------- /3rdParty/DirectFB/data/decker.dgiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/data/decker.dgiff -------------------------------------------------------------------------------- /3rdParty/DirectFB/data/decker.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/data/decker.ttf -------------------------------------------------------------------------------- /3rdParty/DirectFB/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/debian/changelog -------------------------------------------------------------------------------- /3rdParty/DirectFB/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/debian/control -------------------------------------------------------------------------------- /3rdParty/DirectFB/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/debian/copyright -------------------------------------------------------------------------------- /3rdParty/DirectFB/debian/divine-spooky-1.7.install: -------------------------------------------------------------------------------- 1 | usr/bin/spooky 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/debian/rules -------------------------------------------------------------------------------- /3rdParty/DirectFB/directfb-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/directfb-config.in -------------------------------------------------------------------------------- /3rdParty/DirectFB/directfb.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/directfb.pc.in -------------------------------------------------------------------------------- /3rdParty/DirectFB/directfb.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/directfb.spec.in -------------------------------------------------------------------------------- /3rdParty/DirectFB/docs/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/docs/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/docs/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/docs/GeneFX.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/docs/GeneFX.odp -------------------------------------------------------------------------------- /3rdParty/DirectFB/docs/GeneFX.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/docs/GeneFX.pdf -------------------------------------------------------------------------------- /3rdParty/DirectFB/docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/docs/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/docs/README.mga-tv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/docs/README.mga-tv -------------------------------------------------------------------------------- /3rdParty/DirectFB/docs/dfbg.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/docs/dfbg.1.in -------------------------------------------------------------------------------- /3rdParty/DirectFB/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/examples/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/fb.modes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/fb.modes -------------------------------------------------------------------------------- /3rdParty/DirectFB/gfxdrivers/davinci/.gitignore: -------------------------------------------------------------------------------- 1 | c64xdump 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/gfxdrivers/pxa3xx/.gitignore: -------------------------------------------------------------------------------- 1 | pxa3xx_dump 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/gfxdrivers/sh772x/.gitignore: -------------------------------------------------------------------------------- 1 | sh7722_jpegtool 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/include/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/include/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/include/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/include/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/include/dfb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/include/dfb_types.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/include/dfiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/include/dfiff.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/include/dgiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/include/dgiff.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/include/directfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/include/directfb.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/interfaces/IDirectFBGL/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = EGL 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/++dfb/.gitignore: -------------------------------------------------------------------------------- 1 | ++dfb.pc -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/++dfb/ppdfb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/++dfb/ppdfb.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/One/.gitignore: -------------------------------------------------------------------------------- 1 | one.pc 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/One/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/One/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/One/One.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/One/One.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/One/One.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/One/One.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/One/OneQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/One/OneQueue.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/One/OneThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/One/OneThread.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/One/OneTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/One/OneTypes.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/One/one.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/One/one.pc.in -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/Base.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/Base.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/EvLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/EvLog.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/Lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/Lists.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/LockWQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/LockWQ.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/Magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/Magic.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/Mutex.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/String.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/Type.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/Utils.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/atomic.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/clock.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/clock.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/conf.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/conf.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/debug.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/debug.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/direct.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/direct.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/fastlz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/fastlz.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/fastlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/fastlz.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/fifo.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/fifo.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/flz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/flz.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/flz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/flz.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/hash.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/hash.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/init.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/init.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/list.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/list.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/log.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/log.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/map.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/map.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/mem.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/mem.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/memcpy.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/memcpy.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/os/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/os/log.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/os/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/os/mem.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/os/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/os/tls.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/perf.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/perf.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/print.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/print.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/result.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/result.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/serial.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/serial.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/stream.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/stream.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/system.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/system.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/thread.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/thread.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/trace.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/trace.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/tree.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/tree.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/types.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/utf8.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/utf8.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/util.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/util.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/uuid.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/direct/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/direct/uuid.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/divine/.gitignore: -------------------------------------------------------------------------------- 1 | divine.pc 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/divine/divine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/divine/divine.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/divine/divine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/divine/divine.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/dvc/.gitignore: -------------------------------------------------------------------------------- 1 | dvc_test 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/dvc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/dvc/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/dvc/dvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/dvc/dvc.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/dvc/dvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/dvc/dvc.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/dvc/dvc_mmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/dvc/dvc_mmx.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/dvc/dvc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/dvc/dvc_test.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/EGL/egl.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/GLES2/gl2.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/api.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/build.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/build.h.in -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/config.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/context.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/core.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/dfbegl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/dfbegl.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/display.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/egl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/egl.pc.in -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/egl_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/egl_api.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/image.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/image.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/library.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/option.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/surface.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/tls.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/egl/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/egl/util.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/.gitignore: -------------------------------------------------------------------------------- 1 | build.h 2 | fusion.pc 3 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/Debug.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/arena.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/arena.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/call.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/call.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/conf.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/conf.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/fusion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/fusion.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/fusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/fusion.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/hash.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/hash.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/init.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/init.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/lock.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/lock.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/object.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/ref.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/ref.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/types.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/vector.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/fusion/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/fusion/vector.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/sawman/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/sawman/Debug.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/sawman/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/sawman/region.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/sawman/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/sawman/region.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/.gitignore: -------------------------------------------------------------------------------- 1 | build.h 2 | voodoo.pc 3 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/TODO -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/app.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/client.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/client.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/conf.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/conf.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/init.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/init.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/link.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/packet.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/play.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/play.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/server.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/server.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/voodoo/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/lib/voodoo/types.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/wayland-dfb/.gitignore: -------------------------------------------------------------------------------- 1 | wayland-dfb.pc -------------------------------------------------------------------------------- /3rdParty/DirectFB/lib/wayland-egl/.gitignore: -------------------------------------------------------------------------------- 1 | wayland-egl.pc -------------------------------------------------------------------------------- /3rdParty/DirectFB/m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/m4/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/m4/as-ac-expand.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/m4/as-ac-expand.m4 -------------------------------------------------------------------------------- /3rdParty/DirectFB/mkchlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/mkchlog -------------------------------------------------------------------------------- /3rdParty/DirectFB/patches/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/patches/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/patches/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/patches/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/patches/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/patches/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/patches/README.fusion: -------------------------------------------------------------------------------- 1 | Please download linux-fusion separately from the web site. 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/proxy/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/proxy/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/proxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/proxy/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/proxy/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/proxy/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/rules/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/rules/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/rules/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/rules/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/rules/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/rules/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/rules/nmfile.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/rules/nmfile.make -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/.gitignore: -------------------------------------------------------------------------------- 1 | directfb_result.c 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/CMakeLists.txt -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/Debug.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/Debug.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/Fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/Fifo.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/Graphics.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/Renderer.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/Task.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/Task.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/Util.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/Util.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/core.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/core.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/coredefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/coredefs.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/fonts.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/fonts.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/gfxcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/gfxcard.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/gfxcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/gfxcard.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/input.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/input.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/layers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/layers.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/layers.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/palette.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/palette.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/screen.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/screen.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/screens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/screens.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/screens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/screens.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/state.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/state.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/surface.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/surface.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/system.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/system.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/windows.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/windows.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/wm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/wm.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/core/wm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/core/wm.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/directfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/directfb.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/dummy.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/gfx/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/gfx/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/gfx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/gfx/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/gfx/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/gfx/clip.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/gfx/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/gfx/clip.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/gfx/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/gfx/convert.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/gfx/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/gfx/convert.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/gfx/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/gfx/util.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/gfx/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/gfx/util.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/idirectfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/idirectfb.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/idirectfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/idirectfb.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/init.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/init.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/misc/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/misc/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/misc/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/misc/conf.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/misc/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/misc/conf.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/misc/dither.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/misc/dither.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/misc/gfx_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/misc/gfx_util.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/misc/gfx_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/misc/gfx_util.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/misc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/misc/util.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/src/misc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/src/misc/util.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/drmkms/vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/drmkms/vt.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/drmkms/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/drmkms/vt.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/fbdev/agp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/fbdev/agp.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/fbdev/agp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/fbdev/agp.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/fbdev/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/fbdev/fb.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/fbdev/vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/fbdev/vt.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/fbdev/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/fbdev/vt.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/mesa/vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/mesa/vt.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/mesa/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/mesa/vt.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/osx/osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/osx/osx.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/osx/osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/osx/osx.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/sdl/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/sdl/sdl.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/sdl/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/sdl/sdl.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/vnc/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/vnc/vnc.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/vnc/vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/vnc/vnc.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/x11/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/x11/README -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/x11/x11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/x11/x11.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/systems/x11/x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/systems/x11/x11.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/OneBench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/OneBench.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/OneTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/OneTest.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/dfbtest_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/dfbtest_egl.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/dfbtest_gl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/dfbtest_gl1.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/dfbtest_gl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/dfbtest_gl2.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/dfbtest_gl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/dfbtest_gl3.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/direct_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/direct_test.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/divine_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/divine_test.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/fdtest_coma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/fdtest_coma.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/fdtest_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/fdtest_init.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/fusion_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/fusion_call.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/fusion_fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/fusion_fork.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/sample1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/sample1.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/testman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/testman.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tests/testrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tests/testrun.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/README -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfbdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfbdump.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfbfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfbfx.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfbg.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfbinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfbinfo.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfbinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfbinput.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfblayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfblayer.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfbmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfbmaster.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfbpenmount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfbpenmount.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfbproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfbproxy.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfbscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfbscreen.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/dfbsummon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/dfbsummon.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/fddump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/fddump.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/fdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/fdmaster.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/fsdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/fsdump.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/fsmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/fsmaster.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/fsplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/fsplay.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/fsproxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/fsproxy.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/fsvolume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/fsvolume.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/gendoc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/gendoc.pl -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/mkdfiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/mkdfiff.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/mkdgiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/mkdgiff.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/mkdgifft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/mkdgifft.cpp -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/mknames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/mknames.sh -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/mkresult.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/mkresult.sh -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/spooky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/spooky.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/swmdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/swmdump.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/tools/voodooplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/tools/voodooplay.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/.cvsignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/.gitignore -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/Makefile.am -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/FLOW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/FLOW -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/IDEAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/IDEAS -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/STRET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/STRET -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/context.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/context.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/data/.gitignore: -------------------------------------------------------------------------------- 1 | foo.h 2 | -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/device.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/device.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/stret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/stret.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/stret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/stret.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/types.h -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/unique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/unique.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/uwmdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/uwmdump.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/window.c -------------------------------------------------------------------------------- /3rdParty/DirectFB/wm/unique/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/DirectFB/wm/unique/window.h -------------------------------------------------------------------------------- /3rdParty/JSON/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/JSON/json.hpp -------------------------------------------------------------------------------- /3rdParty/LVGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/CMakeLists.txt -------------------------------------------------------------------------------- /3rdParty/LVGL/LVGL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/LVGL.vcxproj -------------------------------------------------------------------------------- /3rdParty/LVGL/LVGL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/LVGL.vcxproj.filters -------------------------------------------------------------------------------- /3rdParty/LVGL/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lv_conf.h -------------------------------------------------------------------------------- /3rdParty/LVGL/lv_drivers/.gitignore: -------------------------------------------------------------------------------- 1 | **/*.o -------------------------------------------------------------------------------- /3rdParty/LVGL/lv_drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lv_drivers/README.md -------------------------------------------------------------------------------- /3rdParty/LVGL/lv_drivers/docs/astyle_h: -------------------------------------------------------------------------------- 1 | --convert-tabs --indent=spaces=4 2 | -------------------------------------------------------------------------------- /3rdParty/LVGL/lv_drivers/win_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lv_drivers/win_drv.c -------------------------------------------------------------------------------- /3rdParty/LVGL/lv_drivers/win_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lv_drivers/win_drv.h -------------------------------------------------------------------------------- /3rdParty/LVGL/lv_drv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lv_drv_conf.h -------------------------------------------------------------------------------- /3rdParty/LVGL/lv_ex_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lv_ex_conf.h -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lvgl/.clang-format -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lvgl/.editorconfig -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lvgl/.gitignore -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lvgl/README.md -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/lv_conf_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lvgl/lv_conf_template.h -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lvgl/lvgl.h -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lvgl/lvgl.mk -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/scripts/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lvgl/scripts/Doxyfile -------------------------------------------------------------------------------- /3rdParty/LVGL/lvgl/src/lv_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/LVGL/lvgl/src/lv_version.h -------------------------------------------------------------------------------- /3rdParty/MXML/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/CHANGES.md -------------------------------------------------------------------------------- /3rdParty/MXML/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/LICENSE -------------------------------------------------------------------------------- /3rdParty/MXML/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/Makefile.in -------------------------------------------------------------------------------- /3rdParty/MXML/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/NOTICE -------------------------------------------------------------------------------- /3rdParty/MXML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/README.md -------------------------------------------------------------------------------- /3rdParty/MXML/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/config.guess -------------------------------------------------------------------------------- /3rdParty/MXML/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/config.h.in -------------------------------------------------------------------------------- /3rdParty/MXML/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/config.sub -------------------------------------------------------------------------------- /3rdParty/MXML/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/configure -------------------------------------------------------------------------------- /3rdParty/MXML/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/configure.ac -------------------------------------------------------------------------------- /3rdParty/MXML/doc/body.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/body.man -------------------------------------------------------------------------------- /3rdParty/MXML/doc/body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/body.md -------------------------------------------------------------------------------- /3rdParty/MXML/doc/footer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/footer.man -------------------------------------------------------------------------------- /3rdParty/MXML/doc/mxml-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/mxml-cover.jpg -------------------------------------------------------------------------------- /3rdParty/MXML/doc/mxml-cover.opacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/mxml-cover.opacity -------------------------------------------------------------------------------- /3rdParty/MXML/doc/mxml-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/mxml-cover.png -------------------------------------------------------------------------------- /3rdParty/MXML/doc/mxml.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/mxml.3 -------------------------------------------------------------------------------- /3rdParty/MXML/doc/mxml.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/mxml.epub -------------------------------------------------------------------------------- /3rdParty/MXML/doc/mxml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/mxml.html -------------------------------------------------------------------------------- /3rdParty/MXML/doc/mxml.opacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/mxml.opacity -------------------------------------------------------------------------------- /3rdParty/MXML/doc/mxml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/doc/mxml.png -------------------------------------------------------------------------------- /3rdParty/MXML/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/install-sh -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-attr.c -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-entity.c -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-file.c -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-get.c -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-index.c -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-node.c -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-private.c -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-private.h -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-search.c -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-set.c -------------------------------------------------------------------------------- /3rdParty/MXML/mxml-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml-string.c -------------------------------------------------------------------------------- /3rdParty/MXML/mxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml.h -------------------------------------------------------------------------------- /3rdParty/MXML/mxml.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml.pc.in -------------------------------------------------------------------------------- /3rdParty/MXML/mxml.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/mxml.spec -------------------------------------------------------------------------------- /3rdParty/MXML/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/test.xml -------------------------------------------------------------------------------- /3rdParty/MXML/test/class.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/test/class.cxx -------------------------------------------------------------------------------- /3rdParty/MXML/test/dotest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/test/dotest.sh -------------------------------------------------------------------------------- /3rdParty/MXML/test/enum.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/test/enum.cxx -------------------------------------------------------------------------------- /3rdParty/MXML/test/function.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/test/function.cxx -------------------------------------------------------------------------------- /3rdParty/MXML/test/functype.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/test/functype.cxx -------------------------------------------------------------------------------- /3rdParty/MXML/test/struct.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/test/struct.cxx -------------------------------------------------------------------------------- /3rdParty/MXML/test/type.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/test/type.cxx -------------------------------------------------------------------------------- /3rdParty/MXML/testmxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/testmxml.c -------------------------------------------------------------------------------- /3rdParty/MXML/vcnet/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/vcnet/config.h -------------------------------------------------------------------------------- /3rdParty/MXML/vcnet/mxml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/vcnet/mxml.sln -------------------------------------------------------------------------------- /3rdParty/MXML/vcnet/mxml1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/vcnet/mxml1.def -------------------------------------------------------------------------------- /3rdParty/MXML/vcnet/mxml1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/vcnet/mxml1.vcxproj -------------------------------------------------------------------------------- /3rdParty/MXML/vcnet/mxmlstat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/vcnet/mxmlstat.vcxproj -------------------------------------------------------------------------------- /3rdParty/MXML/vcnet/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/vcnet/packages.config -------------------------------------------------------------------------------- /3rdParty/MXML/vcnet/testmxml.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/vcnet/testmxml.vcxproj -------------------------------------------------------------------------------- /3rdParty/MXML/xcode/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/MXML/xcode/config.h -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/Android.mk -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/BUGS.txt -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/CMakeLists.txt -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/COPYING.txt -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/CREDITS.txt -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/INSTALL.txt -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/Makefile.in -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/Makefile.minimal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/Makefile.minimal -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/Makefile.os2 -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/Makefile.pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/Makefile.pandora -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/Makefile.psp -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/Makefile.wiz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/Makefile.wiz -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/README-SDL.txt -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/README.txt -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/SDL2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/SDL2.spec -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/SDL2.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/SDL2.spec.in -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/SDL2Config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/SDL2Targets.cmake") 2 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/TODO.txt -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/VisualC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/VisualC.html -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/VisualC/SDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/VisualC/SDL.sln -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/VisualC/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/VisualC/clean.sh -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/WhatsNew.txt -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/acinclude/esd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/acinclude/esd.m4 -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/android-project-ant/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/android-project/app/jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/android-project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/autogen.sh -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/configure -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/configure.ac -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/debian/changelog -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/debian/control -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/debian/copyright -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/debian/docs -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/debian/libsdl2-dev.manpages: -------------------------------------------------------------------------------- 1 | debian/sdl2-config.1 2 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/debian/rules -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://www.libsdl.org/release/SDL-([\d.]+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/docs/README.md -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/docs/doxyfile -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/include/SDL.h -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/sdl2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/sdl2-config.in -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/sdl2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/sdl2.m4 -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/sdl2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/sdl2.pc.in -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/SDL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/SDL.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/SDL_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/SDL_assert.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/SDL_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/SDL_error.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/SDL_hints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/SDL_hints.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/SDL_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/SDL_log.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/hidapi/libusb/hidusb.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDUSB 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/hidapi/linux/hidraw.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define NAMESPACE HIDRAW 3 | #include "hid.c" 4 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/hidapi/testgui/TestGUI.app.in/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/libm/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/libm/e_exp.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/libm/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/libm/e_log.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/libm/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/libm/e_pow.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/libm/k_cos.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/libm/k_sin.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/libm/k_tan.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/libm/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/libm/s_cos.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/libm/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/libm/s_sin.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/src/libm/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/src/libm/s_tan.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/COPYING -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/Makefile.in -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/README -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/aclocal.m4 -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/autogen.sh -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/axis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/axis.bmp -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/button.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/button.bmp -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/checkkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/checkkeys.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/configure -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/gcc-fat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/gcc-fat.sh -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/icon.bmp -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/loopwave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/loopwave.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/moose.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/moose.dat -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/picture.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/picture.xbm -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/sample.bmp -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/sample.wav -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testdraw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testdraw2.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testerror.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testfile.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testgl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testgl2.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testgles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testgles.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testgles2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testgles2.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testiconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testiconv.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testime.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testkeys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testkeys.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testlock.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testpower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testpower.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testqsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testqsort.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testscale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testscale.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testsem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testsem.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testshape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testshape.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testtimer.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testver.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testwm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testwm2.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testyuv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testyuv.bmp -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/testyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/testyuv.c -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/test/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/SDL2-2.0.10/test/utf8.txt -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/visualtest/compile: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/compile -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/visualtest/configs/testsprite2_crashtest/testsprite2_crashtest.actions: -------------------------------------------------------------------------------- 1 | 00:00:02 QUIT -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/visualtest/depcomp: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/depcomp -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/visualtest/install-sh: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/install-sh -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/visualtest/missing: -------------------------------------------------------------------------------- 1 | /usr/share/automake-1.11/missing -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/visualtest/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for config.h 2 | -------------------------------------------------------------------------------- /3rdParty/SDL2-2.0.10/visualtest/unittest/testquit.actions: -------------------------------------------------------------------------------- 1 | 00:00:05 QUIT -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog.20 -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog.21 -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog.22 -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog.23 -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog.24 -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog.25 -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog.26 -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog.27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog.27 -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog.28 -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/ChangeLog.29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/ChangeLog.29 -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/Jamfile -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/Jamrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/Jamrules -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/Makefile -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/README -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/README.git -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/autogen.sh -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/configure -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/docs/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/docs/CHANGES -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/docs/CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/docs/CMAKE -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/docs/DEBUG -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/docs/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/docs/FTL.TXT -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/docs/INSTALL -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/docs/MAKEPP -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/freetype-2.10.1/docs/TODO -------------------------------------------------------------------------------- /3rdParty/freetype-2.10.1/docs/reference/site/assets/javascripts/lunr/lunr.jp.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /3rdParty/libimagequant/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/.gitignore -------------------------------------------------------------------------------- /3rdParty/libimagequant/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/.travis.yml -------------------------------------------------------------------------------- /3rdParty/libimagequant/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/CHANGELOG -------------------------------------------------------------------------------- /3rdParty/libimagequant/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/COPYRIGHT -------------------------------------------------------------------------------- /3rdParty/libimagequant/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/Cargo.toml -------------------------------------------------------------------------------- /3rdParty/libimagequant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/Makefile -------------------------------------------------------------------------------- /3rdParty/libimagequant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/README.md -------------------------------------------------------------------------------- /3rdParty/libimagequant/blur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/blur.c -------------------------------------------------------------------------------- /3rdParty/libimagequant/blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/blur.h -------------------------------------------------------------------------------- /3rdParty/libimagequant/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/configure -------------------------------------------------------------------------------- /3rdParty/libimagequant/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/example.c -------------------------------------------------------------------------------- /3rdParty/libimagequant/kmeans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/kmeans.c -------------------------------------------------------------------------------- /3rdParty/libimagequant/kmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/kmeans.h -------------------------------------------------------------------------------- /3rdParty/libimagequant/mediancut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/mediancut.c -------------------------------------------------------------------------------- /3rdParty/libimagequant/mediancut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/mediancut.h -------------------------------------------------------------------------------- /3rdParty/libimagequant/mempool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/mempool.c -------------------------------------------------------------------------------- /3rdParty/libimagequant/mempool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/mempool.h -------------------------------------------------------------------------------- /3rdParty/libimagequant/nearest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/nearest.c -------------------------------------------------------------------------------- /3rdParty/libimagequant/nearest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/nearest.h -------------------------------------------------------------------------------- /3rdParty/libimagequant/pam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/pam.c -------------------------------------------------------------------------------- /3rdParty/libimagequant/pam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/pam.h -------------------------------------------------------------------------------- /3rdParty/libimagequant/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/libimagequant/pom.xml -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/.gitignore -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/.travis.yml -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/CMakeLists.txt -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/INSTALL -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/LICENSE -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/README.md -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/appveyor.yml -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/bench/bench.cpp -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/bench/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/bench/utils.h -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/cmake/ide.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/cmake/ide.cmake -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/meson.build -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/src/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/src/async.cpp -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/src/fmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/src/fmt.cpp -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/src/spdlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/src/spdlog.cpp -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/tests/catch.hpp -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/tests/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/tests/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/tests/utils.cpp -------------------------------------------------------------------------------- /3rdParty/spdlog-1.x/tests/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/3rdParty/spdlog-1.x/tests/utils.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CodeGeneration/CodeGeneratorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/CodeGeneration/CodeGeneratorBase.h -------------------------------------------------------------------------------- /CodeGeneration/ResultItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/CodeGeneration/ResultItem.h -------------------------------------------------------------------------------- /CodeGeneration/ResultLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/CodeGeneration/ResultLog.cpp -------------------------------------------------------------------------------- /CodeGeneration/ResultsLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/CodeGeneration/ResultsLog.h -------------------------------------------------------------------------------- /Docker/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/Docker/dockerfile -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/Doxyfile -------------------------------------------------------------------------------- /ImgLib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/ImgLib/CMakeLists.txt -------------------------------------------------------------------------------- /ImgLib/ImgLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/ImgLib/ImgLib.vcxproj -------------------------------------------------------------------------------- /ImgLib/ImgLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/ImgLib/ImgLib.vcxproj.filters -------------------------------------------------------------------------------- /ImgLib/LVImageConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/ImgLib/LVImageConvert.cpp -------------------------------------------------------------------------------- /ImgLib/LVImageConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/ImgLib/LVImageConvert.h -------------------------------------------------------------------------------- /ImgLib/stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/ImgLib/stb.h -------------------------------------------------------------------------------- /ImgLib/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/ImgLib/stb_image.h -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LICENSE -------------------------------------------------------------------------------- /LVSerial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/CMakeLists.txt -------------------------------------------------------------------------------- /LVSerial/LVSerial.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/LVSerial.vcxproj -------------------------------------------------------------------------------- /LVSerial/LVSerial.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/LVSerial.vcxproj.filters -------------------------------------------------------------------------------- /LVSerial/Serialization/Area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/Area.h -------------------------------------------------------------------------------- /LVSerial/Serialization/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/Base64.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/Base64.h -------------------------------------------------------------------------------- /LVSerial/Serialization/FontDsc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/FontDsc.json -------------------------------------------------------------------------------- /LVSerial/Serialization/LVArc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVArc.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/LVArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVArc.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVBar.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/LVBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVBar.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVButton.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/LVButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVButton.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVCalendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVCalendar.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVCanvas.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/LVCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVCanvas.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVCheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVCheckBox.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVFont.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/LVFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVFont.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVFontCMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVFontCMap.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVFontDsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVFontDsc.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVImage.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/LVImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVImage.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVLabel.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/LVLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVLabel.h -------------------------------------------------------------------------------- /LVSerial/Serialization/LVObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVObject.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/LVObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/LVObject.h -------------------------------------------------------------------------------- /LVSerial/Serialization/PNGToArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/PNGToArray.h -------------------------------------------------------------------------------- /LVSerial/Serialization/Page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/Page.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/Page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/Page.h -------------------------------------------------------------------------------- /LVSerial/Serialization/Realign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/Realign.h -------------------------------------------------------------------------------- /LVSerial/Serialization/Style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/Style.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/Style.h -------------------------------------------------------------------------------- /LVSerial/Serialization/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/lodepng.cpp -------------------------------------------------------------------------------- /LVSerial/Serialization/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/LVSerial/Serialization/lodepng.h -------------------------------------------------------------------------------- /Tests/UnitTests/ImgLib/JPEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/Tests/UnitTests/ImgLib/JPEG.cpp -------------------------------------------------------------------------------- /Tests/UnitTests/ImgLib/JPEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/Tests/UnitTests/ImgLib/JPEG.h -------------------------------------------------------------------------------- /Tests/UnitTests/ImgLib/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/Tests/UnitTests/ImgLib/Main.cpp -------------------------------------------------------------------------------- /Tests/UnitTests/ImgLib/jpeg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/Tests/UnitTests/ImgLib/jpeg1.jpg -------------------------------------------------------------------------------- /Tests/UnitTests/ImgLib/jpeg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/Tests/UnitTests/ImgLib/jpeg2.jpg -------------------------------------------------------------------------------- /Tests/UnitTests/ImgLib/jpeg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/Tests/UnitTests/ImgLib/jpeg3.jpg -------------------------------------------------------------------------------- /Tests/UnitTests/ImgLib/jpeg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/Tests/UnitTests/ImgLib/jpeg4.jpg -------------------------------------------------------------------------------- /UICreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator.sln -------------------------------------------------------------------------------- /UICreator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/CMakeLists.txt -------------------------------------------------------------------------------- /UICreator/FontDsc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/FontDsc.json -------------------------------------------------------------------------------- /UICreator/Fonts/FTFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Fonts/FTFont.cpp -------------------------------------------------------------------------------- /UICreator/Fonts/FTFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Fonts/FTFont.h -------------------------------------------------------------------------------- /UICreator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/LICENSE -------------------------------------------------------------------------------- /UICreator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Makefile -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Arc.cpp -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Arc.h -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Bar.cpp -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Bar.h -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Button.cpp -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Button.h -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Calendar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Calendar.h -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Canvas.cpp -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Canvas.h -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Chart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Chart.cpp -------------------------------------------------------------------------------- /UICreator/ObjectCreation/Chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/Chart.h -------------------------------------------------------------------------------- /UICreator/ObjectCreation/CheckBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/ObjectCreation/CheckBox.h -------------------------------------------------------------------------------- /UICreator/README.md: -------------------------------------------------------------------------------- 1 | # LVGL GUI UI Designed 2 | -------------------------------------------------------------------------------- /UICreator/UICreator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/UICreator.vcxproj -------------------------------------------------------------------------------- /UICreator/UICreator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/UICreator.vcxproj.filters -------------------------------------------------------------------------------- /UICreator/Utils/ObjectTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Utils/ObjectTools.cpp -------------------------------------------------------------------------------- /UICreator/Utils/ObjectTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Utils/ObjectTools.h -------------------------------------------------------------------------------- /UICreator/Variable/Variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Variable/Variable.cpp -------------------------------------------------------------------------------- /UICreator/Variable/Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Variable/Variable.h -------------------------------------------------------------------------------- /UICreator/Widgets/ColorPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Widgets/ColorPicker.cpp -------------------------------------------------------------------------------- /UICreator/Widgets/ColorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Widgets/ColorPicker.h -------------------------------------------------------------------------------- /UICreator/Widgets/FileBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Widgets/FileBrowser.cpp -------------------------------------------------------------------------------- /UICreator/Widgets/FileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Widgets/FileBrowser.h -------------------------------------------------------------------------------- /UICreator/Widgets/ListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Widgets/ListBox.cpp -------------------------------------------------------------------------------- /UICreator/Widgets/ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Widgets/ListBox.h -------------------------------------------------------------------------------- /UICreator/Widgets/TreeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Widgets/TreeNode.cpp -------------------------------------------------------------------------------- /UICreator/Widgets/TreeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Widgets/TreeNode.h -------------------------------------------------------------------------------- /UICreator/Widgets/TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Widgets/TreeView.cpp -------------------------------------------------------------------------------- /UICreator/Widgets/TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Widgets/TreeView.h -------------------------------------------------------------------------------- /UICreator/Windows/BaseProperties.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /UICreator/Windows/PropertyFunctions.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /UICreator/Windows/PropertyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/PropertyWindow.h -------------------------------------------------------------------------------- /UICreator/Windows/SimWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/SimWindow.cpp -------------------------------------------------------------------------------- /UICreator/Windows/SimWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/SimWindow.h -------------------------------------------------------------------------------- /UICreator/Windows/Themes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/Themes.h -------------------------------------------------------------------------------- /UICreator/Windows/ToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/ToolBar.cpp -------------------------------------------------------------------------------- /UICreator/Windows/ToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/ToolBar.h -------------------------------------------------------------------------------- /UICreator/Windows/ToolTray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/ToolTray.cpp -------------------------------------------------------------------------------- /UICreator/Windows/ToolTray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/ToolTray.h -------------------------------------------------------------------------------- /UICreator/Windows/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/UI.cpp -------------------------------------------------------------------------------- /UICreator/Windows/UI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/UI.h -------------------------------------------------------------------------------- /UICreator/Windows/UIObjectData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/Windows/UIObjectData.h -------------------------------------------------------------------------------- /UICreator/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/config.h -------------------------------------------------------------------------------- /UICreator/custom_widget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/custom_widget.c -------------------------------------------------------------------------------- /UICreator/custom_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/custom_widget.h -------------------------------------------------------------------------------- /UICreator/dataset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/dataset.c -------------------------------------------------------------------------------- /UICreator/dataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/dataset.h -------------------------------------------------------------------------------- /UICreator/gencode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/gencode.c -------------------------------------------------------------------------------- /UICreator/gencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/gencode.h -------------------------------------------------------------------------------- /UICreator/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/interface.c -------------------------------------------------------------------------------- /UICreator/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/interface.h -------------------------------------------------------------------------------- /UICreator/json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/json.txt -------------------------------------------------------------------------------- /UICreator/loadproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/loadproj.c -------------------------------------------------------------------------------- /UICreator/loadproj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/loadproj.h -------------------------------------------------------------------------------- /UICreator/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/lv_conf.h -------------------------------------------------------------------------------- /UICreator/lv_drv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/lv_drv_conf.h -------------------------------------------------------------------------------- /UICreator/lv_ex_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/lv_ex_conf.h -------------------------------------------------------------------------------- /UICreator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/main.cpp -------------------------------------------------------------------------------- /UICreator/mouse_cursor_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/mouse_cursor_icon.c -------------------------------------------------------------------------------- /UICreator/saveproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/saveproj.c -------------------------------------------------------------------------------- /UICreator/saveproj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/saveproj.h -------------------------------------------------------------------------------- /UICreator/setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/setting.c -------------------------------------------------------------------------------- /UICreator/setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/setting.h -------------------------------------------------------------------------------- /UICreator/toolbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/toolbox.c -------------------------------------------------------------------------------- /UICreator/toolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohmer/LVGL_UI_Creator/HEAD/UICreator/toolbox.h --------------------------------------------------------------------------------