Searched refs:getLocalSize (Results 1 – 10 of 10) sorted by relevance
/third_party/glslang/glslang/MachineIndependent/ |
D | reflection.cpp | 1125 localSize[dim] = intermediate.getLocalSize(dim); in buildAttributeReflection() 1256 if (getLocalSize(0) > 1) { in dump() 1260 if (getLocalSize(dim) > 1) in dump() 1261 printf("Local size %s: %u\n", axis[dim], getLocalSize(dim)); in dump()
|
D | reflection.h | 170 unsigned getLocalSize(int dim) const { return dim <= 2 ? localSize[dim] : 0; } in getLocalSize() function
|
D | ShaderLang.cpp | 2195 unsigned TProgram::getLocalSize(int dim) const { return reflection->getLocal… in getLocalSize() function in glslang::TProgram
|
D | ParseHelper.cpp | 9119 if (intermediate.getLocalSize(i) > (unsigned int)max) in updateStandaloneQualifierDefaults() 9142 if (intermediate.getLocalSize(i) > (unsigned int)max) { in updateStandaloneQualifierDefaults() 9167 if (intermediate.getLocalSize(i) > (unsigned int)max) { in updateStandaloneQualifierDefaults() 9182 … workGroupSize->getWritableConstArray()[i].setUConst(intermediate.getLocalSize(i)); in updateStandaloneQualifierDefaults() 9239 if ((intermediate.getLocalSize(0) & 1) || in updateStandaloneQualifierDefaults() 9240 (intermediate.getLocalSize(1) & 1)) in updateStandaloneQualifierDefaults() 9250 if((intermediate.getLocalSize(0) * in updateStandaloneQualifierDefaults() 9251 intermediate.getLocalSize(1) * in updateStandaloneQualifierDefaults() 9252 intermediate.getLocalSize(2)) % 4 != 0) in updateStandaloneQualifierDefaults()
|
D | localintermediate.h | 603 unsigned int getLocalSize(int dim) const { return localSize[dim]; } in getLocalSize() function
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Shader.h | 92 const sh::WorkGroupSize &getLocalSize() const { return mLocalSize; } in getLocalSize() function
|
/third_party/glslang/glslang/Public/ |
D | ShaderLang.h | 876 … GLSLANG_EXPORT unsigned getLocalSize(int dim) const; // return dim'th local size
|
/third_party/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 1752 … dimConstId.push_back(builder.makeUintConstant(glslangIntermediate->getLocalSize(dim), specConst)); in TGlslangToSpvTraverser() 1760 …er.addExecutionMode(shaderEntry, spv::ExecutionModeLocalSize, glslangIntermediate->getLocalSize(0), in TGlslangToSpvTraverser() 1761 … glslangIntermediate->getLocalSize(1), in TGlslangToSpvTraverser() 1762 … glslangIntermediate->getLocalSize(2)); in TGlslangToSpvTraverser() 1883 … dimConstId.push_back(builder.makeUintConstant(glslangIntermediate->getLocalSize(dim), specConst)); in TGlslangToSpvTraverser() 1891 …er.addExecutionMode(shaderEntry, spv::ExecutionModeLocalSize, glslangIntermediate->getLocalSize(0), in TGlslangToSpvTraverser() 1892 … glslangIntermediate->getLocalSize(1), in TGlslangToSpvTraverser() 1893 … glslangIntermediate->getLocalSize(2)); in TGlslangToSpvTraverser() 9212 … dimConstId.push_back(builder.makeUintConstant(glslangIntermediate->getLocalSize(dim), specConst)); in createSpvConstant()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
D | frame_capture_utils.cpp | 897 SerializeWorkGroupSize(json, shaderState.getLocalSize()); in SerializeShaderState()
|
/third_party/glslang/glslang/HLSL/ |
D | hlslParseHelper.cpp | 9304 if (intermediate.getLocalSize(i) > (unsigned int)max) in updateStandaloneQualifierDefaults() 9309 workGroupSize->getWritableConstArray()[i].setUConst(intermediate.getLocalSize(i)); in updateStandaloneQualifierDefaults()
|