mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-03 19:55:56 +00:00
This patch adds the workaround for the Vulkan SPEC issue in the T2T copies with compressed formats when the parameter "extent" fitting in one subresource but not fitting in another. You can get the detail of the issue through the following link: https://github.com/KhronosGroup/Vulkan-Docs/issues/1005 This patch implements the workaround for this issue by splitting the affected T2T copy into a T2B and a B2T copy with an internal buffer. BUG=dawn:42 TEST=dawn_end2end_tests Change-Id: I29c48da0b5ff85f9860839a82733e8c1c43acfc6 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/10020 Reviewed-by: Austin Eng <enga@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Jiawei Shao <jiawei.shao@intel.com>
66 lines
2.1 KiB
C++
66 lines
2.1 KiB
C++
// Copyright 2019 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.
|
|
|
|
#ifndef DAWNNATIVE_TOGGLES_H_
|
|
#define DAWNNATIVE_TOGGLES_H_
|
|
|
|
#include <bitset>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
#include "dawn_native/DawnNative.h"
|
|
|
|
namespace dawn_native {
|
|
|
|
enum class Toggle {
|
|
EmulateStoreAndMSAAResolve,
|
|
NonzeroClearResourcesOnCreationForTesting,
|
|
AlwaysResolveIntoZeroLevelAndLayer,
|
|
LazyClearResourceOnFirstUse,
|
|
UseTemporaryBufferInCompressedTextureToTextureCopy,
|
|
|
|
EnumCount,
|
|
InvalidEnum = EnumCount,
|
|
};
|
|
|
|
// A wrapper of the bitset to store if a toggle is enabled or not. This wrapper provides the
|
|
// convenience to convert the enums of enum class Toggle to the indices of a bitset.
|
|
struct TogglesSet {
|
|
std::bitset<static_cast<size_t>(Toggle::EnumCount)> toggleBitset;
|
|
|
|
void SetToggle(Toggle toggle, bool enabled);
|
|
bool IsEnabled(Toggle toggle) const;
|
|
std::vector<const char*> GetEnabledToggleNames() const;
|
|
};
|
|
|
|
const char* ToggleEnumToName(Toggle toggle);
|
|
|
|
class TogglesInfo {
|
|
public:
|
|
// Used to query the details of a toggle. Return nullptr if toggleName is not a valid name
|
|
// of a toggle supported in Dawn.
|
|
const ToggleInfo* GetToggleInfo(const char* toggleName);
|
|
Toggle ToggleNameToEnum(const char* toggleName);
|
|
|
|
private:
|
|
void EnsureToggleNameToEnumMapInitialized();
|
|
|
|
bool mToggleNameToEnumMapInitialized = false;
|
|
std::unordered_map<std::string, Toggle> mToggleNameToEnumMap;
|
|
};
|
|
|
|
} // namespace dawn_native
|
|
|
|
#endif // DAWNNATIVE_TOGGLES_H_
|