Home | History | Annotate | Download | only in glshared

Lines Matching defs:command

1999 			DrawCommand command;
2001 command.count = vertexCount;
2002 command.primCount = instanceCount;
2003 command.first = firstVertex;
2004 command.reservedMustBeZero = 0;
2006 memcpy(buffer + indirectOffset, &command, sizeof(command));
2012 << "\tcount: " << command.count << "\n"
2013 << "\tprimCount: " << command.primCount << "\n"
2014 << "\tfirst: " << command.first << "\n"
2015 << "\treservedMustBeZero: " << command.reservedMustBeZero << "\n"
2045 DrawCommand command;
2050 command.count = vertexCount;
2051 command.primCount = instanceCount;
2052 command.firstIndex = (glw::GLuint)(((const deUint8*)indexOffset - (const deUint8*)DE_NULL) / gls::DrawTestSpec::indexTypeSize(indexType));
2053 command.baseVertex = baseVertex;
2054 command.reservedMustBeZero = 0;
2056 memcpy(buffer + indirectOffset, &command, sizeof(command));
2062 << "\tcount: " << command.count << "\n"
2063 << "\tprimCount: " << command.primCount << "\n"
2064 << "\tfirstIndex: " << command.firstIndex << "\n"
2065 << "\tbaseVertex: " << command.baseVertex << "\n"
2066 << "\treservedMustBeZero: " << command.reservedMustBeZero << "\n"