only set array length for texture view arrays

This commit is contained in:
Samuliak 2024-12-10 16:44:31 +01:00
parent 434ffc9828
commit 74a1162a17
No known key found for this signature in database

View file

@ -2,6 +2,7 @@
#include "Cafe/HW/Latte/Renderer/Metal/LatteTextureMtl.h" #include "Cafe/HW/Latte/Renderer/Metal/LatteTextureMtl.h"
#include "Cafe/HW/Latte/Renderer/Metal/MetalRenderer.h" #include "Cafe/HW/Latte/Renderer/Metal/MetalRenderer.h"
#include "Cafe/HW/Latte/Renderer/Metal/LatteToMtl.h" #include "Cafe/HW/Latte/Renderer/Metal/LatteToMtl.h"
#include "Metal/MTLTexture.hpp"
uint32 LatteTextureMtl_AdjustTextureCompSel(Latte::E_GX2SURFFMT format, uint32 compSel) uint32 LatteTextureMtl_AdjustTextureCompSel(Latte::E_GX2SURFFMT format, uint32 compSel)
{ {
@ -158,20 +159,19 @@ MTL::Texture* LatteTextureViewMtl::CreateSwizzledView(uint32 gpuSamplerSwizzle)
uint32 baseLevel = firstMip; uint32 baseLevel = firstMip;
uint32 levelCount = this->numMip; uint32 levelCount = this->numMip;
uint32 baseLayer; uint32 baseLayer = 0;
uint32 layerCount; uint32 layerCount = 1;
// TODO: check if base texture is 3D texture as well // TODO: check if base texture is 3D texture as well
if (textureType == MTL::TextureType3D) if (textureType == MTL::TextureType3D)
{ {
cemu_assert_debug(firstMip == 0); cemu_assert_debug(firstMip == 0);
cemu_assert_debug(this->numSlice == baseTexture->depth); cemu_assert_debug(this->numSlice == baseTexture->depth);
baseLayer = 0;
layerCount = 1;
} }
else else
{ {
baseLayer = firstSlice; baseLayer = firstSlice;
layerCount = this->numSlice; if (textureType == MTL::TextureTypeCubeArray || textureType == MTL::TextureType2DArray)
layerCount = this->numSlice;
} }
MTL::TextureSwizzleChannels swizzle; MTL::TextureSwizzleChannels swizzle;