Home | History | Annotate | Download | only in functional

Lines Matching refs:workGroupSize

87 glu::ProgramSources genVerifySources (const UVec3& workGroupSize)
105 args["LOCAL_SIZE_X"] = de::toString(workGroupSize.x());
106 args["LOCAL_SIZE_Y"] = de::toString(workGroupSize.y());
107 args["LOCAL_SIZE_Z"] = de::toString(workGroupSize.z());
284 deUint32 computeInvocationCount (const UVec3& workGroupSize, const UVec3& numWorkGroups)
286 const int numInvocationsPerGroup = workGroupSize[0]*workGroupSize[1]*workGroupSize[2];
395 SingleDispatchCase (Context& context, const char* name, const char* description, GenBuffer genBuffer, deUintptr bufferSize, deUintptr offset, const UVec3& workGroupSize, const UVec3& numWorkGroups)
399 m_workGroupSize = workGroupSize;
469 UVec3 workGroupSize;
473 // Name Desc BufferSize Offs WorkGroupSize NumWorkGroups
496 s_singleDispatchCases[ndx].workGroupSize,