Home
last modified time | relevance | path

Searched refs:kMaxVertexAttributes (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/dawn_native/
DRenderPipeline.h68 const ityp::bitset<VertexAttributeLocation, kMaxVertexAttributes>&
120 ityp::bitset<VertexAttributeLocation, kMaxVertexAttributes> mAttributeLocationsUsed;
121 ityp::array<VertexAttributeLocation, VertexAttributeInfo, kMaxVertexAttributes>
DShaderModule.h178 ityp::array<VertexAttributeLocation, VertexFormatBaseType, kMaxVertexAttributes>
180 ityp::bitset<VertexAttributeLocation, kMaxVertexAttributes> usedVertexInputs;
DRenderPipeline.cpp121 ityp::bitset<VertexAttributeLocation, kMaxVertexAttributes>* attributesSetMask) { in ValidateVertexAttribute()
126 attribute->shaderLocation >= kMaxVertexAttributes, in ValidateVertexAttribute()
129 attribute->shaderLocation, kMaxVertexAttributes); in ValidateVertexAttribute()
176 ityp::bitset<VertexAttributeLocation, kMaxVertexAttributes>* attributesSetMask) { in ValidateVertexBufferLayout()
215 ityp::bitset<VertexAttributeLocation, kMaxVertexAttributes> attributesSetMask; in ValidateVertexState()
228 ASSERT(totalAttributesNum <= kMaxVertexAttributes); in ValidateVertexState()
726 const ityp::bitset<VertexAttributeLocation, kMaxVertexAttributes>&
DIntegerTypes.h44 VertexAttributeLocation(kMaxVertexAttributes);
DAdapter.cpp47 std::min(mLimits.v1.maxVertexAttributes, uint32_t(kMaxVertexAttributes)); in Initialize()
DShaderModule.cpp726 DAWN_INVALID_IF(unsanitizedLocation >= kMaxVertexAttributes, in ReflectShaderUsingTint()
729 inputVar.name, unsanitizedLocation, kMaxVertexAttributes); in ReflectShaderUsingTint()
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DRenderPipelineGL.h36 ityp::bitset<VertexAttributeLocation, kMaxVertexAttributes> GetAttributesUsingVertexBuffer(
55 ityp::bitset<VertexAttributeLocation, kMaxVertexAttributes>,
DRenderPipelineGL.cpp251 ityp::bitset<VertexAttributeLocation, kMaxVertexAttributes>
/third_party/skia/third_party/externals/dawn/src/utils/
DComboRenderPipelineDescriptor.h38 std::array<wgpu::VertexAttribute, kMaxVertexAttributes> cAttributes;
54 std::array<wgpu::VertexAttribute, kMaxVertexAttributes> cAttributes;
DComboRenderPipelineDescriptor.cpp29 for (uint32_t i = 0; i < kMaxVertexAttributes; ++i) { in ComboVertexState()
57 for (uint32_t i = 0; i < kMaxVertexAttributes; ++i) { in ComboRenderPipelineDescriptor()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DVertexStateValidationTests.cpp185 state.cVertexBuffers[0].attributeCount = kMaxVertexAttributes; in TEST_F()
186 for (uint32_t i = 0; i < kMaxVertexAttributes; ++i) { in TEST_F()
193 state.cVertexBuffers[1].attributes = &state.cAttributes[kMaxVertexAttributes - 1]; in TEST_F()
272 state.cAttributes[0].shaderLocation = kMaxVertexAttributes - 1; in TEST_F()
276 state.cAttributes[0].shaderLocation = kMaxVertexAttributes; in TEST_F()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DRenderPipelineVk.h49 std::array<VkVertexInputAttributeDescription, kMaxVertexAttributes> attributes;
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DRenderPipelineD3D12.h53 std::array<D3D12_INPUT_ELEMENT_DESC, kMaxVertexAttributes>* inputElementDescriptors);
DRenderPipelineD3D12.cpp370 std::array<D3D12_INPUT_ELEMENT_DESC, kMaxVertexAttributes> inputElementDescriptors; in Initialize()
449 std::array<D3D12_INPUT_ELEMENT_DESC, kMaxVertexAttributes>* inputElementDescriptors) { in ComputeInputLayout()
/third_party/skia/third_party/externals/dawn/src/common/
DConstants.h21 static constexpr uint8_t kMaxVertexAttributes = 16u; variable
/third_party/vk-gl-cts/external/amber/src/src/dawn/
Dengine_dawn.cc46 static const uint32_t kMaxVertexAttributes = 16u; variable
66 for (uint32_t i = 0; i < kMaxVertexAttributes; ++i) { in ComboVertexInputDescriptor()
96 std::array<::dawn::VertexAttributeDescriptor, kMaxVertexAttributes>
/third_party/skia/src/gpu/vk/
DGrVkCaps.cpp622 static const uint32_t kMaxVertexAttributes = 64; in initGrCaps() local
623 … fMaxVertexAttributes = std::min(properties.limits.maxVertexInputAttributes, kMaxVertexAttributes); in initGrCaps()