mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-23 03:02:53 +01:00
gl: Silence compiler warning
This commit is contained in:
parent
82439327fa
commit
453e1bfaec
@ -609,7 +609,7 @@ namespace gl
|
||||
}
|
||||
case texture::target::textureCUBE:
|
||||
{
|
||||
const subresource_range range = { image_aspect::depth | image_aspect::color, dst_level, 1, dst_region.z , 1 };
|
||||
const subresource_range range = { image_aspect::depth | image_aspect::color, static_cast<GLuint>(dst_level), 1, dst_region.z , 1 };
|
||||
scratch_view = std::make_unique<gl::texture_view>(dst, GL_TEXTURE_2D, range);
|
||||
break;
|
||||
}
|
||||
@ -619,7 +619,7 @@ namespace gl
|
||||
|
||||
if (dst->levels() > 1) [[ likely ]]
|
||||
{
|
||||
const subresource_range range = { image_aspect::depth | image_aspect::color, dst_level, 1, 0 , 1 };
|
||||
const subresource_range range = { image_aspect::depth | image_aspect::color, static_cast<GLuint>(dst_level), 1, 0 , 1 };
|
||||
scratch_view = std::make_unique<gl::texture_view>(dst, GL_TEXTURE_2D, range);
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user