2019-07-18 09:25:04 +00:00
|
|
|
// 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_FORMAT_H_
|
|
|
|
#define DAWNNATIVE_FORMAT_H_
|
|
|
|
|
|
|
|
#include "dawn_native/dawn_platform.h"
|
|
|
|
|
2020-07-30 15:25:37 +00:00
|
|
|
#include "common/ityp_bitset.h"
|
2019-07-18 09:25:04 +00:00
|
|
|
#include "dawn_native/Error.h"
|
|
|
|
|
2020-07-30 15:25:37 +00:00
|
|
|
#include "dawn_native/EnumClassBitmasks.h"
|
|
|
|
|
2019-07-18 09:25:04 +00:00
|
|
|
#include <array>
|
|
|
|
|
|
|
|
namespace dawn_native {
|
|
|
|
|
2020-07-30 15:25:37 +00:00
|
|
|
enum class Aspect : uint8_t;
|
2019-07-18 09:25:04 +00:00
|
|
|
class DeviceBase;
|
|
|
|
|
2020-07-30 15:29:57 +00:00
|
|
|
struct TexelBlockInfo {
|
|
|
|
uint32_t blockByteSize;
|
|
|
|
uint32_t blockWidth;
|
|
|
|
uint32_t blockHeight;
|
|
|
|
};
|
|
|
|
|
2019-07-18 09:25:04 +00:00
|
|
|
// The number of formats Dawn knows about. Asserts in BuildFormatTable ensure that this is the
|
|
|
|
// exact number of known format.
|
2019-08-20 20:58:01 +00:00
|
|
|
static constexpr size_t kKnownFormatCount = 52;
|
2019-07-18 09:25:04 +00:00
|
|
|
|
2019-10-23 11:57:41 +00:00
|
|
|
// A wgpu::TextureFormat along with all the information about it necessary for validation.
|
2020-07-30 15:29:57 +00:00
|
|
|
struct Format : TexelBlockInfo {
|
2020-07-30 15:25:37 +00:00
|
|
|
enum class Type {
|
2019-08-21 12:16:33 +00:00
|
|
|
Float,
|
|
|
|
Sint,
|
|
|
|
Uint,
|
|
|
|
Other,
|
|
|
|
};
|
|
|
|
|
2019-10-23 11:57:41 +00:00
|
|
|
wgpu::TextureFormat format;
|
2019-07-18 09:25:04 +00:00
|
|
|
bool isRenderable;
|
|
|
|
bool isCompressed;
|
|
|
|
// A format can be known but not supported because it is part of a disabled extension.
|
|
|
|
bool isSupported;
|
2020-01-15 00:09:42 +00:00
|
|
|
bool supportsStorageUsage;
|
2019-08-21 12:16:33 +00:00
|
|
|
Type type;
|
2020-07-30 15:25:37 +00:00
|
|
|
Aspect aspects;
|
2019-07-18 09:25:04 +00:00
|
|
|
|
2019-10-31 09:51:11 +00:00
|
|
|
static Type TextureComponentTypeToFormatType(wgpu::TextureComponentType componentType);
|
2019-11-22 17:02:22 +00:00
|
|
|
static wgpu::TextureComponentType FormatTypeToTextureComponentType(Type type);
|
2019-10-31 09:51:11 +00:00
|
|
|
|
2019-07-18 09:25:04 +00:00
|
|
|
bool IsColor() const;
|
|
|
|
bool HasDepth() const;
|
|
|
|
bool HasStencil() const;
|
|
|
|
bool HasDepthOrStencil() const;
|
2020-03-27 18:54:03 +00:00
|
|
|
bool HasComponentType(Type componentType) const;
|
2019-07-18 09:25:04 +00:00
|
|
|
|
2020-07-30 15:29:57 +00:00
|
|
|
TexelBlockInfo GetTexelBlockInfo(wgpu::TextureAspect aspect) const;
|
2020-08-06 17:00:29 +00:00
|
|
|
TexelBlockInfo GetTexelBlockInfo(Aspect aspect) const;
|
2020-07-30 15:29:57 +00:00
|
|
|
|
2019-07-18 09:25:04 +00:00
|
|
|
// The index of the format in the list of all known formats: a unique number for each format
|
|
|
|
// in [0, kKnownFormatCount)
|
|
|
|
size_t GetIndex() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Implementation details of the format table in the device.
|
|
|
|
|
|
|
|
using FormatTable = std::array<Format, kKnownFormatCount>;
|
|
|
|
|
|
|
|
// Returns the index of a format in the FormatTable.
|
2019-10-23 11:57:41 +00:00
|
|
|
size_t ComputeFormatIndex(wgpu::TextureFormat format);
|
2019-07-18 09:25:04 +00:00
|
|
|
// Builds the format table with the extensions enabled on the device.
|
|
|
|
FormatTable BuildFormatTable(const DeviceBase* device);
|
|
|
|
|
|
|
|
} // namespace dawn_native
|
|
|
|
|
|
|
|
#endif // DAWNNATIVE_FORMAT_H_
|