2018-07-18 09:40:26 +00:00
|
|
|
// Copyright 2017 The Dawn Authors
|
2017-04-20 18:38:20 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2017-07-06 18:41:13 +00:00
|
|
|
#ifndef BACKEND_TEXTURE_H_
|
|
|
|
#define BACKEND_TEXTURE_H_
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-07-06 18:41:13 +00:00
|
|
|
#include "backend/Builder.h"
|
2017-11-24 18:59:42 +00:00
|
|
|
#include "backend/Forward.h"
|
2017-07-06 18:41:13 +00:00
|
|
|
#include "backend/RefCounted.h"
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
#include "nxt/nxtcpp.h"
|
|
|
|
|
|
|
|
namespace backend {
|
|
|
|
|
2017-07-22 00:00:22 +00:00
|
|
|
uint32_t TextureFormatPixelSize(nxt::TextureFormat format);
|
2017-07-17 16:03:16 +00:00
|
|
|
bool TextureFormatHasDepth(nxt::TextureFormat format);
|
|
|
|
bool TextureFormatHasStencil(nxt::TextureFormat format);
|
2017-08-11 21:36:20 +00:00
|
|
|
bool TextureFormatHasDepthOrStencil(nxt::TextureFormat format);
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-10 16:03:22 +00:00
|
|
|
static constexpr nxt::TextureUsageBit kReadOnlyTextureUsages =
|
|
|
|
nxt::TextureUsageBit::TransferSrc | nxt::TextureUsageBit::Sampled |
|
|
|
|
nxt::TextureUsageBit::Present;
|
|
|
|
|
|
|
|
static constexpr nxt::TextureUsageBit kWritableTextureUsages =
|
|
|
|
nxt::TextureUsageBit::TransferDst | nxt::TextureUsageBit::Storage |
|
|
|
|
nxt::TextureUsageBit::OutputAttachment;
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
class TextureBase : public RefCounted {
|
2017-11-24 18:59:42 +00:00
|
|
|
public:
|
|
|
|
TextureBase(TextureBuilder* builder);
|
|
|
|
|
|
|
|
nxt::TextureDimension GetDimension() const;
|
|
|
|
nxt::TextureFormat GetFormat() const;
|
|
|
|
uint32_t GetWidth() const;
|
|
|
|
uint32_t GetHeight() const;
|
|
|
|
uint32_t GetDepth() const;
|
|
|
|
uint32_t GetNumMipLevels() const;
|
|
|
|
nxt::TextureUsageBit GetAllowedUsage() const;
|
2018-01-03 16:46:51 +00:00
|
|
|
DeviceBase* GetDevice() const;
|
2017-11-24 18:59:42 +00:00
|
|
|
|
|
|
|
// NXT API
|
|
|
|
TextureViewBuilder* CreateTextureViewBuilder();
|
|
|
|
|
|
|
|
private:
|
|
|
|
DeviceBase* mDevice;
|
|
|
|
|
|
|
|
nxt::TextureDimension mDimension;
|
|
|
|
nxt::TextureFormat mFormat;
|
|
|
|
uint32_t mWidth, mHeight, mDepth;
|
|
|
|
uint32_t mNumMipLevels;
|
|
|
|
nxt::TextureUsageBit mAllowedUsage = nxt::TextureUsageBit::None;
|
2017-04-20 18:38:20 +00:00
|
|
|
};
|
|
|
|
|
2017-05-08 13:17:44 +00:00
|
|
|
class TextureBuilder : public Builder<TextureBase> {
|
2017-11-24 18:59:42 +00:00
|
|
|
public:
|
|
|
|
TextureBuilder(DeviceBase* device);
|
|
|
|
|
|
|
|
// NXT API
|
|
|
|
void SetDimension(nxt::TextureDimension dimension);
|
|
|
|
void SetExtent(uint32_t width, uint32_t height, uint32_t depth);
|
|
|
|
void SetFormat(nxt::TextureFormat format);
|
|
|
|
void SetMipLevels(uint32_t numMipLevels);
|
|
|
|
void SetAllowedUsage(nxt::TextureUsageBit usage);
|
|
|
|
void SetInitialUsage(nxt::TextureUsageBit usage);
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class TextureBase;
|
|
|
|
|
|
|
|
TextureBase* GetResultImpl() override;
|
|
|
|
|
|
|
|
int mPropertiesSet = 0;
|
|
|
|
|
|
|
|
nxt::TextureDimension mDimension;
|
|
|
|
uint32_t mWidth, mHeight, mDepth;
|
|
|
|
nxt::TextureFormat mFormat;
|
|
|
|
uint32_t mNumMipLevels;
|
|
|
|
nxt::TextureUsageBit mAllowedUsage = nxt::TextureUsageBit::None;
|
2017-04-20 18:38:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class TextureViewBase : public RefCounted {
|
2017-11-24 18:59:42 +00:00
|
|
|
public:
|
|
|
|
TextureViewBase(TextureViewBuilder* builder);
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-05-02 22:10:13 +00:00
|
|
|
const TextureBase* GetTexture() const;
|
2017-11-24 18:59:42 +00:00
|
|
|
TextureBase* GetTexture();
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
private:
|
|
|
|
Ref<TextureBase> mTexture;
|
2017-04-20 18:38:20 +00:00
|
|
|
};
|
|
|
|
|
2017-05-08 13:17:44 +00:00
|
|
|
class TextureViewBuilder : public Builder<TextureViewBase> {
|
2017-11-24 18:59:42 +00:00
|
|
|
public:
|
|
|
|
TextureViewBuilder(DeviceBase* device, TextureBase* texture);
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
private:
|
|
|
|
friend class TextureViewBase;
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
TextureViewBase* GetResultImpl() override;
|
2017-05-08 13:17:44 +00:00
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
Ref<TextureBase> mTexture;
|
2017-04-20 18:38:20 +00:00
|
|
|
};
|
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
} // namespace backend
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-11-24 18:59:42 +00:00
|
|
|
#endif // BACKEND_TEXTURE_H_
|