rt(mtl): don't resize if the requested format differs from optimal format
This commit is contained in:
parent
856f69113d
commit
22b2118e97
|
@ -104,9 +104,14 @@ impl OwnedTexture {
|
||||||
if self.size != size
|
if self.size != size
|
||||||
|| (mipmap && self.max_miplevels == 1)
|
|| (mipmap && self.max_miplevels == 1)
|
||||||
|| (!mipmap && self.max_miplevels != 1)
|
|| (!mipmap && self.max_miplevels != 1)
|
||||||
|| format != select_optimal_pixel_format(format)
|
|| self.texture.pixelFormat() != select_optimal_pixel_format(format)
|
||||||
{
|
{
|
||||||
let mut new = OwnedTexture::new(device, size, self.max_miplevels, select_optimal_pixel_format(format))?;
|
let mut new = OwnedTexture::new(
|
||||||
|
device,
|
||||||
|
size,
|
||||||
|
self.max_miplevels,
|
||||||
|
select_optimal_pixel_format(format),
|
||||||
|
)?;
|
||||||
std::mem::swap(self, &mut new);
|
std::mem::swap(self, &mut new);
|
||||||
}
|
}
|
||||||
Ok(size)
|
Ok(size)
|
||||||
|
|
Loading…
Reference in a new issue