Hash :
1bd82319
Author :
Date :
2024-03-22T05:00:11
Add RenderTargetWgpu Based on RenderTargetMtl without any multisampling support for now. Bug: angleproject:8582 Change-Id: I4c77e747b341f08a0dd88f507e6d805d34a01d24 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/5386899 Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: Liza Burakova <liza@chromium.org> Commit-Queue: Matthew Denton <mpdenton@chromium.org>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
//
// Copyright 2024 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// RenderTargetWgpu.h:
// Defines the class interface for RenderTargetWgpu.
//
#ifndef LIBANGLE_RENDERER_WGPU_RENDERTARGETWGPU_H_
#define LIBANGLE_RENDERER_WGPU_RENDERTARGETWGPU_H_
#include <dawn/webgpu_cpp.h>
#include <stdint.h>
#include "libANGLE/FramebufferAttachment.h"
#include "libANGLE/renderer/wgpu/wgpu_utils.h"
namespace rx
{
class RenderTargetWgpu final : public FramebufferAttachmentRenderTarget
{
public:
RenderTargetWgpu();
~RenderTargetWgpu() override;
// Used in std::vector initialization.
RenderTargetWgpu(RenderTargetWgpu &&other);
void set(const wgpu::TextureView &texture,
const webgpu::LevelIndex level,
uint32_t layer,
const wgpu::TextureFormat &format);
void setTexture(const wgpu::TextureView &texture);
void reset();
wgpu::TextureView getTexture() { return mTexture; }
private:
wgpu::TextureView mTexture;
webgpu::LevelIndex mLevelIndex{0};
uint32_t mLayerIndex = 0;
const wgpu::TextureFormat *mFormat = nullptr;
};
} // namespace rx
#endif // LIBANGLE_RENDERER_WGPU_RENDERTARGETWGPU_H_