Lines Matching refs:command

205     bit32* command;  in BeginDrawingShape()  local
206 …nngxGetCmdlistParameteri( NN_GX_CMDLIST_CURRENT_BUFADDR, reinterpret_cast<GLint*>( &command ) ); … in BeginDrawingShape()
208 bit32* commandStart = command; in BeginDrawingShape()
209 command = m_ShapeViewport.MakeCommand( command ); in BeginDrawingShape()
211 nngxMoveCommandbufferPointer( ( command - commandStart ) * sizeof(u32) ); in BeginDrawingShape()
230 bit32* command; in EndDrawingShape() local
231 …nngxGetCmdlistParameteri( NN_GX_CMDLIST_CURRENT_BUFADDR, reinterpret_cast<GLint*>( &command ) ); … in EndDrawingShape()
233 bit32* commandStart = command; in EndDrawingShape()
234 command = nn::gr::CTR::Vertex::MakeDisableCommand( command ); in EndDrawingShape()
235 command = m_ShapeVertex.MakeEnableAttrCommand( command ); in EndDrawingShape()
236 command = m_ShapeVertex.MakeDrawCommand( command, m_ShapeIndexStream ); in EndDrawingShape()
237 command = m_ShapeVertex.MakeDisableAttrCommand( command ); in EndDrawingShape()
238 command = nn::gr::CTR::Vertex::MakeDisableCommand( command ); in EndDrawingShape()
240 nngxMoveCommandbufferPointer( ( command - commandStart ) * sizeof(u32) ); in EndDrawingShape()
633 bit32* command; in SetupShapeMaterial() local
634 nngxGetCmdlistParameteri( NN_GX_CMDLIST_CURRENT_BUFADDR, reinterpret_cast<GLint*>( &command ) ); in SetupShapeMaterial()
636 bit32* commandStart = command; in SetupShapeMaterial()
637 command = m_ShapeShader.MakeFullCommand( command ); in SetupShapeMaterial()
638 command = m_ShapeRenderState.MakeCommand( command ) ; in SetupShapeMaterial()
640 nngxMoveCommandbufferPointer( ( command - commandStart ) * sizeof(u32) ); in SetupShapeMaterial()
647 bit32* command; in SetupShapeTexEnv() local
648 nngxGetCmdlistParameteri( NN_GX_CMDLIST_CURRENT_BUFADDR, reinterpret_cast<GLint*>( &command ) ); in SetupShapeTexEnv()
650 bit32* commandStart = command; in SetupShapeTexEnv()
651 command = m_ShapeCombiner.MakeCommand( command ); in SetupShapeTexEnv()
653 nngxMoveCommandbufferPointer( ( command - commandStart ) * sizeof(u32) ); in SetupShapeTexEnv()
683 bit32* command; in SendShapeMatrix() local
684 nngxGetCmdlistParameteri( NN_GX_CMDLIST_CURRENT_BUFADDR, reinterpret_cast<GLint*>( &command ) ); in SendShapeMatrix()
686 bit32* commandStart = command; in SendShapeMatrix()
690 command = m_ShapeBindSymbolProjectionMatrix.MakeUniformCommand( command, projMtx ); in SendShapeMatrix()
691 command = m_ShapeBindSymbolModelViewMatrix.MakeUniformCommand( command, viewMtx ); in SendShapeMatrix()
694 nngxMoveCommandbufferPointer( ( command - commandStart ) * sizeof(u32) ); in SendShapeMatrix()