Lines Matching refs:pos
262 GraphicsDrawing::DrawRectangle( const math::VEC2& pos, const math::VEC2& size, ut::Color8 color ) in DrawRectangle() argument
268 count += this->BuildLine( pos, math::VEC2( pos.x + size.x, pos.y ), in DrawRectangle()
272 math::VEC2( pos.x + size.x, pos.y ), pos + size, in DrawRectangle()
275 count += this->BuildLine( pos + size, math::VEC2( pos.x, pos.y + size.y ), in DrawRectangle()
278 count += this->BuildLine(math::VEC2( pos.x, pos.y + size.y ), pos, in DrawRectangle()
289 GraphicsDrawing::FillRectangle( const math::VEC2& pos, const math::VEC2& size, ut::Color8 color ) in FillRectangle() argument
293 s32 count = this->BuildRectangle(pos, size, &m_ShapePositionStreamArray[ m_ShapeVertexCount ]); in FillRectangle()
730 GraphicsDrawing::BuildRectangle( const math::VEC2& pos, const math::VEC2& size, math::VEC2 *pVecArr… in BuildRectangle() argument
736 pos, in BuildRectangle()
737 math::VEC2(pos.x + size.x, pos.y), in BuildRectangle()
738 pos + size, in BuildRectangle()
739 math::VEC2(pos.x, pos.y + size.y), in BuildRectangle()