Lines Matching refs:size

66     virtual void GetData(void*& data, int& size) {data = NULL; size = 0;}  in GetData()
104 CVec2 size; member
168 …sible(true), position(_position), size(_size), x(position.x), y(position.y), z(position.z), width( in window()
171 …ible), position(copy.position), size(copy.size), x(position.x), y(position.y), z(position.z), widt… in MenuItem()
181 void DrawText(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawText()
182 …t(text, CVec3(window->GetX() + position.x, window->GetY() + position.y, position.z), size, color);} in DrawText()
183 void DrawTextCenter(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawTextCenter()
184 …r(text, CVec3(window->GetX() + position.x, window->GetY() + position.y, position.z), size, color);} in DrawTextCenter()
185 void DrawTextRight(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawTextRight()
186 …t(text, CVec3(window->GetX() + position.x, window->GetY() + position.y, position.z), size, color);} in DrawTextRight()
187 void DrawMultiLineText(const char* text, CVec3 position, CVec2 size, CVec4 color) in DrawMultiLineText()
188 …t(text, CVec3(window->GetX() + position.x, window->GetY() + position.y, position.z), size, color);} in DrawMultiLineText()
189 void DrawBox(CVec3 position, CVec2 size, CVec4 color, CVec4 color1 = CVec4(0, 0, 0, 1.0))
190 …CVec3(window->GetX() + position.x, window->GetY() + position.y, position.z), size, color, color1);}
191 void DrawLine(CVec3 position, CVec2 size, CVec4 color) in DrawLine()
192 …rawLine(CVec3(window->GetX() + position.x, window->GetY() + position.y, position.z), size, color);} in DrawLine()
193 void DrawFastLine(CVec3 position, CVec2 size, CVec4 color) in DrawFastLine()
194 …astLine(CVec3(window->GetX() + position.x, window->GetY() + position.y, position.z), size, color);} in DrawFastLine()
195 void DrawQuad(CVec3 position, CVec2 size, CVec4 color) in DrawQuad()
196 …rawQuad(CVec3(window->GetX() + position.x, window->GetY() + position.y, position.z), size, color);} in DrawQuad()
197 void DrawTexQuad(GX2Texture* tex, CVec3 position, CVec2 size, CVec4 color) in DrawTexQuad()
198 …ad(tex, CVec3(window->GetX() + position.x, window->GetY() + position.y, position.z), size, color);} in DrawTexQuad()
199 void DrawBoxQuad(CVec3 position, CVec2 size, CVec4 color) in DrawBoxQuad()
200 …BoxQuad(CVec3(window->GetX() + position.x, window->GetY() + position.y, position.z), size, color);} in DrawBoxQuad()
243 CVec2 size; member