├── .gitattributes ├── .gitignore ├── Documentation ├── Doxyfile ├── Doxygen │ ├── doxygen-extra.css │ ├── doxygen.css │ ├── footer.txt │ └── header.txt └── Overview │ ├── core.h │ ├── display.h │ ├── main-page.h │ ├── network.h │ └── ui.h ├── Examples.xcworkspace └── contents.xcworkspacedata ├── Examples ├── Cube │ ├── Cube.sln │ ├── Cube.vcxproj │ ├── Cube.vcxproj.filters │ ├── Resources │ │ ├── cube_fragment.glsl │ │ └── cube_vertex.glsl │ └── Sources │ │ ├── Controller │ │ ├── Application │ │ │ ├── application_controller.cpp │ │ │ └── application_controller.h │ │ └── MainWindow │ │ │ ├── main_window_controller.cpp │ │ │ └── main_window_controller.h │ │ ├── Model │ │ ├── app_model.cpp │ │ └── app_model.h │ │ ├── View │ │ ├── Cube │ │ │ ├── cube_view.cpp │ │ │ └── cube_view.h │ │ └── MainWindow │ │ │ └── main_window_view.h │ │ ├── precomp.cpp │ │ └── precomp.h ├── FlexCheatSheet │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── FlexCheatSheet.sln │ ├── FlexCheatSheet.vcxproj │ ├── FlexCheatSheet.vcxproj.filters │ ├── FlexCheatSheet.xcodeproj │ │ └── project.pbxproj │ ├── Info.plist │ └── Sources │ │ ├── Controller │ │ ├── Application │ │ │ ├── application_controller.cpp │ │ │ └── application_controller.h │ │ └── MainWindow │ │ │ ├── main_window_controller.cpp │ │ │ └── main_window_controller.h │ │ ├── Model │ │ ├── app_model.cpp │ │ └── app_model.h │ │ ├── View │ │ └── MainWindow │ │ │ ├── main_window.view │ │ │ └── main_window_view.h │ │ ├── precomp.cpp │ │ └── precomp.h ├── FlexTable │ ├── FlexTable-vc2017.sln │ ├── FlexTable-vc2017.vcxproj │ ├── Sources │ │ ├── flextable.cpp │ │ ├── flextable.h │ │ ├── precomp.cpp │ │ └── precomp.h │ └── flex.html ├── SvgViewer │ ├── Resources │ │ ├── holidays.svg │ │ ├── like3.svg │ │ └── tiger.svg │ ├── Sources │ │ ├── Controller │ │ │ ├── Application │ │ │ │ ├── application_controller.cpp │ │ │ │ └── application_controller.h │ │ │ └── MainWindow │ │ │ │ ├── main_window_controller.cpp │ │ │ │ └── main_window_controller.h │ │ ├── Model │ │ │ ├── Svg │ │ │ │ ├── svg.cpp │ │ │ │ ├── svg.h │ │ │ │ ├── svg_attribute_reader.cpp │ │ │ │ ├── svg_attribute_reader.h │ │ │ │ ├── svg_element_visitor.cpp │ │ │ │ ├── svg_element_visitor.h │ │ │ │ ├── svg_transform_scope.cpp │ │ │ │ ├── svg_transform_scope.h │ │ │ │ ├── svg_tree.cpp │ │ │ │ └── svg_tree.h │ │ │ ├── app_model.cpp │ │ │ └── app_model.h │ │ ├── View │ │ │ ├── MainWindow │ │ │ │ └── main_window_view.h │ │ │ └── Svg │ │ │ │ ├── svg_view.cpp │ │ │ │ └── svg_view.h │ │ ├── precomp.cpp │ │ └── precomp.h │ ├── SvgViewer.sln │ ├── SvgViewer.vcxproj │ └── SvgViewer.vcxproj.filters ├── ThemedForm │ ├── Resources │ │ ├── button_disabled.png │ │ ├── button_hot.png │ │ ├── button_normal.png │ │ ├── button_pressed.png │ │ ├── checkbox_checked_disabled.png │ │ ├── checkbox_checked_hot.png │ │ ├── checkbox_checked_normal.png │ │ ├── checkbox_checked_pressed.png │ │ ├── checkbox_unchecked_disabled.png │ │ ├── checkbox_unchecked_hot.png │ │ ├── checkbox_unchecked_normal.png │ │ ├── checkbox_unchecked_pressed.png │ │ ├── radio_checked_disabled.png │ │ ├── radio_checked_hot.png │ │ ├── radio_checked_normal.png │ │ ├── radio_checked_pressed.png │ │ ├── radio_unchecked_disabled.png │ │ ├── radio_unchecked_hot.png │ │ ├── radio_unchecked_normal.png │ │ ├── radio_unchecked_pressed.png │ │ ├── scrollbar_hori_button_left_disabled_withglyph.png │ │ ├── scrollbar_hori_button_left_hot_withglyph.png │ │ ├── scrollbar_hori_button_left_normal_withglyph.png │ │ ├── scrollbar_hori_button_left_pressed_withglyph.png │ │ ├── scrollbar_hori_button_right_disabled_withglyph.png │ │ ├── scrollbar_hori_button_right_hot_withglyph.png │ │ ├── scrollbar_hori_button_right_normal_withglyph.png │ │ ├── scrollbar_hori_button_right_pressed_withglyph.png │ │ ├── scrollbar_hori_thumb_disabled.png │ │ ├── scrollbar_hori_thumb_gripper_hot.png │ │ ├── scrollbar_hori_thumb_gripper_normal.png │ │ ├── scrollbar_hori_thumb_gripper_pressed.png │ │ ├── scrollbar_hori_thumb_hot.png │ │ ├── scrollbar_hori_thumb_normal.png │ │ ├── scrollbar_hori_thumb_pressed.png │ │ ├── scrollbar_hori_track_disabled.png │ │ ├── scrollbar_hori_track_hot.png │ │ ├── scrollbar_hori_track_normal.png │ │ ├── scrollbar_hori_track_pressed.png │ │ ├── slider_horizontal_thumb_disabled.png │ │ ├── slider_horizontal_thumb_hot.png │ │ ├── slider_horizontal_thumb_normal.png │ │ ├── slider_horizontal_thumb_pressed.png │ │ └── slider_track.png │ ├── Sources │ │ ├── Controller │ │ │ ├── Application │ │ │ │ ├── application_controller.cpp │ │ │ │ └── application_controller.h │ │ │ └── MainWindow │ │ │ │ ├── main_window_controller.cpp │ │ │ │ └── main_window_controller.h │ │ ├── Model │ │ │ ├── app_model.cpp │ │ │ └── app_model.h │ │ ├── View │ │ │ ├── MainWindow │ │ │ │ └── main_window_view.h │ │ │ └── Theme │ │ │ │ ├── button_view.h │ │ │ │ ├── checkbox_view.h │ │ │ │ ├── form_view.h │ │ │ │ ├── image_view.h │ │ │ │ ├── label_view.h │ │ │ │ ├── listbox_view.h │ │ │ │ ├── radio_button_view.h │ │ │ │ ├── scroll_view.h │ │ │ │ ├── slider_view.h │ │ │ │ ├── spin_view.h │ │ │ │ ├── text_area_view.h │ │ │ │ ├── text_block_view.h │ │ │ │ └── text_field_view.h │ │ ├── precomp.cpp │ │ └── precomp.h │ ├── ThemedForm.sln │ ├── ThemedForm.vcxproj │ └── ThemedForm.vcxproj.filters └── ViewCompiler │ ├── ViewCompiler.sln │ ├── ViewCompiler.vcxproj │ ├── ViewCompiler.vcxproj.filters │ ├── main_window.h │ ├── main_window.view │ └── viewc.cpp ├── LICENSE.md ├── Projects └── Sheets │ ├── ARMPlatform.props │ ├── AndroidBuildDirectory.props │ ├── AndroidLocalIncludes.props │ ├── AndroidRuntime.props │ ├── BuildDirectory.props │ ├── DebugBuild.props │ ├── DebugBuildOptimized.props │ ├── DirectXVersion.props │ ├── DisableIntrinsics.props │ ├── LocalIncludes.props │ ├── MTDLLDebugRuntime.props │ ├── MTDLLReleaseRuntime.props │ ├── MTDebugRuntime.props │ ├── MTReleaseRuntime.props │ ├── MultiprocessorBuilding.props │ ├── ReleaseBuild.props │ ├── ReleaseWholeProgramOptimization.props │ ├── SSE2Build.props │ ├── Win32Platform.props │ ├── WindowsVersion.props │ ├── x64Platform.props │ └── x86Platform.props ├── README.md ├── Resources └── StandardShaders │ ├── color_only_fragment.hlsl │ ├── color_only_vertex.hlsl │ ├── compile_shaders.bat │ ├── path_fragment.hlsl │ ├── path_vertex.hlsl │ ├── single_texture_fragment.hlsl │ ├── single_texture_vertex.hlsl │ ├── sprite_fragment.hlsl │ └── sprite_vertex.hlsl ├── Setup ├── Unix │ ├── Makefile │ ├── Tests │ │ ├── fontconfig.cpp │ │ ├── opengl.cpp │ │ ├── sse2.cpp │ │ ├── ttf.cpp │ │ └── xrender.cpp │ ├── configure.cpp │ ├── m4 │ │ ├── clanlib.m4 │ │ ├── tls.m4 │ │ └── utils.m4 │ └── pkgconfig │ │ ├── Makefile.am │ │ ├── clanApp.pc.in │ │ ├── clanCore.pc.in │ │ ├── clanDisplay.pc.in │ │ ├── clanGL.pc.in │ │ ├── clanNetwork.pc.in │ │ ├── clanSound.pc.in │ │ └── clanUI.pc.in ├── VisualStudio │ ├── Win32 │ │ ├── Page │ │ │ ├── page_finished.cpp │ │ │ ├── page_finished.h │ │ │ ├── page_system.cpp │ │ │ ├── page_system.h │ │ │ ├── page_system2.cpp │ │ │ ├── page_system2.h │ │ │ ├── page_target.cpp │ │ │ ├── page_target.h │ │ │ ├── page_welcome.cpp │ │ │ └── page_welcome.h │ │ ├── configure.rc │ │ ├── main.cpp │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── project.cpp │ │ ├── project.h │ │ ├── res │ │ │ ├── configure.ico │ │ │ ├── configure.manifest │ │ │ └── configure.rc2 │ │ ├── resource.h │ │ ├── wizard.cpp │ │ ├── wizard.h │ │ ├── workspace.h │ │ ├── workspace_generator_msvc8.cpp │ │ └── workspace_generator_msvc8.h │ ├── configure-vc2013.sln │ ├── configure-vc2013.vcxproj │ ├── configure-vc2013.vcxproj.filters │ ├── configure-vc2015.sln │ ├── configure-vc2015.vcxproj │ ├── configure-vc2015.vcxproj.filters │ ├── configure-vc2017.sln │ ├── configure-vc2017.vcxproj │ └── configure-vc2017.vcxproj.filters └── Xcode │ ├── Makefile │ └── configure.cpp ├── Sources ├── Include │ ├── UICore │ │ ├── Application │ │ │ └── application.h │ │ ├── Core │ │ │ ├── Crypto │ │ │ │ ├── aes128_decrypt.h │ │ │ │ ├── aes128_encrypt.h │ │ │ │ ├── aes192_decrypt.h │ │ │ │ ├── aes192_encrypt.h │ │ │ │ ├── aes256_decrypt.h │ │ │ │ ├── aes256_encrypt.h │ │ │ │ ├── hash_functions.h │ │ │ │ ├── md5.h │ │ │ │ ├── random.h │ │ │ │ ├── rsa.h │ │ │ │ ├── secret.h │ │ │ │ ├── sha1.h │ │ │ │ ├── sha224.h │ │ │ │ ├── sha256.h │ │ │ │ ├── sha384.h │ │ │ │ ├── sha512.h │ │ │ │ ├── sha512_224.h │ │ │ │ ├── sha512_256.h │ │ │ │ └── tls_client.h │ │ │ ├── ErrorReporting │ │ │ │ ├── crash_reporter.h │ │ │ │ └── exception_dialog.h │ │ │ ├── IOData │ │ │ │ ├── directory.h │ │ │ │ ├── directory_scanner.h │ │ │ │ ├── endian.h │ │ │ │ ├── file.h │ │ │ │ ├── iodevice.h │ │ │ │ ├── memory_device.h │ │ │ │ └── path_help.h │ │ │ ├── Json │ │ │ │ └── json_value.h │ │ │ ├── Math │ │ │ │ ├── aabb.h │ │ │ │ ├── angle.h │ │ │ │ ├── base64_decoder.h │ │ │ │ ├── base64_encoder.h │ │ │ │ ├── big_int.h │ │ │ │ ├── circle.h │ │ │ │ ├── cl_math.h │ │ │ │ ├── color.h │ │ │ │ ├── color_hsl.h │ │ │ │ ├── color_hsv.h │ │ │ │ ├── ear_clip_triangulator.h │ │ │ │ ├── easing.h │ │ │ │ ├── frustum_planes.h │ │ │ │ ├── half_float.h │ │ │ │ ├── half_float_vector.h │ │ │ │ ├── intersection_test.h │ │ │ │ ├── line.h │ │ │ │ ├── line_math.h │ │ │ │ ├── line_ray.h │ │ │ │ ├── line_segment.h │ │ │ │ ├── mat2.h │ │ │ │ ├── mat3.h │ │ │ │ ├── mat4.h │ │ │ │ ├── obb.h │ │ │ │ ├── origin.h │ │ │ │ ├── pi.h │ │ │ │ ├── point.h │ │ │ │ ├── pointset_math.h │ │ │ │ ├── quad.h │ │ │ │ ├── quaternion.h │ │ │ │ ├── rect.h │ │ │ │ ├── rect_packer.h │ │ │ │ ├── size.h │ │ │ │ ├── triangle_math.h │ │ │ │ ├── vec2.h │ │ │ │ ├── vec3.h │ │ │ │ └── vec4.h │ │ │ ├── Signals │ │ │ │ ├── bind_member.h │ │ │ │ └── signal.h │ │ │ ├── System │ │ │ │ ├── comptr.h │ │ │ │ ├── databuffer.h │ │ │ │ ├── datetime.h │ │ │ │ ├── disposable_object.h │ │ │ │ ├── exception.h │ │ │ │ ├── registry_key.h │ │ │ │ ├── service.h │ │ │ │ ├── singleton_bugfix.h │ │ │ │ └── system.h │ │ │ ├── Text │ │ │ │ ├── string_format.h │ │ │ │ ├── text.h │ │ │ │ └── utf8_reader.h │ │ │ ├── Xml │ │ │ │ ├── xml_document.h │ │ │ │ ├── xml_node.h │ │ │ │ ├── xml_token.h │ │ │ │ ├── xml_tokenizer.h │ │ │ │ └── xml_writer.h │ │ │ └── Zip │ │ │ │ └── zlib_compression.h │ │ ├── D3D │ │ │ └── d3d_target.h │ │ ├── Display │ │ │ ├── 2D │ │ │ │ ├── brush.h │ │ │ │ ├── canvas.h │ │ │ │ ├── image.h │ │ │ │ ├── path.h │ │ │ │ ├── pen.h │ │ │ │ ├── text_block.h │ │ │ │ └── texture_group.h │ │ │ ├── Font │ │ │ │ ├── font.h │ │ │ │ ├── font_description.h │ │ │ │ ├── font_family.h │ │ │ │ ├── font_metrics.h │ │ │ │ └── glyph_metrics.h │ │ │ ├── Image │ │ │ │ ├── icon_set.h │ │ │ │ ├── image_import_description.h │ │ │ │ ├── perlin_noise.h │ │ │ │ ├── pixel_buffer.h │ │ │ │ ├── pixel_buffer_set.h │ │ │ │ ├── pixel_converter.h │ │ │ │ └── texture_format.h │ │ │ ├── ImageFormats │ │ │ │ ├── dds_format.h │ │ │ │ ├── image_file.h │ │ │ │ ├── image_file_type.h │ │ │ │ ├── image_file_type_register.h │ │ │ │ ├── jpeg_format.h │ │ │ │ ├── png_format.h │ │ │ │ ├── png_output_description.h │ │ │ │ └── targa_format.h │ │ │ ├── Render │ │ │ │ ├── blend_state_description.h │ │ │ │ ├── buffer_usage.h │ │ │ │ ├── depth_stencil_state_description.h │ │ │ │ ├── element_array_buffer.h │ │ │ │ ├── element_array_vector.h │ │ │ │ ├── frame_buffer.h │ │ │ │ ├── graphic_context.h │ │ │ │ ├── occlusion_query.h │ │ │ │ ├── primitives_array.h │ │ │ │ ├── program_object.h │ │ │ │ ├── rasterizer_state_description.h │ │ │ │ ├── render_buffer.h │ │ │ │ ├── shader_object.h │ │ │ │ ├── staging_buffer.h │ │ │ │ ├── staging_texture.h │ │ │ │ ├── staging_vector.h │ │ │ │ ├── storage_buffer.h │ │ │ │ ├── storage_vector.h │ │ │ │ ├── texture.h │ │ │ │ ├── texture_1d.h │ │ │ │ ├── texture_1d_array.h │ │ │ │ ├── texture_2d.h │ │ │ │ ├── texture_2d_array.h │ │ │ │ ├── texture_3d.h │ │ │ │ ├── texture_cube.h │ │ │ │ ├── texture_cube_array.h │ │ │ │ ├── uniform_buffer.h │ │ │ │ ├── uniform_vector.h │ │ │ │ ├── vertex_array_buffer.h │ │ │ │ └── vertex_array_vector.h │ │ │ ├── System │ │ │ │ ├── detect_hang.h │ │ │ │ ├── run_loop.h │ │ │ │ └── timer.h │ │ │ ├── Window │ │ │ │ ├── cursor.h │ │ │ │ ├── cursor_description.h │ │ │ │ ├── display_window.h │ │ │ │ ├── display_window_description.h │ │ │ │ ├── input_code.h │ │ │ │ ├── input_device.h │ │ │ │ ├── input_event.h │ │ │ │ └── keys.h │ │ │ ├── display_target.h │ │ │ └── screen_info.h │ │ ├── GL │ │ │ ├── opengl.h │ │ │ ├── opengl_context_description.h │ │ │ ├── opengl_defines.h │ │ │ ├── opengl_target.h │ │ │ └── opengl_wrap.h │ │ ├── Network │ │ │ └── Socket │ │ │ │ ├── network_condition_variable.h │ │ │ │ ├── socket_name.h │ │ │ │ ├── tcp_connection.h │ │ │ │ ├── tcp_listen.h │ │ │ │ └── udp_socket.h │ │ ├── UI │ │ │ ├── Controller │ │ │ │ ├── window_controller.h │ │ │ │ └── window_manager.h │ │ │ ├── Events │ │ │ │ ├── activation_change_event.h │ │ │ │ ├── close_event.h │ │ │ │ ├── event.h │ │ │ │ ├── focus_change_event.h │ │ │ │ ├── key_event.h │ │ │ │ ├── pointer_event.h │ │ │ │ └── resize_event.h │ │ │ ├── Image │ │ │ │ └── image_source.h │ │ │ ├── StandardViews │ │ │ │ ├── button_view.h │ │ │ │ ├── checkbox_view.h │ │ │ │ ├── image_view.h │ │ │ │ ├── label_view.h │ │ │ │ ├── layout_views.h │ │ │ │ ├── listbox_view.h │ │ │ │ ├── progress_view.h │ │ │ │ ├── radiobutton_view.h │ │ │ │ ├── scroll_view.h │ │ │ │ ├── scrollbar_view.h │ │ │ │ ├── slider_view.h │ │ │ │ ├── spin_view.h │ │ │ │ ├── text_area_view.h │ │ │ │ ├── text_block_view.h │ │ │ │ └── text_field_view.h │ │ │ ├── Style │ │ │ │ ├── style.h │ │ │ │ ├── style_cascade.h │ │ │ │ ├── style_dimension.h │ │ │ │ ├── style_get_value.h │ │ │ │ ├── style_property_parser.h │ │ │ │ ├── style_set_image.h │ │ │ │ ├── style_set_value.h │ │ │ │ ├── style_token.h │ │ │ │ ├── style_tokenizer.h │ │ │ │ └── style_value_type.h │ │ │ ├── SystemDialogs │ │ │ │ ├── folder_browse_dialog.h │ │ │ │ ├── open_file_dialog.h │ │ │ │ └── save_file_dialog.h │ │ │ ├── TopLevel │ │ │ │ ├── texture_window.h │ │ │ │ ├── top_level_window.h │ │ │ │ └── view_tree.h │ │ │ ├── UIThread │ │ │ │ └── ui_thread.h │ │ │ ├── View │ │ │ │ ├── focus_policy.h │ │ │ │ ├── view.h │ │ │ │ ├── view_action.h │ │ │ │ ├── view_event_handler.h │ │ │ │ └── view_geometry.h │ │ │ └── ViewCompiler │ │ │ │ └── view_compiler.h │ │ ├── application.h │ │ ├── core.h │ │ ├── d3d.h │ │ ├── display.h │ │ ├── gl.h │ │ ├── network.h │ │ └── ui.h │ └── uicore.h └── UICore │ ├── App │ ├── MacOS │ │ ├── application_ios.mm │ │ ├── application_osx.h │ │ └── application_osx.mm │ ├── Unix │ │ └── application.cpp │ └── Win32 │ │ └── application.cpp │ ├── Core │ ├── Crypto │ │ ├── aes128_decrypt.cpp │ │ ├── aes128_decrypt_impl.cpp │ │ ├── aes128_decrypt_impl.h │ │ ├── aes128_encrypt.cpp │ │ ├── aes128_encrypt_impl.cpp │ │ ├── aes128_encrypt_impl.h │ │ ├── aes192_decrypt.cpp │ │ ├── aes192_decrypt_impl.cpp │ │ ├── aes192_decrypt_impl.h │ │ ├── aes192_encrypt.cpp │ │ ├── aes192_encrypt_impl.cpp │ │ ├── aes192_encrypt_impl.h │ │ ├── aes256_decrypt.cpp │ │ ├── aes256_decrypt_impl.cpp │ │ ├── aes256_decrypt_impl.h │ │ ├── aes256_encrypt.cpp │ │ ├── aes256_encrypt_impl.cpp │ │ ├── aes256_encrypt_impl.h │ │ ├── aes_impl.cpp │ │ ├── aes_impl.h │ │ ├── asn1.cpp │ │ ├── asn1.h │ │ ├── hash_functions.cpp │ │ ├── md5.cpp │ │ ├── md5_impl.cpp │ │ ├── md5_impl.h │ │ ├── random.cpp │ │ ├── random_impl.cpp │ │ ├── random_impl.h │ │ ├── rsa.cpp │ │ ├── rsa_impl.cpp │ │ ├── rsa_impl.h │ │ ├── secret.cpp │ │ ├── secret_impl.cpp │ │ ├── secret_impl.h │ │ ├── sha.cpp │ │ ├── sha.h │ │ ├── sha1.cpp │ │ ├── sha1_impl.cpp │ │ ├── sha1_impl.h │ │ ├── sha224.cpp │ │ ├── sha256.cpp │ │ ├── sha256_impl.cpp │ │ ├── sha256_impl.h │ │ ├── sha384.cpp │ │ ├── sha512.cpp │ │ ├── sha512_224.cpp │ │ ├── sha512_256.cpp │ │ ├── sha512_impl.cpp │ │ ├── sha512_impl.h │ │ ├── tls_client.cpp │ │ ├── tls_client_impl.cpp │ │ ├── tls_client_impl.h │ │ ├── x509.cpp │ │ ├── x509.h │ │ ├── x509_impl.cpp │ │ └── x509_impl.h │ ├── ErrorReporting │ │ ├── crash_reporter.cpp │ │ ├── crash_reporter_impl.h │ │ ├── exception_dialog.cpp │ │ └── exception_dialog_impl.h │ ├── IOData │ │ ├── Cocoa │ │ │ └── directory_cocoa.mm │ │ ├── Unix │ │ │ ├── directory_scanner_unix.cpp │ │ │ └── directory_scanner_unix.h │ │ ├── Win32 │ │ │ ├── directory_scanner_win32.cpp │ │ │ └── directory_scanner_win32.h │ │ ├── directory.cpp │ │ ├── directory_scanner.cpp │ │ ├── directory_scanner_impl.h │ │ ├── file.cpp │ │ ├── memory_device.cpp │ │ └── path_help.cpp │ ├── Json │ │ └── json_value.cpp │ ├── Math │ │ ├── angle.cpp │ │ ├── base64_decoder.cpp │ │ ├── base64_encoder.cpp │ │ ├── big_int.cpp │ │ ├── big_int_impl.cpp │ │ ├── big_int_impl.h │ │ ├── color.cpp │ │ ├── color_hsl.cpp │ │ ├── color_hsv.cpp │ │ ├── ear_clip_triangulator.cpp │ │ ├── ear_clip_triangulator_impl.cpp │ │ ├── ear_clip_triangulator_impl.h │ │ ├── easing.cpp │ │ ├── frustum_planes.cpp │ │ ├── half_float.cpp │ │ ├── intersection_test.cpp │ │ ├── line.cpp │ │ ├── line_math.cpp │ │ ├── line_ray.cpp │ │ ├── line_segment.cpp │ │ ├── mat2.cpp │ │ ├── mat3.cpp │ │ ├── mat4.cpp │ │ ├── origin.cpp │ │ ├── pointset_math.cpp │ │ ├── quad.cpp │ │ ├── quaternion.cpp │ │ ├── rect.cpp │ │ ├── rect_packer.cpp │ │ ├── rect_packer_impl.cpp │ │ ├── rect_packer_impl.h │ │ ├── triangle_math.cpp │ │ ├── vec2.cpp │ │ ├── vec3.cpp │ │ └── vec4.cpp │ ├── System │ │ ├── Unix │ │ │ ├── service_unix.cpp │ │ │ ├── service_unix.h │ │ │ ├── system_unix.cpp │ │ │ └── system_unix.h │ │ ├── Win32 │ │ │ ├── service_win32.cpp │ │ │ ├── service_win32.h │ │ │ ├── system_win32.cpp │ │ │ └── system_win32.h │ │ ├── databuffer.cpp │ │ ├── datetime.cpp │ │ ├── detect_cpu_ext.cpp │ │ ├── disposable_object.cpp │ │ ├── exception.cpp │ │ ├── registry_key.cpp │ │ ├── service.cpp │ │ ├── service_impl.cpp │ │ ├── service_impl.h │ │ ├── setup_core.cpp │ │ ├── setup_core.h │ │ ├── singleton_bugfix.cpp │ │ └── system.cpp │ ├── Text │ │ ├── string_format.cpp │ │ ├── text.cpp │ │ └── utf8_reader.cpp │ ├── Xml │ │ ├── block_allocator.cpp │ │ ├── block_allocator.h │ │ ├── xml_document.cpp │ │ ├── xml_document_impl.h │ │ ├── xml_node.cpp │ │ ├── xml_node_impl.h │ │ ├── xml_tokenizer.cpp │ │ ├── xml_tokenizer_impl.h │ │ ├── xml_tree_node.h │ │ ├── xml_writer.cpp │ │ └── xml_writer_impl.h │ └── Zip │ │ ├── miniz.h │ │ └── zlib_compression.cpp │ ├── D3D │ ├── Shaders │ │ ├── color_only_fragment.h │ │ ├── color_only_vertex.h │ │ ├── path_fragment.h │ │ ├── path_vertex.h │ │ ├── single_texture_fragment.h │ │ ├── single_texture_vertex.h │ │ ├── sprite_fragment.h │ │ └── sprite_vertex.h │ ├── d3d_blend_state.cpp │ ├── d3d_blend_state.h │ ├── d3d_depth_stencil_state.cpp │ ├── d3d_depth_stencil_state.h │ ├── d3d_display_window.cpp │ ├── d3d_display_window.h │ ├── d3d_element_array_buffer.cpp │ ├── d3d_element_array_buffer.h │ ├── d3d_frame_buffer.cpp │ ├── d3d_frame_buffer.h │ ├── d3d_graphic_context.cpp │ ├── d3d_graphic_context.h │ ├── d3d_occlusion_query.cpp │ ├── d3d_occlusion_query.h │ ├── d3d_primitives_array.cpp │ ├── d3d_primitives_array.h │ ├── d3d_program_object.cpp │ ├── d3d_program_object.h │ ├── d3d_rasterizer_state.cpp │ ├── d3d_rasterizer_state.h │ ├── d3d_render_buffer.cpp │ ├── d3d_render_buffer.h │ ├── d3d_shader_object.cpp │ ├── d3d_shader_object.h │ ├── d3d_share_list.cpp │ ├── d3d_share_list.h │ ├── d3d_staging_buffer.cpp │ ├── d3d_staging_buffer.h │ ├── d3d_staging_texture.cpp │ ├── d3d_staging_texture.h │ ├── d3d_storage_buffer.cpp │ ├── d3d_storage_buffer.h │ ├── d3d_target.cpp │ ├── d3d_target_provider.cpp │ ├── d3d_target_provider.h │ ├── d3d_texture_data.cpp │ ├── d3d_texture_data.h │ ├── d3d_texture_object.cpp │ ├── d3d_texture_object.h │ ├── d3d_uniform_buffer.cpp │ ├── d3d_uniform_buffer.h │ ├── d3d_unit_map.cpp │ ├── d3d_unit_map.h │ ├── d3d_vertex_array_buffer.cpp │ ├── d3d_vertex_array_buffer.h │ ├── init_guids.cpp │ ├── sampler_state.cpp │ ├── sampler_state.h │ ├── setup_d3d.cpp │ ├── setup_d3d.h │ ├── setup_d3d_impl.h │ ├── standard_programs.cpp │ └── standard_programs.h │ ├── Display │ ├── 2D │ │ ├── canvas.cpp │ │ ├── canvas_batcher.cpp │ │ ├── canvas_batcher.h │ │ ├── canvas_impl.cpp │ │ ├── canvas_impl.h │ │ ├── image.cpp │ │ ├── path.cpp │ │ ├── path_fill_renderer.cpp │ │ ├── path_fill_renderer.h │ │ ├── path_impl.h │ │ ├── path_renderer.cpp │ │ ├── path_renderer.h │ │ ├── path_stroke_renderer.cpp │ │ ├── path_stroke_renderer.h │ │ ├── render_batch_buffer.cpp │ │ ├── render_batch_buffer.h │ │ ├── render_batch_line.cpp │ │ ├── render_batch_line.h │ │ ├── render_batch_line_texture.cpp │ │ ├── render_batch_line_texture.h │ │ ├── render_batch_path.cpp │ │ ├── render_batch_path.h │ │ ├── render_batch_point.cpp │ │ ├── render_batch_point.h │ │ ├── render_batch_triangle.cpp │ │ ├── render_batch_triangle.h │ │ ├── render_batcher.h │ │ ├── text_block.cpp │ │ ├── text_block_impl.cpp │ │ ├── text_block_impl.h │ │ ├── texture_group.cpp │ │ ├── texture_group_impl.cpp │ │ └── texture_group_impl.h │ ├── Font │ │ ├── FontDraw │ │ │ ├── font_draw.h │ │ │ ├── font_draw_flat.cpp │ │ │ ├── font_draw_flat.h │ │ │ ├── font_draw_path.cpp │ │ │ ├── font_draw_path.h │ │ │ ├── font_draw_scaled.cpp │ │ │ ├── font_draw_scaled.h │ │ │ ├── font_draw_subpixel.cpp │ │ │ └── font_draw_subpixel.h │ │ ├── FontEngine │ │ │ ├── font_engine.h │ │ │ ├── font_engine_cocoa.h │ │ │ ├── font_engine_cocoa.mm │ │ │ ├── font_engine_freetype.cpp │ │ │ ├── font_engine_freetype.h │ │ │ ├── font_engine_win32.cpp │ │ │ └── font_engine_win32.h │ │ ├── font.cpp │ │ ├── font_description.cpp │ │ ├── font_description_impl.h │ │ ├── font_family.cpp │ │ ├── font_family_impl.cpp │ │ ├── font_family_impl.h │ │ ├── font_impl.cpp │ │ ├── font_impl.h │ │ ├── glyph_cache.cpp │ │ ├── glyph_cache.h │ │ ├── path_cache.cpp │ │ └── path_cache.h │ ├── Image │ │ ├── cpu_pixel_buffer_provider.cpp │ │ ├── cpu_pixel_buffer_provider.h │ │ ├── icon_set.cpp │ │ ├── image_import_description.cpp │ │ ├── image_import_description_impl.h │ │ ├── perlin_noise.cpp │ │ ├── pixel_buffer.cpp │ │ ├── pixel_buffer_set.cpp │ │ ├── pixel_converter.cpp │ │ ├── pixel_converter_impl.h │ │ ├── pixel_filter_gamma.h │ │ ├── pixel_filter_premultiply_alpha.h │ │ ├── pixel_filter_rgb_to_ycrcb.h │ │ ├── pixel_filter_swizzle.h │ │ ├── pixel_reader_cast.h │ │ ├── pixel_reader_half_float.h │ │ ├── pixel_reader_norm.h │ │ ├── pixel_reader_special.h │ │ ├── pixel_reader_sse.h │ │ ├── pixel_writer_cast.h │ │ ├── pixel_writer_half_float.h │ │ ├── pixel_writer_norm.h │ │ ├── pixel_writer_special.h │ │ └── pixel_writer_sse.h │ ├── ImageFormats │ │ ├── JPEGLoader │ │ │ ├── jpeg_bit_reader.cpp │ │ │ ├── jpeg_bit_reader.h │ │ │ ├── jpeg_component_dcts.h │ │ │ ├── jpeg_define_huffman_table.h │ │ │ ├── jpeg_define_quantization_table.h │ │ │ ├── jpeg_file_reader.cpp │ │ │ ├── jpeg_file_reader.h │ │ │ ├── jpeg_huffman_decoder.cpp │ │ │ ├── jpeg_huffman_decoder.h │ │ │ ├── jpeg_loader.cpp │ │ │ ├── jpeg_loader.h │ │ │ ├── jpeg_markers.h │ │ │ ├── jpeg_mcu_decoder.cpp │ │ │ ├── jpeg_mcu_decoder.h │ │ │ ├── jpeg_rgb_decoder.cpp │ │ │ ├── jpeg_rgb_decoder.h │ │ │ ├── jpeg_start_of_frame.h │ │ │ └── jpeg_start_of_scan.h │ │ ├── JPEGWriter │ │ │ ├── jpge.cpp │ │ │ └── jpge.h │ │ ├── PNGLoader │ │ │ ├── png_loader.cpp │ │ │ └── png_loader.h │ │ ├── PNGWriter │ │ │ ├── png_writer.cpp │ │ │ └── png_writer.h │ │ ├── TargaLoader │ │ │ ├── targa_loader.cpp │ │ │ └── targa_loader.h │ │ ├── dds_format.cpp │ │ ├── image_file.cpp │ │ ├── image_file_type.cpp │ │ ├── jpeg_format.cpp │ │ ├── png_format.cpp │ │ ├── png_output_description.cpp │ │ └── targa_format.cpp │ ├── Platform │ │ ├── Cocoa │ │ │ ├── display_message_queue_cocoa.h │ │ │ └── display_message_queue_cocoa.mm │ │ ├── Win32 │ │ │ ├── cursor_provider_win32.cpp │ │ │ ├── cursor_provider_win32.h │ │ │ ├── display_message_queue_win32.cpp │ │ │ ├── display_message_queue_win32.h │ │ │ ├── dwm_functions.cpp │ │ │ ├── dwm_functions.h │ │ │ ├── hid.cpp │ │ │ ├── hid.h │ │ │ ├── input_device_provider_win32hid.cpp │ │ │ ├── input_device_provider_win32hid.h │ │ │ ├── input_device_provider_win32keyboard.cpp │ │ │ ├── input_device_provider_win32keyboard.h │ │ │ ├── input_device_provider_win32mouse.cpp │ │ │ ├── input_device_provider_win32mouse.h │ │ │ ├── screen_info_provider_win32.cpp │ │ │ ├── screen_info_provider_win32.h │ │ │ ├── win32_window.cpp │ │ │ └── win32_window.h │ │ └── X11 │ │ │ ├── WMSupport.md │ │ │ ├── clipboard_x11.cpp │ │ │ ├── clipboard_x11.h │ │ │ ├── cursor_provider_x11.cpp │ │ │ ├── cursor_provider_x11.h │ │ │ ├── display_message_queue_x11.cpp │ │ │ ├── display_message_queue_x11.h │ │ │ ├── font_config.cpp │ │ │ ├── font_config.h │ │ │ ├── input_device_provider_linuxjoystick.cpp │ │ │ ├── input_device_provider_linuxjoystick.h │ │ │ ├── input_device_provider_x11keyboard.cpp │ │ │ ├── input_device_provider_x11keyboard.h │ │ │ ├── input_device_provider_x11mouse.cpp │ │ │ ├── input_device_provider_x11mouse.h │ │ │ ├── x11_atoms.cpp │ │ │ ├── x11_atoms.h │ │ │ ├── x11_window.cpp │ │ │ └── x11_window.h │ ├── Render │ │ ├── blend_state_description.cpp │ │ ├── depth_stencil_state_description.cpp │ │ ├── element_array_buffer.cpp │ │ ├── frame_buffer.cpp │ │ ├── graphic_context_impl.h │ │ ├── occlusion_query.cpp │ │ ├── primitives_array.cpp │ │ ├── primitives_array_impl.h │ │ ├── program_object.cpp │ │ ├── program_object_impl.h │ │ ├── rasterizer_state_description.cpp │ │ ├── render_buffer.cpp │ │ ├── shader_object.cpp │ │ ├── shader_object_impl.h │ │ ├── staging_buffer.cpp │ │ ├── staging_texture.cpp │ │ ├── storage_buffer.cpp │ │ ├── texture.cpp │ │ ├── texture_1d.cpp │ │ ├── texture_1d_array.cpp │ │ ├── texture_2d.cpp │ │ ├── texture_2d_array.cpp │ │ ├── texture_3d.cpp │ │ ├── texture_cube.cpp │ │ ├── texture_cube_array.cpp │ │ ├── texture_impl.h │ │ ├── uniform_buffer.cpp │ │ └── vertex_array_buffer.cpp │ ├── System │ │ ├── detect_hang.cpp │ │ ├── run_loop.cpp │ │ ├── run_loop_impl.h │ │ └── timer.cpp │ ├── Window │ │ ├── cursor.cpp │ │ ├── cursor_description.cpp │ │ ├── cursor_description_impl.h │ │ ├── display_window.cpp │ │ ├── display_window_description.cpp │ │ ├── display_window_description_impl.h │ │ ├── display_window_provider.h │ │ ├── input_device_provider.h │ │ └── keys.cpp │ ├── display_target.cpp │ ├── display_target_provider.h │ ├── screen_info.cpp │ ├── screen_info_provider.h │ ├── setup_display.cpp │ └── setup_display.h │ ├── GL │ ├── GL1 │ │ ├── gl1_frame_buffer.cpp │ │ ├── gl1_frame_buffer.h │ │ ├── gl1_graphic_context.cpp │ │ ├── gl1_graphic_context.h │ │ ├── gl1_primitives_array.cpp │ │ ├── gl1_primitives_array.h │ │ ├── gl1_program_object.cpp │ │ ├── gl1_program_object.h │ │ ├── gl1_render_buffer.cpp │ │ ├── gl1_render_buffer.h │ │ ├── gl1_staging_buffer.cpp │ │ ├── gl1_staging_buffer.h │ │ ├── gl1_texture_object.cpp │ │ ├── gl1_texture_object.h │ │ ├── gl1_uniform_buffer.cpp │ │ ├── gl1_uniform_buffer.h │ │ ├── gl1_vertex_array_buffer.cpp │ │ ├── gl1_vertex_array_buffer.h │ │ ├── pbuffer.cpp │ │ └── pbuffer.h │ ├── GL3 │ │ ├── gl3_buffer_object.cpp │ │ ├── gl3_buffer_object.h │ │ ├── gl3_element_array_buffer.cpp │ │ ├── gl3_element_array_buffer.h │ │ ├── gl3_frame_buffer.cpp │ │ ├── gl3_frame_buffer.h │ │ ├── gl3_graphic_context.cpp │ │ ├── gl3_graphic_context.h │ │ ├── gl3_occlusion_query.cpp │ │ ├── gl3_occlusion_query.h │ │ ├── gl3_primitives_array.cpp │ │ ├── gl3_primitives_array.h │ │ ├── gl3_program_object.cpp │ │ ├── gl3_program_object.h │ │ ├── gl3_render_buffer.cpp │ │ ├── gl3_render_buffer.h │ │ ├── gl3_shader_object.cpp │ │ ├── gl3_shader_object.h │ │ ├── gl3_staging_buffer.cpp │ │ ├── gl3_staging_buffer.h │ │ ├── gl3_staging_texture.cpp │ │ ├── gl3_staging_texture.h │ │ ├── gl3_standard_programs.cpp │ │ ├── gl3_standard_programs.h │ │ ├── gl3_storage_buffer.cpp │ │ ├── gl3_storage_buffer.h │ │ ├── gl3_texture_object.cpp │ │ ├── gl3_texture_object.h │ │ ├── gl3_uniform_buffer.cpp │ │ ├── gl3_uniform_buffer.h │ │ ├── gl3_vertex_array_buffer.cpp │ │ └── gl3_vertex_array_buffer.h │ ├── Platform │ │ ├── AGL │ │ │ ├── cocoa_controller.h │ │ │ ├── cocoa_controller.mm │ │ │ ├── cocoa_mouse_input_device_provider.cpp │ │ │ ├── cocoa_mouse_input_device_provider.h │ │ │ ├── cocoa_view.h │ │ │ ├── cocoa_view.mm │ │ │ ├── cocoa_window.h │ │ │ ├── cocoa_window.mm │ │ │ ├── opengl_window_provider_agl.h │ │ │ └── opengl_window_provider_agl.mm │ │ ├── Android │ │ │ ├── opengl_window_provider_android.cpp │ │ │ ├── opengl_window_provider_android.h │ │ │ ├── pbuffer_impl.cpp │ │ │ └── pbuffer_impl.h │ │ ├── GLX │ │ │ ├── opengl_window_provider_glx.cpp │ │ │ ├── opengl_window_provider_glx.h │ │ │ ├── pbuffer_impl.cpp │ │ │ └── pbuffer_impl.h │ │ ├── OSX │ │ │ ├── cocoa_view.h │ │ │ ├── cocoa_view.mm │ │ │ ├── cocoa_window.h │ │ │ ├── cocoa_window.mm │ │ │ ├── input_device_provider_osxkeyboard.h │ │ │ ├── input_device_provider_osxkeyboard.mm │ │ │ ├── input_device_provider_osxmouse.h │ │ │ ├── input_device_provider_osxmouse.mm │ │ │ ├── opengl_window_provider_osx.h │ │ │ ├── opengl_window_provider_osx.mm │ │ │ └── opengl_window_provider_osx_impl.h │ │ └── WGL │ │ │ ├── opengl_creation_helper.cpp │ │ │ ├── opengl_creation_helper.h │ │ │ ├── opengl_window_provider_wgl.cpp │ │ │ ├── opengl_window_provider_wgl.h │ │ │ ├── pbuffer_impl.cpp │ │ │ └── pbuffer_impl.h │ ├── State │ │ ├── opengl_blend_state.cpp │ │ ├── opengl_blend_state.h │ │ ├── opengl_depth_stencil_state.cpp │ │ ├── opengl_depth_stencil_state.h │ │ ├── opengl_rasterizer_state.cpp │ │ └── opengl_rasterizer_state.h │ ├── gl_share_list.cpp │ ├── gl_share_list.h │ ├── opengl.cpp │ ├── opengl_context_description.cpp │ ├── opengl_context_description_impl.h │ ├── opengl_graphic_context_provider.h │ ├── opengl_target.cpp │ ├── opengl_target_provider.cpp │ ├── opengl_target_provider.h │ ├── setup_gl.cpp │ ├── setup_gl.h │ └── setup_gl_impl.h │ ├── Network │ ├── Socket │ │ ├── network_condition_variable.cpp │ │ ├── socket_error.cpp │ │ ├── socket_error.h │ │ ├── socket_name.cpp │ │ ├── tcp_connection.cpp │ │ ├── tcp_listen.cpp │ │ ├── tcp_socket.h │ │ └── udp_socket.cpp │ ├── setupnetwork.h │ ├── setupnetwork_unix.cpp │ └── setupnetwork_win32.cpp │ ├── UI │ ├── Animation │ │ ├── animation.h │ │ └── animation_group.h │ ├── Controller │ │ └── window_manager.cpp │ ├── Events │ │ ├── key_event.cpp │ │ └── pointer_event.cpp │ ├── Image │ │ └── image_source.cpp │ ├── StandardViews │ │ ├── ButtonView │ │ │ ├── button_view.cpp │ │ │ ├── button_view_impl.cpp │ │ │ └── button_view_impl.h │ │ ├── CheckBoxView │ │ │ ├── checkbox_view.cpp │ │ │ ├── checkbox_view_impl.cpp │ │ │ └── checkbox_view_impl.h │ │ ├── ListBoxView │ │ │ ├── listbox_view.cpp │ │ │ ├── listbox_view_impl.cpp │ │ │ └── listbox_view_impl.h │ │ ├── RadioButtonView │ │ │ ├── radiobutton_view.cpp │ │ │ ├── radiobutton_view_impl.cpp │ │ │ └── radiobutton_view_impl.h │ │ ├── ScrollBarView │ │ │ ├── scrollbar_view.cpp │ │ │ ├── scrollbar_view_impl.cpp │ │ │ └── scrollbar_view_impl.h │ │ ├── SliderView │ │ │ ├── slider_view.cpp │ │ │ ├── slider_view_impl.cpp │ │ │ └── slider_view_impl.h │ │ ├── SpinView │ │ │ ├── spin_view.cpp │ │ │ ├── spin_view_impl.cpp │ │ │ └── spin_view_impl.h │ │ ├── TextAreaView │ │ │ ├── text_area_view.cpp │ │ │ └── text_area_view_impl.h │ │ ├── TextBlockView │ │ │ ├── text_block_view.cpp │ │ │ ├── text_block_view_impl.cpp │ │ │ └── text_block_view_impl.h │ │ ├── TextFieldView │ │ │ ├── text_field_view.cpp │ │ │ └── text_field_view_impl.h │ │ ├── image_view.cpp │ │ ├── label_view.cpp │ │ └── scroll_view.cpp │ ├── Style │ │ ├── Properties │ │ │ ├── background.cpp │ │ │ ├── background.h │ │ │ ├── border.cpp │ │ │ ├── border.h │ │ │ ├── border_image.cpp │ │ │ ├── border_image.h │ │ │ ├── box_shadow.cpp │ │ │ ├── box_shadow.h │ │ │ ├── content.cpp │ │ │ ├── content.h │ │ │ ├── flex.cpp │ │ │ ├── flex.h │ │ │ ├── layout.cpp │ │ │ ├── layout.h │ │ │ ├── margin.cpp │ │ │ ├── margin.h │ │ │ ├── outline.cpp │ │ │ ├── outline.h │ │ │ ├── padding.cpp │ │ │ ├── padding.h │ │ │ ├── text_and_font.cpp │ │ │ └── text_and_font.h │ │ ├── style.cpp │ │ ├── style_background_renderer.cpp │ │ ├── style_background_renderer.h │ │ ├── style_border_image_renderer.cpp │ │ ├── style_border_image_renderer.h │ │ ├── style_cascade.cpp │ │ ├── style_impl.cpp │ │ ├── style_impl.h │ │ ├── style_property_parser.cpp │ │ ├── style_tokenizer.cpp │ │ ├── style_tokenizer_impl.cpp │ │ └── style_tokenizer_impl.h │ ├── SystemDialogs │ │ ├── file_dialog_impl.h │ │ ├── folder_browse_dialog.cpp │ │ ├── open_file_dialog.cpp │ │ └── save_file_dialog.cpp │ ├── TopLevel │ │ ├── TextureWindow │ │ │ ├── texture_window.cpp │ │ │ ├── texture_window_impl.cpp │ │ │ └── texture_window_impl.h │ │ ├── TopLevelWindow │ │ │ ├── top_level_window.cpp │ │ │ ├── top_level_window_impl.cpp │ │ │ └── top_level_window_impl.h │ │ └── view_tree.cpp │ ├── UIThread │ │ └── ui_thread.cpp │ ├── View │ │ ├── custom_layout.h │ │ ├── flex_layout.cpp │ │ ├── flex_layout.h │ │ ├── positioned_layout.cpp │ │ ├── positioned_layout.h │ │ ├── view.cpp │ │ ├── view_action.cpp │ │ ├── view_action_impl.h │ │ ├── view_geometry.cpp │ │ ├── view_impl.h │ │ └── view_layout.h │ └── ViewCompiler │ │ ├── view_compiler.cpp │ │ └── view_compiler_impl.h │ ├── precomp.cpp │ └── precomp.h ├── Tests ├── Sources │ ├── border_test.cpp │ ├── border_test.h │ ├── precomp.cpp │ ├── precomp.h │ └── test_main.cpp ├── UITest.sln └── UITest.vcxproj ├── configure └── configure.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Documentation/Doxyfile -------------------------------------------------------------------------------- /Documentation/Doxygen/doxygen-extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Documentation/Doxygen/doxygen-extra.css -------------------------------------------------------------------------------- /Documentation/Doxygen/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Documentation/Doxygen/doxygen.css -------------------------------------------------------------------------------- /Documentation/Doxygen/footer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Documentation/Doxygen/footer.txt -------------------------------------------------------------------------------- /Documentation/Doxygen/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Documentation/Doxygen/header.txt -------------------------------------------------------------------------------- /Documentation/Overview/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Documentation/Overview/core.h -------------------------------------------------------------------------------- /Documentation/Overview/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Documentation/Overview/display.h -------------------------------------------------------------------------------- /Documentation/Overview/main-page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Documentation/Overview/main-page.h -------------------------------------------------------------------------------- /Documentation/Overview/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Documentation/Overview/network.h -------------------------------------------------------------------------------- /Documentation/Overview/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Documentation/Overview/ui.h -------------------------------------------------------------------------------- /Examples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Cube/Cube.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/Cube/Cube.sln -------------------------------------------------------------------------------- /Examples/Cube/Cube.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/Cube/Cube.vcxproj -------------------------------------------------------------------------------- /Examples/Cube/Cube.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/Cube/Cube.vcxproj.filters -------------------------------------------------------------------------------- /Examples/Cube/Resources/cube_fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/Cube/Resources/cube_fragment.glsl -------------------------------------------------------------------------------- /Examples/Cube/Resources/cube_vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/Cube/Resources/cube_vertex.glsl -------------------------------------------------------------------------------- /Examples/Cube/Sources/Model/app_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/Cube/Sources/Model/app_model.cpp -------------------------------------------------------------------------------- /Examples/Cube/Sources/Model/app_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/Cube/Sources/Model/app_model.h -------------------------------------------------------------------------------- /Examples/Cube/Sources/View/Cube/cube_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/Cube/Sources/View/Cube/cube_view.cpp -------------------------------------------------------------------------------- /Examples/Cube/Sources/View/Cube/cube_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/Cube/Sources/View/Cube/cube_view.h -------------------------------------------------------------------------------- /Examples/Cube/Sources/precomp.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "precomp.h" 3 | -------------------------------------------------------------------------------- /Examples/Cube/Sources/precomp.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | #include 5 | -------------------------------------------------------------------------------- /Examples/FlexCheatSheet/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexCheatSheet/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/FlexCheatSheet/FlexCheatSheet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexCheatSheet/FlexCheatSheet.sln -------------------------------------------------------------------------------- /Examples/FlexCheatSheet/FlexCheatSheet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexCheatSheet/FlexCheatSheet.vcxproj -------------------------------------------------------------------------------- /Examples/FlexCheatSheet/FlexCheatSheet.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexCheatSheet/FlexCheatSheet.vcxproj.filters -------------------------------------------------------------------------------- /Examples/FlexCheatSheet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexCheatSheet/Info.plist -------------------------------------------------------------------------------- /Examples/FlexCheatSheet/Sources/Model/app_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexCheatSheet/Sources/Model/app_model.cpp -------------------------------------------------------------------------------- /Examples/FlexCheatSheet/Sources/Model/app_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexCheatSheet/Sources/Model/app_model.h -------------------------------------------------------------------------------- /Examples/FlexCheatSheet/Sources/precomp.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "precomp.h" 3 | -------------------------------------------------------------------------------- /Examples/FlexCheatSheet/Sources/precomp.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | #include 5 | -------------------------------------------------------------------------------- /Examples/FlexTable/FlexTable-vc2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexTable/FlexTable-vc2017.sln -------------------------------------------------------------------------------- /Examples/FlexTable/FlexTable-vc2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexTable/FlexTable-vc2017.vcxproj -------------------------------------------------------------------------------- /Examples/FlexTable/Sources/flextable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexTable/Sources/flextable.cpp -------------------------------------------------------------------------------- /Examples/FlexTable/Sources/flextable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexTable/Sources/flextable.h -------------------------------------------------------------------------------- /Examples/FlexTable/Sources/precomp.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "precomp.h" 3 | -------------------------------------------------------------------------------- /Examples/FlexTable/Sources/precomp.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /Examples/FlexTable/flex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/FlexTable/flex.html -------------------------------------------------------------------------------- /Examples/SvgViewer/Resources/holidays.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Resources/holidays.svg -------------------------------------------------------------------------------- /Examples/SvgViewer/Resources/like3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Resources/like3.svg -------------------------------------------------------------------------------- /Examples/SvgViewer/Resources/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Resources/tiger.svg -------------------------------------------------------------------------------- /Examples/SvgViewer/Sources/Model/Svg/svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Sources/Model/Svg/svg.cpp -------------------------------------------------------------------------------- /Examples/SvgViewer/Sources/Model/Svg/svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Sources/Model/Svg/svg.h -------------------------------------------------------------------------------- /Examples/SvgViewer/Sources/Model/Svg/svg_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Sources/Model/Svg/svg_tree.cpp -------------------------------------------------------------------------------- /Examples/SvgViewer/Sources/Model/Svg/svg_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Sources/Model/Svg/svg_tree.h -------------------------------------------------------------------------------- /Examples/SvgViewer/Sources/Model/app_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Sources/Model/app_model.cpp -------------------------------------------------------------------------------- /Examples/SvgViewer/Sources/Model/app_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Sources/Model/app_model.h -------------------------------------------------------------------------------- /Examples/SvgViewer/Sources/View/Svg/svg_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Sources/View/Svg/svg_view.cpp -------------------------------------------------------------------------------- /Examples/SvgViewer/Sources/View/Svg/svg_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/Sources/View/Svg/svg_view.h -------------------------------------------------------------------------------- /Examples/SvgViewer/Sources/precomp.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "precomp.h" 3 | -------------------------------------------------------------------------------- /Examples/SvgViewer/Sources/precomp.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | #include 5 | -------------------------------------------------------------------------------- /Examples/SvgViewer/SvgViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/SvgViewer.sln -------------------------------------------------------------------------------- /Examples/SvgViewer/SvgViewer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/SvgViewer.vcxproj -------------------------------------------------------------------------------- /Examples/SvgViewer/SvgViewer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/SvgViewer/SvgViewer.vcxproj.filters -------------------------------------------------------------------------------- /Examples/ThemedForm/Resources/button_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Resources/button_disabled.png -------------------------------------------------------------------------------- /Examples/ThemedForm/Resources/button_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Resources/button_hot.png -------------------------------------------------------------------------------- /Examples/ThemedForm/Resources/button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Resources/button_normal.png -------------------------------------------------------------------------------- /Examples/ThemedForm/Resources/button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Resources/button_pressed.png -------------------------------------------------------------------------------- /Examples/ThemedForm/Resources/checkbox_checked_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Resources/checkbox_checked_hot.png -------------------------------------------------------------------------------- /Examples/ThemedForm/Resources/radio_checked_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Resources/radio_checked_hot.png -------------------------------------------------------------------------------- /Examples/ThemedForm/Resources/radio_checked_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Resources/radio_checked_normal.png -------------------------------------------------------------------------------- /Examples/ThemedForm/Resources/radio_unchecked_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Resources/radio_unchecked_hot.png -------------------------------------------------------------------------------- /Examples/ThemedForm/Resources/slider_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Resources/slider_track.png -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/Model/app_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/Model/app_model.cpp -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/Model/app_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/Model/app_model.h -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/View/Theme/button_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/View/Theme/button_view.h -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/View/Theme/checkbox_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/View/Theme/checkbox_view.h -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/View/Theme/form_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/View/Theme/form_view.h -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/View/Theme/image_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/View/Theme/image_view.h -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/View/Theme/label_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/View/Theme/label_view.h -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/View/Theme/listbox_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/View/Theme/listbox_view.h -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/View/Theme/scroll_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/View/Theme/scroll_view.h -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/View/Theme/slider_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/View/Theme/slider_view.h -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/View/Theme/spin_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/Sources/View/Theme/spin_view.h -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/precomp.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "precomp.h" 3 | -------------------------------------------------------------------------------- /Examples/ThemedForm/Sources/precomp.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | #include 5 | -------------------------------------------------------------------------------- /Examples/ThemedForm/ThemedForm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/ThemedForm.sln -------------------------------------------------------------------------------- /Examples/ThemedForm/ThemedForm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/ThemedForm.vcxproj -------------------------------------------------------------------------------- /Examples/ThemedForm/ThemedForm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ThemedForm/ThemedForm.vcxproj.filters -------------------------------------------------------------------------------- /Examples/ViewCompiler/ViewCompiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ViewCompiler/ViewCompiler.sln -------------------------------------------------------------------------------- /Examples/ViewCompiler/ViewCompiler.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ViewCompiler/ViewCompiler.vcxproj -------------------------------------------------------------------------------- /Examples/ViewCompiler/ViewCompiler.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ViewCompiler/ViewCompiler.vcxproj.filters -------------------------------------------------------------------------------- /Examples/ViewCompiler/main_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ViewCompiler/main_window.h -------------------------------------------------------------------------------- /Examples/ViewCompiler/main_window.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ViewCompiler/main_window.view -------------------------------------------------------------------------------- /Examples/ViewCompiler/viewc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Examples/ViewCompiler/viewc.cpp -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Projects/Sheets/ARMPlatform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/ARMPlatform.props -------------------------------------------------------------------------------- /Projects/Sheets/AndroidBuildDirectory.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/AndroidBuildDirectory.props -------------------------------------------------------------------------------- /Projects/Sheets/AndroidLocalIncludes.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/AndroidLocalIncludes.props -------------------------------------------------------------------------------- /Projects/Sheets/AndroidRuntime.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/AndroidRuntime.props -------------------------------------------------------------------------------- /Projects/Sheets/BuildDirectory.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/BuildDirectory.props -------------------------------------------------------------------------------- /Projects/Sheets/DebugBuild.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/DebugBuild.props -------------------------------------------------------------------------------- /Projects/Sheets/DebugBuildOptimized.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/DebugBuildOptimized.props -------------------------------------------------------------------------------- /Projects/Sheets/DirectXVersion.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/DirectXVersion.props -------------------------------------------------------------------------------- /Projects/Sheets/DisableIntrinsics.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/DisableIntrinsics.props -------------------------------------------------------------------------------- /Projects/Sheets/LocalIncludes.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/LocalIncludes.props -------------------------------------------------------------------------------- /Projects/Sheets/MTDLLDebugRuntime.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/MTDLLDebugRuntime.props -------------------------------------------------------------------------------- /Projects/Sheets/MTDLLReleaseRuntime.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/MTDLLReleaseRuntime.props -------------------------------------------------------------------------------- /Projects/Sheets/MTDebugRuntime.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/MTDebugRuntime.props -------------------------------------------------------------------------------- /Projects/Sheets/MTReleaseRuntime.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/MTReleaseRuntime.props -------------------------------------------------------------------------------- /Projects/Sheets/MultiprocessorBuilding.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/MultiprocessorBuilding.props -------------------------------------------------------------------------------- /Projects/Sheets/ReleaseBuild.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/ReleaseBuild.props -------------------------------------------------------------------------------- /Projects/Sheets/ReleaseWholeProgramOptimization.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/ReleaseWholeProgramOptimization.props -------------------------------------------------------------------------------- /Projects/Sheets/SSE2Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/SSE2Build.props -------------------------------------------------------------------------------- /Projects/Sheets/Win32Platform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/Win32Platform.props -------------------------------------------------------------------------------- /Projects/Sheets/WindowsVersion.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/WindowsVersion.props -------------------------------------------------------------------------------- /Projects/Sheets/x64Platform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/x64Platform.props -------------------------------------------------------------------------------- /Projects/Sheets/x86Platform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Projects/Sheets/x86Platform.props -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/README.md -------------------------------------------------------------------------------- /Resources/StandardShaders/color_only_fragment.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Resources/StandardShaders/color_only_fragment.hlsl -------------------------------------------------------------------------------- /Resources/StandardShaders/color_only_vertex.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Resources/StandardShaders/color_only_vertex.hlsl -------------------------------------------------------------------------------- /Resources/StandardShaders/compile_shaders.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Resources/StandardShaders/compile_shaders.bat -------------------------------------------------------------------------------- /Resources/StandardShaders/path_fragment.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Resources/StandardShaders/path_fragment.hlsl -------------------------------------------------------------------------------- /Resources/StandardShaders/path_vertex.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Resources/StandardShaders/path_vertex.hlsl -------------------------------------------------------------------------------- /Resources/StandardShaders/single_texture_fragment.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Resources/StandardShaders/single_texture_fragment.hlsl -------------------------------------------------------------------------------- /Resources/StandardShaders/single_texture_vertex.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Resources/StandardShaders/single_texture_vertex.hlsl -------------------------------------------------------------------------------- /Resources/StandardShaders/sprite_fragment.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Resources/StandardShaders/sprite_fragment.hlsl -------------------------------------------------------------------------------- /Resources/StandardShaders/sprite_vertex.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Resources/StandardShaders/sprite_vertex.hlsl -------------------------------------------------------------------------------- /Setup/Unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/Makefile -------------------------------------------------------------------------------- /Setup/Unix/Tests/fontconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/Tests/fontconfig.cpp -------------------------------------------------------------------------------- /Setup/Unix/Tests/opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/Tests/opengl.cpp -------------------------------------------------------------------------------- /Setup/Unix/Tests/sse2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/Tests/sse2.cpp -------------------------------------------------------------------------------- /Setup/Unix/Tests/ttf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/Tests/ttf.cpp -------------------------------------------------------------------------------- /Setup/Unix/Tests/xrender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/Tests/xrender.cpp -------------------------------------------------------------------------------- /Setup/Unix/configure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/configure.cpp -------------------------------------------------------------------------------- /Setup/Unix/m4/clanlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/m4/clanlib.m4 -------------------------------------------------------------------------------- /Setup/Unix/m4/tls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/m4/tls.m4 -------------------------------------------------------------------------------- /Setup/Unix/m4/utils.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/m4/utils.m4 -------------------------------------------------------------------------------- /Setup/Unix/pkgconfig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/pkgconfig/Makefile.am -------------------------------------------------------------------------------- /Setup/Unix/pkgconfig/clanApp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/pkgconfig/clanApp.pc.in -------------------------------------------------------------------------------- /Setup/Unix/pkgconfig/clanCore.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/pkgconfig/clanCore.pc.in -------------------------------------------------------------------------------- /Setup/Unix/pkgconfig/clanDisplay.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/pkgconfig/clanDisplay.pc.in -------------------------------------------------------------------------------- /Setup/Unix/pkgconfig/clanGL.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/pkgconfig/clanGL.pc.in -------------------------------------------------------------------------------- /Setup/Unix/pkgconfig/clanNetwork.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/pkgconfig/clanNetwork.pc.in -------------------------------------------------------------------------------- /Setup/Unix/pkgconfig/clanSound.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/pkgconfig/clanSound.pc.in -------------------------------------------------------------------------------- /Setup/Unix/pkgconfig/clanUI.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Unix/pkgconfig/clanUI.pc.in -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/Page/page_finished.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/Page/page_finished.cpp -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/Page/page_finished.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/Page/page_finished.h -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/Page/page_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/Page/page_system.cpp -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/Page/page_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/Page/page_system.h -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/Page/page_system2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/Page/page_system2.cpp -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/Page/page_system2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/Page/page_system2.h -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/Page/page_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/Page/page_target.cpp -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/Page/page_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/Page/page_target.h -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/Page/page_welcome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/Page/page_welcome.cpp -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/Page/page_welcome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/Page/page_welcome.h -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/configure.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/configure.rc -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/main.cpp -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/precomp.cpp -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/precomp.h -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/project.cpp -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/project.h -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/res/configure.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/res/configure.ico -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/res/configure.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/res/configure.manifest -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/res/configure.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/res/configure.rc2 -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/resource.h -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/wizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/wizard.cpp -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/wizard.h -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/workspace.h -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/workspace_generator_msvc8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/workspace_generator_msvc8.cpp -------------------------------------------------------------------------------- /Setup/VisualStudio/Win32/workspace_generator_msvc8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/Win32/workspace_generator_msvc8.h -------------------------------------------------------------------------------- /Setup/VisualStudio/configure-vc2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/configure-vc2013.sln -------------------------------------------------------------------------------- /Setup/VisualStudio/configure-vc2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/configure-vc2013.vcxproj -------------------------------------------------------------------------------- /Setup/VisualStudio/configure-vc2013.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/configure-vc2013.vcxproj.filters -------------------------------------------------------------------------------- /Setup/VisualStudio/configure-vc2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/configure-vc2015.sln -------------------------------------------------------------------------------- /Setup/VisualStudio/configure-vc2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/configure-vc2015.vcxproj -------------------------------------------------------------------------------- /Setup/VisualStudio/configure-vc2015.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/configure-vc2015.vcxproj.filters -------------------------------------------------------------------------------- /Setup/VisualStudio/configure-vc2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/configure-vc2017.sln -------------------------------------------------------------------------------- /Setup/VisualStudio/configure-vc2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/configure-vc2017.vcxproj -------------------------------------------------------------------------------- /Setup/VisualStudio/configure-vc2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/VisualStudio/configure-vc2017.vcxproj.filters -------------------------------------------------------------------------------- /Setup/Xcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Xcode/Makefile -------------------------------------------------------------------------------- /Setup/Xcode/configure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Setup/Xcode/configure.cpp -------------------------------------------------------------------------------- /Sources/Include/UICore/Application/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Application/application.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/aes128_decrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/aes128_decrypt.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/aes128_encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/aes128_encrypt.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/aes192_decrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/aes192_decrypt.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/aes192_encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/aes192_encrypt.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/aes256_decrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/aes256_decrypt.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/aes256_encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/aes256_encrypt.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/hash_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/hash_functions.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/md5.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/random.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/rsa.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/secret.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/secret.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/sha1.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/sha224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/sha224.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/sha256.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/sha384.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/sha384.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/sha512.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/sha512_224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/sha512_224.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/sha512_256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/sha512_256.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Crypto/tls_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Crypto/tls_client.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/IOData/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/IOData/directory.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/IOData/directory_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/IOData/directory_scanner.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/IOData/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/IOData/endian.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/IOData/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/IOData/file.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/IOData/iodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/IOData/iodevice.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/IOData/memory_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/IOData/memory_device.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/IOData/path_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/IOData/path_help.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Json/json_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Json/json_value.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/aabb.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/angle.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/base64_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/base64_decoder.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/base64_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/base64_encoder.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/big_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/big_int.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/circle.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/cl_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/cl_math.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/color.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/color_hsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/color_hsl.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/color_hsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/color_hsv.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/easing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/easing.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/frustum_planes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/frustum_planes.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/half_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/half_float.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/half_float_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/half_float_vector.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/intersection_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/intersection_test.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/line.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/line_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/line_math.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/line_ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/line_ray.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/line_segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/line_segment.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/mat2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/mat2.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/mat3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/mat3.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/mat4.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/obb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/obb.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/origin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/origin.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/pi.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/point.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/pointset_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/pointset_math.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/quad.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/quaternion.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/rect.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/rect_packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/rect_packer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/size.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/triangle_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/triangle_math.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/vec2.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/vec3.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Math/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Math/vec4.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Signals/bind_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Signals/bind_member.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Signals/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Signals/signal.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/System/comptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/System/comptr.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/System/databuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/System/databuffer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/System/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/System/datetime.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/System/disposable_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/System/disposable_object.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/System/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/System/exception.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/System/registry_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/System/registry_key.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/System/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/System/service.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/System/singleton_bugfix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/System/singleton_bugfix.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/System/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/System/system.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Text/string_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Text/string_format.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Text/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Text/text.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Text/utf8_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Text/utf8_reader.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Xml/xml_document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Xml/xml_document.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Xml/xml_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Xml/xml_node.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Xml/xml_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Xml/xml_token.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Xml/xml_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Xml/xml_tokenizer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Xml/xml_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Xml/xml_writer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Core/Zip/zlib_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Core/Zip/zlib_compression.h -------------------------------------------------------------------------------- /Sources/Include/UICore/D3D/d3d_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/D3D/d3d_target.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/2D/brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/2D/brush.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/2D/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/2D/canvas.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/2D/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/2D/image.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/2D/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/2D/path.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/2D/pen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/2D/pen.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/2D/text_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/2D/text_block.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/2D/texture_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/2D/texture_group.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Font/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Font/font.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Font/font_description.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Font/font_description.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Font/font_family.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Font/font_family.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Font/font_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Font/font_metrics.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Font/glyph_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Font/glyph_metrics.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Image/icon_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Image/icon_set.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Image/perlin_noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Image/perlin_noise.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Image/pixel_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Image/pixel_buffer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Image/pixel_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Image/pixel_converter.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Image/texture_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Image/texture_format.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/buffer_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/buffer_usage.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/frame_buffer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/program_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/program_object.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/render_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/render_buffer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/shader_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/shader_object.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/staging_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/staging_buffer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/staging_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/staging_vector.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/storage_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/storage_buffer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/storage_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/storage_vector.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/texture.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/texture_1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/texture_1d.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/texture_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/texture_2d.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/texture_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/texture_3d.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/texture_cube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/texture_cube.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/uniform_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/uniform_buffer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Render/uniform_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Render/uniform_vector.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/System/detect_hang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/System/detect_hang.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/System/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/System/run_loop.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/System/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/System/timer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Window/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Window/cursor.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Window/display_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Window/display_window.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Window/input_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Window/input_code.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Window/input_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Window/input_device.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Window/input_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Window/input_event.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/Window/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/Window/keys.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/display_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/display_target.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Display/screen_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Display/screen_info.h -------------------------------------------------------------------------------- /Sources/Include/UICore/GL/opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/GL/opengl.h -------------------------------------------------------------------------------- /Sources/Include/UICore/GL/opengl_context_description.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/GL/opengl_context_description.h -------------------------------------------------------------------------------- /Sources/Include/UICore/GL/opengl_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/GL/opengl_defines.h -------------------------------------------------------------------------------- /Sources/Include/UICore/GL/opengl_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/GL/opengl_target.h -------------------------------------------------------------------------------- /Sources/Include/UICore/GL/opengl_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/GL/opengl_wrap.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Network/Socket/socket_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Network/Socket/socket_name.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Network/Socket/tcp_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Network/Socket/tcp_connection.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Network/Socket/tcp_listen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Network/Socket/tcp_listen.h -------------------------------------------------------------------------------- /Sources/Include/UICore/Network/Socket/udp_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/Network/Socket/udp_socket.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Controller/window_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Controller/window_manager.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Events/close_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Events/close_event.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Events/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Events/event.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Events/key_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Events/key_event.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Events/pointer_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Events/pointer_event.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Events/resize_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Events/resize_event.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Image/image_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Image/image_source.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/StandardViews/spin_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/StandardViews/spin_view.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Style/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Style/style.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Style/style_cascade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Style/style_cascade.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Style/style_dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Style/style_dimension.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Style/style_get_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Style/style_get_value.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Style/style_set_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Style/style_set_image.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Style/style_set_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Style/style_set_value.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Style/style_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Style/style_token.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Style/style_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Style/style_tokenizer.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/Style/style_value_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/Style/style_value_type.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/TopLevel/texture_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/TopLevel/texture_window.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/TopLevel/view_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/TopLevel/view_tree.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/UIThread/ui_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/UIThread/ui_thread.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/View/focus_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/View/focus_policy.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/View/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/View/view.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/View/view_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/View/view_action.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/View/view_event_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/View/view_event_handler.h -------------------------------------------------------------------------------- /Sources/Include/UICore/UI/View/view_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/UI/View/view_geometry.h -------------------------------------------------------------------------------- /Sources/Include/UICore/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/application.h -------------------------------------------------------------------------------- /Sources/Include/UICore/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/core.h -------------------------------------------------------------------------------- /Sources/Include/UICore/d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/d3d.h -------------------------------------------------------------------------------- /Sources/Include/UICore/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/display.h -------------------------------------------------------------------------------- /Sources/Include/UICore/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/gl.h -------------------------------------------------------------------------------- /Sources/Include/UICore/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/network.h -------------------------------------------------------------------------------- /Sources/Include/UICore/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/UICore/ui.h -------------------------------------------------------------------------------- /Sources/Include/uicore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/Include/uicore.h -------------------------------------------------------------------------------- /Sources/UICore/App/MacOS/application_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/App/MacOS/application_ios.mm -------------------------------------------------------------------------------- /Sources/UICore/App/MacOS/application_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/App/MacOS/application_osx.h -------------------------------------------------------------------------------- /Sources/UICore/App/MacOS/application_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/App/MacOS/application_osx.mm -------------------------------------------------------------------------------- /Sources/UICore/App/Unix/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/App/Unix/application.cpp -------------------------------------------------------------------------------- /Sources/UICore/App/Win32/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/App/Win32/application.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes128_decrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes128_decrypt.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes128_decrypt_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes128_decrypt_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes128_decrypt_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes128_decrypt_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes128_encrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes128_encrypt.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes128_encrypt_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes128_encrypt_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes128_encrypt_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes128_encrypt_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes192_decrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes192_decrypt.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes192_decrypt_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes192_decrypt_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes192_decrypt_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes192_decrypt_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes192_encrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes192_encrypt.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes192_encrypt_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes192_encrypt_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes192_encrypt_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes192_encrypt_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes256_decrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes256_decrypt.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes256_decrypt_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes256_decrypt_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes256_decrypt_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes256_decrypt_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes256_encrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes256_encrypt.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes256_encrypt_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes256_encrypt_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes256_encrypt_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes256_encrypt_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/aes_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/aes_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/asn1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/asn1.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/asn1.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/hash_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/hash_functions.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/md5.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/md5_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/md5_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/md5_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/md5_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/random.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/random_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/random_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/random_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/random_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/rsa.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/rsa_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/rsa_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/rsa_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/rsa_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/secret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/secret.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/secret_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/secret_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/secret_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/secret_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha1.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha1_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha1_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha1_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha224.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha256.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha256_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha256_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha256_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha256_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha384.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha384.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha512.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha512_224.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha512_224.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha512_256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha512_256.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha512_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha512_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/sha512_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/sha512_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/tls_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/tls_client.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/tls_client_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/tls_client_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/tls_client_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/tls_client_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/x509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/x509.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/x509.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/x509_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/x509_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Crypto/x509_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Crypto/x509_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/IOData/Cocoa/directory_cocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/IOData/Cocoa/directory_cocoa.mm -------------------------------------------------------------------------------- /Sources/UICore/Core/IOData/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/IOData/directory.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/IOData/directory_scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/IOData/directory_scanner.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/IOData/directory_scanner_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/IOData/directory_scanner_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/IOData/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/IOData/file.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/IOData/memory_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/IOData/memory_device.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/IOData/path_help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/IOData/path_help.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Json/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Json/json_value.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/angle.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/base64_decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/base64_decoder.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/base64_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/base64_encoder.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/big_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/big_int.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/big_int_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/big_int_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/big_int_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/big_int_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/color.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/color_hsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/color_hsl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/color_hsv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/color_hsv.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/ear_clip_triangulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/ear_clip_triangulator.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/easing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/easing.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/frustum_planes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/frustum_planes.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/half_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/half_float.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/intersection_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/intersection_test.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/line.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/line_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/line_math.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/line_ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/line_ray.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/line_segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/line_segment.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/mat2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/mat2.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/mat3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/mat3.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/mat4.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/origin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/origin.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/pointset_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/pointset_math.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/quad.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/quaternion.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/rect.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/rect_packer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/rect_packer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/rect_packer_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/rect_packer_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/rect_packer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/rect_packer_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/triangle_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/triangle_math.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/vec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/vec2.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/vec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/vec3.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Math/vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Math/vec4.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/Unix/service_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/Unix/service_unix.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/Unix/service_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/Unix/service_unix.h -------------------------------------------------------------------------------- /Sources/UICore/Core/System/Unix/system_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/Unix/system_unix.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/Unix/system_unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/Unix/system_unix.h -------------------------------------------------------------------------------- /Sources/UICore/Core/System/Win32/service_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/Win32/service_win32.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/Win32/service_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/Win32/service_win32.h -------------------------------------------------------------------------------- /Sources/UICore/Core/System/Win32/system_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/Win32/system_win32.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/Win32/system_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/Win32/system_win32.h -------------------------------------------------------------------------------- /Sources/UICore/Core/System/databuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/databuffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/datetime.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/detect_cpu_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/detect_cpu_ext.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/disposable_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/disposable_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/exception.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/registry_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/registry_key.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/service.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/service_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/service_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/service_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/service_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/System/setup_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/setup_core.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/setup_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/setup_core.h -------------------------------------------------------------------------------- /Sources/UICore/Core/System/singleton_bugfix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/singleton_bugfix.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/System/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/System/system.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Text/string_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Text/string_format.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Text/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Text/text.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Text/utf8_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Text/utf8_reader.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/block_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/block_allocator.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/block_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/block_allocator.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/xml_document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/xml_document.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/xml_document_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/xml_document_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/xml_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/xml_node.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/xml_node_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/xml_node_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/xml_tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/xml_tokenizer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/xml_tokenizer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/xml_tokenizer_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/xml_tree_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/xml_tree_node.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/xml_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/xml_writer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Core/Xml/xml_writer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Xml/xml_writer_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Zip/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Zip/miniz.h -------------------------------------------------------------------------------- /Sources/UICore/Core/Zip/zlib_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Core/Zip/zlib_compression.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/Shaders/color_only_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/Shaders/color_only_fragment.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/Shaders/color_only_vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/Shaders/color_only_vertex.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/Shaders/path_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/Shaders/path_fragment.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/Shaders/path_vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/Shaders/path_vertex.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/Shaders/single_texture_vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/Shaders/single_texture_vertex.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/Shaders/sprite_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/Shaders/sprite_fragment.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/Shaders/sprite_vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/Shaders/sprite_vertex.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_blend_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_blend_state.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_blend_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_blend_state.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_depth_stencil_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_depth_stencil_state.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_depth_stencil_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_depth_stencil_state.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_display_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_display_window.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_display_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_display_window.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_element_array_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_element_array_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_element_array_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_element_array_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_frame_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_frame_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_frame_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_graphic_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_graphic_context.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_graphic_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_graphic_context.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_occlusion_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_occlusion_query.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_occlusion_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_occlusion_query.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_primitives_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_primitives_array.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_primitives_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_primitives_array.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_program_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_program_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_program_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_program_object.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_rasterizer_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_rasterizer_state.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_rasterizer_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_rasterizer_state.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_render_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_render_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_render_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_render_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_shader_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_shader_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_shader_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_shader_object.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_share_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_share_list.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_share_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_share_list.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_staging_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_staging_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_staging_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_staging_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_staging_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_staging_texture.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_staging_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_staging_texture.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_storage_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_storage_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_storage_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_storage_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_target.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_target_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_target_provider.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_target_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_target_provider.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_texture_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_texture_data.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_texture_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_texture_data.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_texture_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_texture_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_texture_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_texture_object.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_uniform_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_uniform_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_uniform_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_uniform_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_unit_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_unit_map.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_unit_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_unit_map.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_vertex_array_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_vertex_array_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/d3d_vertex_array_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/d3d_vertex_array_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/init_guids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/init_guids.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/sampler_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/sampler_state.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/sampler_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/sampler_state.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/setup_d3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/setup_d3d.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/setup_d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/setup_d3d.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/setup_d3d_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/setup_d3d_impl.h -------------------------------------------------------------------------------- /Sources/UICore/D3D/standard_programs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/standard_programs.cpp -------------------------------------------------------------------------------- /Sources/UICore/D3D/standard_programs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/D3D/standard_programs.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/canvas.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/canvas_batcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/canvas_batcher.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/canvas_batcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/canvas_batcher.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/canvas_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/canvas_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/canvas_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/canvas_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/image.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/path.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/path_fill_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/path_fill_renderer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/path_fill_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/path_fill_renderer.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/path_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/path_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/path_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/path_renderer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/path_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/path_renderer.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/path_stroke_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/path_stroke_renderer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/path_stroke_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/path_stroke_renderer.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batch_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batch_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batch_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batch_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batch_line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batch_line.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batch_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batch_line.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batch_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batch_path.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batch_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batch_path.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batch_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batch_point.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batch_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batch_point.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batch_triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batch_triangle.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batch_triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batch_triangle.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/render_batcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/render_batcher.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/text_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/text_block.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/text_block_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/text_block_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/text_block_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/text_block_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/texture_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/texture_group.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/texture_group_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/texture_group_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/2D/texture_group_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/2D/texture_group_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/FontDraw/font_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/FontDraw/font_draw.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/font.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/font_description.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/font_description.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/font_description_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/font_description_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/font_family.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/font_family.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/font_family_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/font_family_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/font_family_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/font_family_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/font_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/font_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/font_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/font_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/glyph_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/glyph_cache.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/glyph_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/glyph_cache.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/path_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/path_cache.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Font/path_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Font/path_cache.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/icon_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/icon_set.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/perlin_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/perlin_noise.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_buffer_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_buffer_set.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_converter.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_converter_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_converter_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_filter_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_filter_gamma.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_filter_swizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_filter_swizzle.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_reader_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_reader_cast.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_reader_norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_reader_norm.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_reader_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_reader_special.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_reader_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_reader_sse.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_writer_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_writer_cast.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_writer_norm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_writer_norm.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_writer_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_writer_special.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Image/pixel_writer_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Image/pixel_writer_sse.h -------------------------------------------------------------------------------- /Sources/UICore/Display/ImageFormats/dds_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/ImageFormats/dds_format.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/ImageFormats/image_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/ImageFormats/image_file.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/ImageFormats/jpeg_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/ImageFormats/jpeg_format.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/ImageFormats/png_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/ImageFormats/png_format.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Platform/Win32/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Platform/Win32/hid.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Platform/Win32/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Platform/Win32/hid.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Platform/X11/WMSupport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Platform/X11/WMSupport.md -------------------------------------------------------------------------------- /Sources/UICore/Display/Platform/X11/clipboard_x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Platform/X11/clipboard_x11.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Platform/X11/font_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Platform/X11/font_config.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Platform/X11/font_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Platform/X11/font_config.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Platform/X11/x11_atoms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Platform/X11/x11_atoms.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Platform/X11/x11_atoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Platform/X11/x11_atoms.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Platform/X11/x11_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Platform/X11/x11_window.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Platform/X11/x11_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Platform/X11/x11_window.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/frame_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/frame_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/occlusion_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/occlusion_query.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/primitives_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/primitives_array.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/program_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/program_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/program_object_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/program_object_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/render_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/render_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/shader_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/shader_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/shader_object_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/shader_object_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/staging_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/staging_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/staging_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/staging_texture.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/storage_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/storage_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/texture.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/texture_1d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/texture_1d.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/texture_1d_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/texture_1d_array.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/texture_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/texture_2d.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/texture_2d_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/texture_2d_array.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/texture_3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/texture_3d.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/texture_cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/texture_cube.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/texture_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/texture_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/Render/uniform_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Render/uniform_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/System/detect_hang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/System/detect_hang.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/System/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/System/run_loop.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/System/run_loop_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/System/run_loop_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Display/System/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/System/timer.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Window/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Window/cursor.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Window/display_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Window/display_window.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/Window/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/Window/keys.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/display_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/display_target.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/display_target_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/display_target_provider.h -------------------------------------------------------------------------------- /Sources/UICore/Display/screen_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/screen_info.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/screen_info_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/screen_info_provider.h -------------------------------------------------------------------------------- /Sources/UICore/Display/setup_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/setup_display.cpp -------------------------------------------------------------------------------- /Sources/UICore/Display/setup_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Display/setup_display.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_frame_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_frame_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_frame_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_graphic_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_graphic_context.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_graphic_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_graphic_context.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_primitives_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_primitives_array.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_primitives_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_primitives_array.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_program_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_program_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_program_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_program_object.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_render_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_render_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_render_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_render_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_staging_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_staging_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_staging_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_staging_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_texture_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_texture_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_texture_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_texture_object.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_uniform_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_uniform_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_uniform_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_uniform_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_vertex_array_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_vertex_array_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/gl1_vertex_array_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/gl1_vertex_array_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/pbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/pbuffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL1/pbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL1/pbuffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_buffer_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_buffer_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_buffer_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_buffer_object.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_element_array_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_element_array_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_element_array_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_element_array_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_frame_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_frame_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_frame_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_graphic_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_graphic_context.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_graphic_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_graphic_context.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_occlusion_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_occlusion_query.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_occlusion_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_occlusion_query.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_primitives_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_primitives_array.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_primitives_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_primitives_array.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_program_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_program_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_program_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_program_object.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_render_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_render_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_render_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_render_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_shader_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_shader_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_shader_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_shader_object.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_staging_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_staging_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_staging_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_staging_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_staging_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_staging_texture.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_staging_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_staging_texture.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_standard_programs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_standard_programs.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_standard_programs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_standard_programs.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_storage_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_storage_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_storage_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_storage_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_texture_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_texture_object.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_texture_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_texture_object.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_uniform_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_uniform_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_uniform_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_uniform_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_vertex_array_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_vertex_array_buffer.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/GL3/gl3_vertex_array_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/GL3/gl3_vertex_array_buffer.h -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/AGL/cocoa_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/AGL/cocoa_controller.h -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/AGL/cocoa_controller.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/AGL/cocoa_controller.mm -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/AGL/cocoa_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/AGL/cocoa_view.h -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/AGL/cocoa_view.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/AGL/cocoa_view.mm -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/AGL/cocoa_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/AGL/cocoa_window.h -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/AGL/cocoa_window.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/AGL/cocoa_window.mm -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/Android/pbuffer_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/Android/pbuffer_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/Android/pbuffer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/Android/pbuffer_impl.h -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/GLX/pbuffer_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/GLX/pbuffer_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/GLX/pbuffer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/GLX/pbuffer_impl.h -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/OSX/cocoa_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/OSX/cocoa_view.h -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/OSX/cocoa_view.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/OSX/cocoa_view.mm -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/OSX/cocoa_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/OSX/cocoa_window.h -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/OSX/cocoa_window.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/OSX/cocoa_window.mm -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/WGL/pbuffer_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/WGL/pbuffer_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/Platform/WGL/pbuffer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/Platform/WGL/pbuffer_impl.h -------------------------------------------------------------------------------- /Sources/UICore/GL/State/opengl_blend_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/State/opengl_blend_state.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/State/opengl_blend_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/State/opengl_blend_state.h -------------------------------------------------------------------------------- /Sources/UICore/GL/State/opengl_rasterizer_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/State/opengl_rasterizer_state.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/State/opengl_rasterizer_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/State/opengl_rasterizer_state.h -------------------------------------------------------------------------------- /Sources/UICore/GL/gl_share_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/gl_share_list.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/gl_share_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/gl_share_list.h -------------------------------------------------------------------------------- /Sources/UICore/GL/opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/opengl.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/opengl_context_description.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/opengl_context_description.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/opengl_context_description_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/opengl_context_description_impl.h -------------------------------------------------------------------------------- /Sources/UICore/GL/opengl_graphic_context_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/opengl_graphic_context_provider.h -------------------------------------------------------------------------------- /Sources/UICore/GL/opengl_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/opengl_target.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/opengl_target_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/opengl_target_provider.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/opengl_target_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/opengl_target_provider.h -------------------------------------------------------------------------------- /Sources/UICore/GL/setup_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/setup_gl.cpp -------------------------------------------------------------------------------- /Sources/UICore/GL/setup_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/setup_gl.h -------------------------------------------------------------------------------- /Sources/UICore/GL/setup_gl_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/GL/setup_gl_impl.h -------------------------------------------------------------------------------- /Sources/UICore/Network/Socket/socket_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Network/Socket/socket_error.cpp -------------------------------------------------------------------------------- /Sources/UICore/Network/Socket/socket_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Network/Socket/socket_error.h -------------------------------------------------------------------------------- /Sources/UICore/Network/Socket/socket_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Network/Socket/socket_name.cpp -------------------------------------------------------------------------------- /Sources/UICore/Network/Socket/tcp_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Network/Socket/tcp_connection.cpp -------------------------------------------------------------------------------- /Sources/UICore/Network/Socket/tcp_listen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Network/Socket/tcp_listen.cpp -------------------------------------------------------------------------------- /Sources/UICore/Network/Socket/tcp_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Network/Socket/tcp_socket.h -------------------------------------------------------------------------------- /Sources/UICore/Network/Socket/udp_socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Network/Socket/udp_socket.cpp -------------------------------------------------------------------------------- /Sources/UICore/Network/setupnetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Network/setupnetwork.h -------------------------------------------------------------------------------- /Sources/UICore/Network/setupnetwork_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Network/setupnetwork_unix.cpp -------------------------------------------------------------------------------- /Sources/UICore/Network/setupnetwork_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/Network/setupnetwork_win32.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Animation/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Animation/animation.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Animation/animation_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Animation/animation_group.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Controller/window_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Controller/window_manager.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Events/key_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Events/key_event.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Events/pointer_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Events/pointer_event.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Image/image_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Image/image_source.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/StandardViews/image_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/StandardViews/image_view.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/StandardViews/label_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/StandardViews/label_view.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/StandardViews/scroll_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/StandardViews/scroll_view.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/background.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/background.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/border.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/border.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/border.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/border_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/border_image.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/border_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/border_image.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/box_shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/box_shadow.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/box_shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/box_shadow.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/content.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/content.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/flex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/flex.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/flex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/flex.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/layout.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/layout.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/margin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/margin.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/margin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/margin.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/outline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/outline.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/outline.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/padding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/padding.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/padding.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/Properties/text_and_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/Properties/text_and_font.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/style.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/style_background_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/style_background_renderer.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/style_cascade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/style_cascade.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/style_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/style_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/style_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/style_impl.h -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/style_property_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/style_property_parser.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/style_tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/style_tokenizer.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/style_tokenizer_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/style_tokenizer_impl.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/Style/style_tokenizer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/Style/style_tokenizer_impl.h -------------------------------------------------------------------------------- /Sources/UICore/UI/SystemDialogs/file_dialog_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/SystemDialogs/file_dialog_impl.h -------------------------------------------------------------------------------- /Sources/UICore/UI/TopLevel/view_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/TopLevel/view_tree.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/UIThread/ui_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/UIThread/ui_thread.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/View/custom_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/custom_layout.h -------------------------------------------------------------------------------- /Sources/UICore/UI/View/flex_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/flex_layout.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/View/flex_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/flex_layout.h -------------------------------------------------------------------------------- /Sources/UICore/UI/View/positioned_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/positioned_layout.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/View/positioned_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/positioned_layout.h -------------------------------------------------------------------------------- /Sources/UICore/UI/View/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/view.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/View/view_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/view_action.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/View/view_action_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/view_action_impl.h -------------------------------------------------------------------------------- /Sources/UICore/UI/View/view_geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/view_geometry.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/View/view_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/view_impl.h -------------------------------------------------------------------------------- /Sources/UICore/UI/View/view_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/View/view_layout.h -------------------------------------------------------------------------------- /Sources/UICore/UI/ViewCompiler/view_compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/ViewCompiler/view_compiler.cpp -------------------------------------------------------------------------------- /Sources/UICore/UI/ViewCompiler/view_compiler_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/UI/ViewCompiler/view_compiler_impl.h -------------------------------------------------------------------------------- /Sources/UICore/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/precomp.cpp -------------------------------------------------------------------------------- /Sources/UICore/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Sources/UICore/precomp.h -------------------------------------------------------------------------------- /Tests/Sources/border_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Tests/Sources/border_test.cpp -------------------------------------------------------------------------------- /Tests/Sources/border_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Tests/Sources/border_test.h -------------------------------------------------------------------------------- /Tests/Sources/precomp.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "precomp.h" 3 | -------------------------------------------------------------------------------- /Tests/Sources/precomp.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | #include 5 | -------------------------------------------------------------------------------- /Tests/Sources/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Tests/Sources/test_main.cpp -------------------------------------------------------------------------------- /Tests/UITest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Tests/UITest.sln -------------------------------------------------------------------------------- /Tests/UITest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/Tests/UITest.vcxproj -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/configure -------------------------------------------------------------------------------- /configure.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpjudas/UICore/HEAD/configure.exe --------------------------------------------------------------------------------