dawn-cmake/src/dawn_native/Texture.h

117 lines
3.6 KiB
C
Raw Normal View History

// Copyright 2017 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_TEXTURE_H_
#define DAWNNATIVE_TEXTURE_H_
2018-07-24 11:53:51 +00:00
#include "dawn_native/Builder.h"
#include "dawn_native/Forward.h"
#include "dawn_native/RefCounted.h"
#include "dawn_native/dawn_platform.h"
namespace dawn_native {
2018-07-18 09:38:11 +00:00
uint32_t TextureFormatPixelSize(dawn::TextureFormat format);
bool TextureFormatHasDepth(dawn::TextureFormat format);
bool TextureFormatHasStencil(dawn::TextureFormat format);
bool TextureFormatHasDepthOrStencil(dawn::TextureFormat format);
2018-07-18 09:38:11 +00:00
static constexpr dawn::TextureUsageBit kReadOnlyTextureUsages =
dawn::TextureUsageBit::TransferSrc | dawn::TextureUsageBit::Sampled |
dawn::TextureUsageBit::Present;
2018-07-18 09:38:11 +00:00
static constexpr dawn::TextureUsageBit kWritableTextureUsages =
dawn::TextureUsageBit::TransferDst | dawn::TextureUsageBit::Storage |
dawn::TextureUsageBit::OutputAttachment;
class TextureBase : public RefCounted {
2017-11-24 18:59:42 +00:00
public:
TextureBase(TextureBuilder* builder);
2018-07-18 09:38:11 +00:00
dawn::TextureDimension GetDimension() const;
dawn::TextureFormat GetFormat() const;
2017-11-24 18:59:42 +00:00
uint32_t GetWidth() const;
uint32_t GetHeight() const;
uint32_t GetDepth() const;
uint32_t GetNumMipLevels() const;
dawn::TextureUsageBit GetUsage() const;
DeviceBase* GetDevice() const;
2017-11-24 18:59:42 +00:00
2018-07-18 13:20:28 +00:00
// Dawn API
2017-11-24 18:59:42 +00:00
TextureViewBuilder* CreateTextureViewBuilder();
private:
DeviceBase* mDevice;
2018-07-18 09:38:11 +00:00
dawn::TextureDimension mDimension;
dawn::TextureFormat mFormat;
2017-11-24 18:59:42 +00:00
uint32_t mWidth, mHeight, mDepth;
uint32_t mNumMipLevels;
dawn::TextureUsageBit mUsage = dawn::TextureUsageBit::None;
};
class TextureBuilder : public Builder<TextureBase> {
2017-11-24 18:59:42 +00:00
public:
TextureBuilder(DeviceBase* device);
2018-07-18 13:20:28 +00:00
// Dawn API
2018-07-18 09:38:11 +00:00
void SetDimension(dawn::TextureDimension dimension);
2017-11-24 18:59:42 +00:00
void SetExtent(uint32_t width, uint32_t height, uint32_t depth);
2018-07-18 09:38:11 +00:00
void SetFormat(dawn::TextureFormat format);
2017-11-24 18:59:42 +00:00
void SetMipLevels(uint32_t numMipLevels);
2018-07-18 09:38:11 +00:00
void SetAllowedUsage(dawn::TextureUsageBit usage);
void SetInitialUsage(dawn::TextureUsageBit usage);
2017-11-24 18:59:42 +00:00
private:
friend class TextureBase;
TextureBase* GetResultImpl() override;
int mPropertiesSet = 0;
2018-07-18 09:38:11 +00:00
dawn::TextureDimension mDimension;
2017-11-24 18:59:42 +00:00
uint32_t mWidth, mHeight, mDepth;
2018-07-18 09:38:11 +00:00
dawn::TextureFormat mFormat;
2017-11-24 18:59:42 +00:00
uint32_t mNumMipLevels;
2018-07-18 09:38:11 +00:00
dawn::TextureUsageBit mAllowedUsage = dawn::TextureUsageBit::None;
};
class TextureViewBase : public RefCounted {
2017-11-24 18:59:42 +00:00
public:
TextureViewBase(TextureViewBuilder* builder);
const TextureBase* GetTexture() const;
2017-11-24 18:59:42 +00:00
TextureBase* GetTexture();
2017-11-24 18:59:42 +00:00
private:
Ref<TextureBase> mTexture;
};
class TextureViewBuilder : public Builder<TextureViewBase> {
2017-11-24 18:59:42 +00:00
public:
TextureViewBuilder(DeviceBase* device, TextureBase* texture);
2017-11-24 18:59:42 +00:00
private:
friend class TextureViewBase;
2017-11-24 18:59:42 +00:00
TextureViewBase* GetResultImpl() override;
2017-11-24 18:59:42 +00:00
Ref<TextureBase> mTexture;
};
} // namespace dawn_native
#endif // DAWNNATIVE_TEXTURE_H_