File tree Expand file tree Collapse file tree 5 files changed +11
-6
lines changed Expand file tree Collapse file tree 5 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 5
5
#include " lxgui/gui_material.hpp"
6
6
#include " lxgui/utils.hpp"
7
7
8
+ #include < cstdint>
8
9
#include < memory>
9
10
#include < vector>
10
11
@@ -71,10 +72,10 @@ class atlas final : public gui::atlas {
71
72
*/
72
73
explicit atlas (renderer& rdr, material::filter filt);
73
74
74
- atlas (const atlas& tex) = delete ;
75
- atlas (atlas&& tex) = delete ;
75
+ atlas (const atlas& tex) = delete ;
76
+ atlas (atlas&& tex) = delete ;
76
77
atlas& operator =(const atlas& tex) = delete ;
77
- atlas& operator =(atlas&& tex) = delete ;
78
+ atlas& operator =(atlas&& tex) = delete ;
78
79
79
80
protected:
80
81
/* *
Original file line number Diff line number Diff line change 6
6
#include " lxgui/gui_material.hpp"
7
7
#include " lxgui/utils.hpp"
8
8
9
+ #include < cstdint>
9
10
#include < memory>
10
11
#include < vector>
11
12
@@ -40,10 +41,10 @@ class material final : public gui::material {
40
41
const bounds2f rect,
41
42
filter filt = filter::none);
42
43
43
- material (const material& tex) = delete ;
44
- material (material&& tex) = delete ;
44
+ material (const material& tex) = delete ;
45
+ material (material&& tex) = delete ;
45
46
material& operator =(const material& tex) = delete ;
46
- material& operator =(material&& tex) = delete ;
47
+ material& operator =(material&& tex) = delete ;
47
48
48
49
// / Destructor.
49
50
~material () override ;
Original file line number Diff line number Diff line change 6
6
#include " lxgui/impl/gui_gl_material.hpp"
7
7
#include " lxgui/utils.hpp"
8
8
9
+ #include < cstdint>
9
10
#include < memory>
10
11
11
12
namespace lxgui ::gui::gl {
Original file line number Diff line number Diff line change 11
11
#include " lxgui/utils.hpp"
12
12
13
13
#include < array>
14
+ #include < cstdint>
14
15
#include < limits>
15
16
#include < memory>
16
17
Original file line number Diff line number Diff line change 4
4
#include " lxgui/gui_vertex_cache.hpp"
5
5
#include " lxgui/utils.hpp"
6
6
7
+ #include < cstdint>
7
8
#include < limits>
8
9
#include < memory>
9
10
You can’t perform that action at this time.
0 commit comments