Home
last modified time | relevance | path

Searched refs:propFlags (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/gpu/vk/
DGrVkMemory.cpp44 AllocationPropertyFlags propFlags; in AllocAndBindBufferMemory() local
55 propFlags = AllocationPropertyFlags::kPersistentlyMapped; in AllocAndBindBufferMemory()
57 propFlags = AllocationPropertyFlags::kNone; in AllocAndBindBufferMemory()
60 if (!allocator->allocateMemoryForBuffer(buffer, usage, propFlags, &memory)) { in AllocAndBindBufferMemory()
100 AllocationPropertyFlags propFlags; in AllocAndBindImageMemory() local
102 propFlags = AllocationPropertyFlags::kDedicatedAllocation; in AllocAndBindImageMemory()
104 propFlags = AllocationPropertyFlags::kNone; in AllocAndBindImageMemory()
107 if (!allocator->allocateMemoryForImage(image, propFlags, &memory)) { in AllocAndBindImageMemory()
/external/skqp/src/gpu/vk/
DGrVkMemory.cpp44 AllocationPropertyFlags propFlags; in AllocAndBindBufferMemory() local
55 propFlags = AllocationPropertyFlags::kPersistentlyMapped; in AllocAndBindBufferMemory()
57 propFlags = AllocationPropertyFlags::kNone; in AllocAndBindBufferMemory()
60 if (!allocator->allocateMemoryForBuffer(buffer, usage, propFlags, &memory)) { in AllocAndBindBufferMemory()
100 AllocationPropertyFlags propFlags; in AllocAndBindImageMemory() local
102 propFlags = AllocationPropertyFlags::kDedicatedAllocation; in AllocAndBindImageMemory()
104 propFlags = AllocationPropertyFlags::kNone; in AllocAndBindImageMemory()
107 if (!allocator->allocateMemoryForImage(image, propFlags, &memory)) { in AllocAndBindImageMemory()
/external/deqp/modules/gles31/functional/
Des31fProgramInterfaceQueryTestCase.cpp1712 , propFlags(propFlags_) in ProgramResourceQueryTestTarget()
1716 …ROGRAMINTERFACE_UNIFORM: DE_ASSERT((propFlags & PROGRAMRESOURCEPROP_UNIFORM_INTERFACE_MASK) … in ProgramResourceQueryTestTarget()
1717 …INTERFACE_UNIFORM_BLOCK: DE_ASSERT((propFlags & PROGRAMRESOURCEPROP_UNIFORM_BLOCK_INTERFACE_MAS… in ProgramResourceQueryTestTarget()
1718 …FACE_SHADER_STORAGE_BLOCK: DE_ASSERT((propFlags & PROGRAMRESOURCEPROP_SHADER_STORAGE_BLOCK_MASK)… in ProgramResourceQueryTestTarget()
1719 …GRAMINTERFACE_PROGRAM_INPUT: DE_ASSERT((propFlags & PROGRAMRESOURCEPROP_PROGRAM_INPUT_MASK) … in ProgramResourceQueryTestTarget()
1720 …AMINTERFACE_PROGRAM_OUTPUT: DE_ASSERT((propFlags & PROGRAMRESOURCEPROP_PROGRAM_OUTPUT_MASK) … in ProgramResourceQueryTestTarget()
1721 …MINTERFACE_BUFFER_VARIABLE: DE_ASSERT((propFlags & PROGRAMRESOURCEPROP_BUFFER_VARIABLE_MASK) … in ProgramResourceQueryTestTarget()
1722 …RANSFORM_FEEDBACK_VARYING: DE_ASSERT((propFlags & PROGRAMRESOURCEPROP_TRANSFORM_FEEDBACK_VARYING_M… in ProgramResourceQueryTestTarget()
2100 if (m_queryTarget.propFlags == PROGRAMRESOURCEPROP_IS_PER_PATCH) in getAndCheckProgramDefinition()
2228 if (allProperties[propNdx].validator->isSelected(m_queryTarget.propFlags) && in iterate()
[all …]
Des31fProgramInterfaceQueryTestCase.hpp42 deUint32 propFlags; member