Home
last modified time | relevance | path

Searched refs:mAttributes (Results 1 – 12 of 12) sorted by relevance

/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DAttributeMap.cpp22 mAttributes[key] = value; in insert()
27 return (mAttributes.find(key) != mAttributes.end()); in contains()
32 auto iter = mAttributes.find(key); in get()
33 ASSERT(iter != mAttributes.end()); in get()
39 auto iter = mAttributes.find(key); in get()
40 return (iter != mAttributes.end()) ? iter->second : defaultValue; in get()
55 return mAttributes.empty(); in isEmpty()
61 for (const auto &pair : mAttributes) in toIntVector()
73 return mAttributes.begin(); in begin()
78 return mAttributes.end(); in end()
DAttributeMap.h44 auto iter = mAttributes.find(key); in getAsPackedEnum()
45 return (mAttributes.find(key) != mAttributes.end()) in getAsPackedEnum()
62 std::map<EGLAttrib, EGLAttrib> mAttributes;
DProgram.cpp1097 for (const sh::Attribute &attribute : mAttributes) in getAttributeLocation()
1639 mState.mAttributes.clear(); in unlink()
1895 ASSERT(index < mState.mAttributes.size()); in getActiveAttribute()
1896 const sh::Attribute &attrib = mState.mAttributes[index]; in getActiveAttribute()
1916 return static_cast<GLint>(mState.mAttributes.size()); in getActiveAttributeCount()
1929 for (const sh::Attribute &attrib : mState.mAttributes) in getActiveAttributeMaxLength()
1940 return mState.mAttributes; in getAttributes()
1979 return GetResourceIndexFromName(mState.mAttributes, std::string(name)); in getInputResourceIndex()
2035 getResourceName(index, mState.mAttributes, bufSize, length, name); in getInputResourceName()
2068 ASSERT(index < mState.mAttributes.size()); in getInputResource()
[all …]
DProgram.h324 const std::vector<sh::Attribute> &getAttributes() const { return mAttributes; } in getAttributes()
428 std::vector<sh::Attribute> mAttributes; variable
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DRemoveInactiveInterfaceVariables.cpp39 const std::vector<sh::ShaderVariable> &mAttributes; member in sh::__anon4ecd79e50111::RemoveInactiveInterfaceVariablesTraverser
56 mAttributes(attributes), in RemoveInactiveInterfaceVariablesTraverser()
125 removeDeclaration = !IsVariableActive(mAttributes, asSymbol->getName()); in visitDeclaration()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DRenderPipelineVk.cpp336 std::array<VkVertexInputAttributeDescription, kMaxVertexAttributes> mAttributes; in RenderPipeline() local
339 ComputeVertexInputDesc(vertexInput, &mBindings, &mAttributes); in RenderPipeline()
489 std::array<VkVertexInputAttributeDescription, kMaxVertexAttributes>* mAttributes) { in ComputeVertexInputDesc() argument
508 auto& attributeDesc = (*mAttributes)[attributeCount]; in ComputeVertexInputDesc()
525 mCreateInfo.pVertexAttributeDescriptions = &(*mAttributes)[0]; in ComputeVertexInputDesc()
DRenderPipelineVk.h37 std::array<VkVertexInputAttributeDescription, kMaxVertexAttributes>* mAttributes);
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DCompiler.h108 const std::vector<sh::Attribute> &getAttributes() const { return mAttributes; } in getAttributes()
171 std::vector<sh::Attribute> mAttributes; variable
DCompiler.cpp765 CollectVariables(root, &mAttributes, &mOutputVariables, &mUniforms, &mInputVaryings, in checkAndSimplifyAST()
1101 mAttributes.clear(); in clearResults()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DCompiler.h125 const std::vector<sh::ShaderVariable> &getAttributes() const { return mAttributes; } in getAttributes()
224 std::vector<sh::ShaderVariable> mAttributes; variable
DCompiler.cpp966 CollectVariables(root, &mAttributes, &mOutputVariables, &mUniforms, &mInputVaryings, in checkAndSimplifyAST()
1354 mAttributes.clear(); in clearResults()
DTranslatorMetalDirect.cpp792 for (const ShaderVariable &var : mAttributes) in translateImpl()