Lines Matching refs:command

203     bit32* command;  in BeginDrawingShape()  local
204 …nngxGetCmdlistParameteri( NN_GX_CMDLIST_CURRENT_BUFADDR, reinterpret_cast<GLint*>( &command ) ); … in BeginDrawingShape()
206 bit32* commandStart = command; in BeginDrawingShape()
207 command = m_ShapeViewport.MakeCommand( command ); in BeginDrawingShape()
209 nngxMoveCommandbufferPointer( ( command - commandStart ) * sizeof(u32) ); in BeginDrawingShape()
228 bit32* command; in EndDrawingShape() local
229 …nngxGetCmdlistParameteri( NN_GX_CMDLIST_CURRENT_BUFADDR, reinterpret_cast<GLint*>( &command ) ); … in EndDrawingShape()
231 bit32* commandStart = command; in EndDrawingShape()
232 command = nn::gr::CTR::Vertex::MakeDisableCommand( command ); in EndDrawingShape()
233 command = m_ShapeVertex.MakeEnableAttrCommand( command ); in EndDrawingShape()
234 command = m_ShapeVertex.MakeDrawCommand( command, m_ShapeIndexStream ); in EndDrawingShape()
235 command = m_ShapeVertex.MakeDisableAttrCommand( command ); in EndDrawingShape()
236 command = nn::gr::CTR::Vertex::MakeDisableCommand( command ); in EndDrawingShape()
238 nngxMoveCommandbufferPointer( ( command - commandStart ) * sizeof(u32) ); in EndDrawingShape()
631 bit32* command; in SetupShapeMaterial() local
632 nngxGetCmdlistParameteri( NN_GX_CMDLIST_CURRENT_BUFADDR, reinterpret_cast<GLint*>( &command ) ); in SetupShapeMaterial()
634 bit32* commandStart = command; in SetupShapeMaterial()
635 command = m_ShapeShader.MakeFullCommand( command ); in SetupShapeMaterial()
636 command = m_ShapeRenderState.MakeCommand( command ) ; in SetupShapeMaterial()
638 nngxMoveCommandbufferPointer( ( command - commandStart ) * sizeof(u32) ); in SetupShapeMaterial()
645 bit32* command; in SetupShapeTexEnv() local
646 nngxGetCmdlistParameteri( NN_GX_CMDLIST_CURRENT_BUFADDR, reinterpret_cast<GLint*>( &command ) ); in SetupShapeTexEnv()
648 bit32* commandStart = command; in SetupShapeTexEnv()
649 command = m_ShapeCombiner.MakeCommand( command ); in SetupShapeTexEnv()
651 nngxMoveCommandbufferPointer( ( command - commandStart ) * sizeof(u32) ); in SetupShapeTexEnv()
681 bit32* command; in SendShapeMatrix() local
682 nngxGetCmdlistParameteri( NN_GX_CMDLIST_CURRENT_BUFADDR, reinterpret_cast<GLint*>( &command ) ); in SendShapeMatrix()
684 bit32* commandStart = command; in SendShapeMatrix()
688 command = m_ShapeBindSymbolProjectionMatrix.MakeUniformCommand( command, projMtx ); in SendShapeMatrix()
689 command = m_ShapeBindSymbolModelViewMatrix.MakeUniformCommand( command, viewMtx ); in SendShapeMatrix()
692 nngxMoveCommandbufferPointer( ( command - commandStart ) * sizeof(u32) ); in SendShapeMatrix()