Lines Matching refs:pos
260 GraphicsDrawing::DrawRectangle( const math::VEC2& pos, const math::VEC2& size, ut::Color8 color ) in DrawRectangle() argument
266 count += this->BuildLine( pos, math::VEC2( pos.x + size.x, pos.y ), in DrawRectangle()
270 math::VEC2( pos.x + size.x, pos.y ), pos + size, in DrawRectangle()
273 count += this->BuildLine( pos + size, math::VEC2( pos.x, pos.y + size.y ), in DrawRectangle()
276 count += this->BuildLine(math::VEC2( pos.x, pos.y + size.y ), pos, in DrawRectangle()
287 GraphicsDrawing::FillRectangle( const math::VEC2& pos, const math::VEC2& size, ut::Color8 color ) in FillRectangle() argument
291 s32 count = this->BuildRectangle(pos, size, &m_ShapePositionStreamArray[ m_ShapeVertexCount ]); in FillRectangle()
728 GraphicsDrawing::BuildRectangle( const math::VEC2& pos, const math::VEC2& size, math::VEC2 *pVecArr… in BuildRectangle() argument
734 pos, in BuildRectangle()
735 math::VEC2(pos.x + size.x, pos.y), in BuildRectangle()
736 pos + size, in BuildRectangle()
737 math::VEC2(pos.x, pos.y + size.y), in BuildRectangle()