Branch
Hash :
085ff15a
Author :
Date :
2024-03-26T03:33:26
Metal: Fix RenderTargetMtl::getFormat() could return nullptr. Bug: b/326301256 Change-Id: Ia8914e4bc77e34bd510661689837b97d5de82d92 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/5394149 Reviewed-by: Geoff Lang <geofflang@chromium.org> Commit-Queue: Quyen Le <lehoangquyen@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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
//
// Copyright 2019 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.
//
// RenderTargetMtl.mm:
// Implements the class methods for RenderTargetMtl.
//
#include "libANGLE/renderer/metal/RenderTargetMtl.h"
namespace rx
{
RenderTargetMtl::RenderTargetMtl() {}
RenderTargetMtl::~RenderTargetMtl()
{
reset();
}
void RenderTargetMtl::set(const mtl::TextureRef &texture,
const mtl::MipmapNativeLevel &level,
uint32_t layer,
const mtl::Format &format)
{
setWithImplicitMSTexture(texture, nullptr, level, layer, format);
}
void RenderTargetMtl::setWithImplicitMSTexture(const mtl::TextureRef &texture,
const mtl::TextureRef &implicitMSTexture,
const mtl::MipmapNativeLevel &level,
uint32_t layer,
const mtl::Format &format)
{
mTexture = texture;
mImplicitMSTexture = implicitMSTexture;
mLevelIndex = level;
mLayerIndex = layer;
mFormat = format;
}
void RenderTargetMtl::setTexture(const mtl::TextureRef &texture)
{
mTexture = texture;
}
void RenderTargetMtl::setImplicitMSTexture(const mtl::TextureRef &implicitMSTexture)
{
mImplicitMSTexture = implicitMSTexture;
}
void RenderTargetMtl::duplicateFrom(const RenderTargetMtl &src)
{
setWithImplicitMSTexture(src.getTexture(), src.getImplicitMSTexture(), src.getLevelIndex(),
src.getLayerIndex(), src.getFormat());
}
void RenderTargetMtl::reset()
{
mTexture.reset();
mImplicitMSTexture.reset();
mLevelIndex = mtl::kZeroNativeMipLevel;
mLayerIndex = 0;
mFormat = mtl::Format();
}
uint32_t RenderTargetMtl::getRenderSamples() const
{
mtl::TextureRef implicitMSTex = getImplicitMSTexture();
mtl::TextureRef tex = getTexture();
return implicitMSTex ? implicitMSTex->samples() : (tex ? tex->samples() : 1);
}
void RenderTargetMtl::toRenderPassAttachmentDesc(mtl::RenderPassAttachmentDesc *rpaDescOut) const
{
rpaDescOut->texture = mTexture.lock();
rpaDescOut->implicitMSTexture = mImplicitMSTexture.lock();
rpaDescOut->level = mLevelIndex;
rpaDescOut->sliceOrDepth = mLayerIndex;
rpaDescOut->blendable = mFormat.getCaps().blendable;
}
} // namespace rx