sead
Loading...
Searching...
No Matches
aglUniformBlock.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace agl {
4
5// There are some asserts which I won't bother with (for now)
6
11
12inline void UniformBlock::setBool(void* p_memory, s32 index, bool data, s32 array_index) const
13{
15}
16
17inline void UniformBlock::setBool(s32 index, bool data, s32 array_index) const
18{
20}
21
22inline void UniformBlock::setBool(void* p_memory, s32 index, const bool* p_data, s32 array_num, s32 array_index) const
23{
24 for (s32 i = 0; i < array_num; i++)
26}
27
28inline void UniformBlock::setBool(s32 index, const bool* p_data, s32 array_num, s32 array_index) const
29{
30 for (s32 i = 0; i < array_num; i++)
32}
33
35{
37}
38
43
48
53
58
63
68
73
75{
77}
78
83
88
93
95{
97}
98
103
108
113
115{
117}
118
123
128
133
134}
Definition aglDisplayList.cpp:5