mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-10-10 03:49:04 +00:00
The parameters about vertex attribute were encapsulated in VertexAttributeDescriptor in web idl. This change construct this descriptor accordingly. BUG=dawn:107 Change-Id: Ia1c6e53af951d8f2a0c0b69bdca09291c2661e50 Reviewed-on: https://dawn-review.googlesource.com/c/4620 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Kai Ninomiya <kainino@chromium.org> Commit-Queue: Yunchao He <yunchao.he@intel.com>
110 lines
4.3 KiB
C++
110 lines
4.3 KiB
C++
// Copyright 2018 The Dawn Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include "dawn_native/vulkan/InputStateVk.h"
|
|
|
|
#include "common/BitSetIterator.h"
|
|
|
|
namespace dawn_native { namespace vulkan {
|
|
|
|
namespace {
|
|
|
|
VkVertexInputRate VulkanInputRate(dawn::InputStepMode stepMode) {
|
|
switch (stepMode) {
|
|
case dawn::InputStepMode::Vertex:
|
|
return VK_VERTEX_INPUT_RATE_VERTEX;
|
|
case dawn::InputStepMode::Instance:
|
|
return VK_VERTEX_INPUT_RATE_INSTANCE;
|
|
default:
|
|
UNREACHABLE();
|
|
}
|
|
}
|
|
|
|
VkFormat VulkanVertexFormat(dawn::VertexFormat format) {
|
|
switch (format) {
|
|
case dawn::VertexFormat::FloatR32G32B32A32:
|
|
return VK_FORMAT_R32G32B32A32_SFLOAT;
|
|
case dawn::VertexFormat::FloatR32G32B32:
|
|
return VK_FORMAT_R32G32B32_SFLOAT;
|
|
case dawn::VertexFormat::FloatR32G32:
|
|
return VK_FORMAT_R32G32_SFLOAT;
|
|
case dawn::VertexFormat::FloatR32:
|
|
return VK_FORMAT_R32_SFLOAT;
|
|
case dawn::VertexFormat::IntR32G32B32A32:
|
|
return VK_FORMAT_R32G32B32A32_SINT;
|
|
case dawn::VertexFormat::IntR32G32B32:
|
|
return VK_FORMAT_R32G32B32_SINT;
|
|
case dawn::VertexFormat::IntR32G32:
|
|
return VK_FORMAT_R32G32_SINT;
|
|
case dawn::VertexFormat::IntR32:
|
|
return VK_FORMAT_R32_SINT;
|
|
case dawn::VertexFormat::UshortR16G16B16A16:
|
|
return VK_FORMAT_R16G16B16A16_UINT;
|
|
case dawn::VertexFormat::UshortR16G16:
|
|
return VK_FORMAT_R16G16_UINT;
|
|
case dawn::VertexFormat::UnormR8G8B8A8:
|
|
return VK_FORMAT_R8G8B8A8_UNORM;
|
|
case dawn::VertexFormat::UnormR8G8:
|
|
return VK_FORMAT_R8G8_UNORM;
|
|
default:
|
|
UNREACHABLE();
|
|
}
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
InputState::InputState(InputStateBuilder* builder) : InputStateBase(builder) {
|
|
// Fill in the "binding info" that will be chained in the create info
|
|
uint32_t bindingCount = 0;
|
|
for (uint32_t i : IterateBitSet(GetInputsSetMask())) {
|
|
const auto& bindingInfo = GetInput(i);
|
|
|
|
auto& bindingDesc = mBindings[bindingCount];
|
|
bindingDesc.binding = i;
|
|
bindingDesc.stride = bindingInfo.stride;
|
|
bindingDesc.inputRate = VulkanInputRate(bindingInfo.stepMode);
|
|
|
|
bindingCount++;
|
|
}
|
|
|
|
// Fill in the "attribute info" that will be chained in the create info
|
|
uint32_t attributeCount = 0;
|
|
for (uint32_t i : IterateBitSet(GetAttributesSetMask())) {
|
|
const auto& attributeInfo = GetAttribute(i);
|
|
|
|
auto& attributeDesc = mAttributes[attributeCount];
|
|
attributeDesc.location = i;
|
|
attributeDesc.binding = attributeInfo.inputSlot;
|
|
attributeDesc.format = VulkanVertexFormat(attributeInfo.format);
|
|
attributeDesc.offset = attributeInfo.offset;
|
|
|
|
attributeCount++;
|
|
}
|
|
|
|
// Build the create info
|
|
mCreateInfo.sType = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO;
|
|
mCreateInfo.pNext = nullptr;
|
|
mCreateInfo.flags = 0;
|
|
mCreateInfo.vertexBindingDescriptionCount = bindingCount;
|
|
mCreateInfo.pVertexBindingDescriptions = mBindings.data();
|
|
mCreateInfo.vertexAttributeDescriptionCount = attributeCount;
|
|
mCreateInfo.pVertexAttributeDescriptions = mAttributes.data();
|
|
}
|
|
|
|
const VkPipelineVertexInputStateCreateInfo* InputState::GetCreateInfo() const {
|
|
return &mCreateInfo;
|
|
}
|
|
|
|
}} // namespace dawn_native::vulkan
|