Searched refs:getLocalSize (Results 1 – 10 of 10) sorted by relevance
/third_party/glslang/glslang/MachineIndependent/ |
D | reflection.cpp | 1123 localSize[dim] = intermediate.getLocalSize(dim); in buildAttributeReflection() 1254 if (getLocalSize(0) > 1) { in dump() 1258 if (getLocalSize(dim) > 1) in dump() 1259 printf("Local size %s: %u\n", axis[dim], getLocalSize(dim)); in dump()
|
D | reflection.h | 168 unsigned getLocalSize(int dim) const { return dim <= 2 ? localSize[dim] : 0; } in getLocalSize() function
|
D | ShaderLang.cpp | 2135 unsigned TProgram::getLocalSize(int dim) const { return reflection->getLocal… in getLocalSize() function in glslang::TProgram
|
D | ParseHelper.cpp | 9660 if (intermediate.getLocalSize(i) > (unsigned int)max) in updateStandaloneQualifierDefaults() 9681 if (intermediate.getLocalSize(i) > (unsigned int)max) { in updateStandaloneQualifierDefaults() 9706 if (intermediate.getLocalSize(i) > (unsigned int)max) { in updateStandaloneQualifierDefaults() 9719 … workGroupSize->getWritableConstArray()[i].setUConst(intermediate.getLocalSize(i)); in updateStandaloneQualifierDefaults() 9793 if ((intermediate.getLocalSize(0) & 1) || in updateStandaloneQualifierDefaults() 9794 (intermediate.getLocalSize(1) & 1)) in updateStandaloneQualifierDefaults() 9804 if((intermediate.getLocalSize(0) * in updateStandaloneQualifierDefaults() 9805 intermediate.getLocalSize(1) * in updateStandaloneQualifierDefaults() 9806 intermediate.getLocalSize(2)) % 4 != 0) in updateStandaloneQualifierDefaults()
|
D | localintermediate.h | 615 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 | 871 … GLSLANG_EXPORT unsigned getLocalSize(int dim) const; // return dim'th local size
|
/third_party/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 1760 … dimConstId.push_back(builder.makeUintConstant(glslangIntermediate->getLocalSize(dim), specConst)); in TGlslangToSpvTraverser() 1769 …er.addExecutionMode(shaderEntry, spv::ExecutionModeLocalSize, glslangIntermediate->getLocalSize(0), in TGlslangToSpvTraverser() 1770 … glslangIntermediate->getLocalSize(1), in TGlslangToSpvTraverser() 1771 … glslangIntermediate->getLocalSize(2)); in TGlslangToSpvTraverser() 1895 … dimConstId.push_back(builder.makeUintConstant(glslangIntermediate->getLocalSize(dim), specConst)); in TGlslangToSpvTraverser() 1903 …er.addExecutionMode(shaderEntry, spv::ExecutionModeLocalSize, glslangIntermediate->getLocalSize(0), in TGlslangToSpvTraverser() 1904 … glslangIntermediate->getLocalSize(1), in TGlslangToSpvTraverser() 1905 … glslangIntermediate->getLocalSize(2)); in TGlslangToSpvTraverser() 9746 … 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 | 9307 if (intermediate.getLocalSize(i) > (unsigned int)max) in updateStandaloneQualifierDefaults() 9312 workGroupSize->getWritableConstArray()[i].setUConst(intermediate.getLocalSize(i)); in updateStandaloneQualifierDefaults()
|