Sources/Include/UICore/display.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 ** Kenneth Gangstoe
28 ** Harry Storbacka
29 */
30 
31 #pragma once
32 
33 #include "Display/display_target.h"
34 #include "Display/screen_info.h"
35 #include "Display/2D/canvas.h"
36 #include "Display/2D/image.h"
37 #include "Display/2D/path.h"
38 #include "Display/2D/pen.h"
39 #include "Display/2D/brush.h"
40 #include "Display/2D/texture_group.h"
41 #include "Display/2D/text_block.h"
42 #include "Display/System/run_loop.h"
43 #include "Display/System/timer.h"
44 #include "Display/System/detect_hang.h"
45 #include "Display/Font/font_family.h"
46 #include "Display/Font/font.h"
47 #include "Display/Font/font_description.h"
48 #include "Display/Font/font_metrics.h"
49 #include "Display/Font/glyph_metrics.h"
50 #include "Display/Image/pixel_buffer.h"
51 #include "Display/Image/pixel_buffer_set.h"
52 #include "Display/Image/icon_set.h"
53 #include "Display/Image/perlin_noise.h"
54 #include "Display/Image/image_import_description.h"
55 #include "Display/Image/pixel_converter.h"
56 #include "Display/ImageFormats/jpeg_format.h"
57 #include "Display/ImageFormats/png_format.h"
58 #include "Display/ImageFormats/image_file.h"
59 #include "Display/ImageFormats/image_file_type.h"
60 #include "Display/ImageFormats/image_file_type_register.h"
61 #include "Display/ImageFormats/targa_format.h"
62 #include "Display/ImageFormats/dds_format.h"
63 #include "Display/Render/blend_state_description.h"
64 #include "Display/Render/depth_stencil_state_description.h"
65 #include "Display/Render/rasterizer_state_description.h"
66 #include "Display/Render/element_array_buffer.h"
67 #include "Display/Render/element_array_vector.h"
68 #include "Display/Render/staging_buffer.h"
69 #include "Display/Render/staging_vector.h"
70 #include "Display/Render/frame_buffer.h"
71 #include "Display/Render/graphic_context.h"
72 #include "Display/Render/occlusion_query.h"
73 #include "Display/Render/primitives_array.h"
74 #include "Display/Render/program_object.h"
75 #include "Display/Render/uniform_buffer.h"
76 #include "Display/Render/uniform_vector.h"
77 #include "Display/Render/storage_buffer.h"
78 #include "Display/Render/storage_vector.h"
79 #include "Display/Render/render_buffer.h"
80 #include "Display/Render/shader_object.h"
81 #include "Display/Render/texture.h"
82 #include "Display/Render/staging_texture.h"
83 #include "Display/Render/texture_1d.h"
84 #include "Display/Render/texture_1d_array.h"
85 #include "Display/Render/texture_2d.h"
86 #include "Display/Render/texture_2d_array.h"
87 #include "Display/Render/texture_3d.h"
88 #include "Display/Render/texture_cube.h"
89 #include "Display/Render/texture_cube_array.h"
90 #include "Display/Render/vertex_array_buffer.h"
91 #include "Display/Render/vertex_array_vector.h"
92 #include "Display/Window/cursor.h"
93 #include "Display/Window/cursor_description.h"
94 #include "Display/Window/display_window.h"
95 #include "Display/Window/display_window_description.h"
96 #include "Display/Window/input_code.h"
97 #include "Display/Window/input_device.h"
98 #include "Display/Window/input_event.h"
99 #include "Display/Window/keys.h"