mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Set render target textures to clamp to border by default
This commit is contained in:
parent
d995bfbdfb
commit
a120414d32
1 changed files with 2 additions and 0 deletions
|
@ -94,6 +94,7 @@ struct gl_render_target_traits
|
|||
.type(format.type)
|
||||
.format(format.format)
|
||||
.swizzle(format.swizzle.r, format.swizzle.g, format.swizzle.b, format.swizzle.a)
|
||||
.wrap(gl::texture::wrap::clamp_to_border, gl::texture::wrap::clamp_to_border, gl::texture::wrap::clamp_to_border)
|
||||
.apply();
|
||||
|
||||
__glcheck result->pixel_pack_settings().swap_bytes(format.swap_bytes).aligment(1);
|
||||
|
@ -120,6 +121,7 @@ struct gl_render_target_traits
|
|||
.type(format.type)
|
||||
.format(format.format)
|
||||
.internal_format(format.internal_format)
|
||||
.wrap(gl::texture::wrap::clamp_to_border, gl::texture::wrap::clamp_to_border, gl::texture::wrap::clamp_to_border)
|
||||
.apply();
|
||||
|
||||
__glcheck result->pixel_pack_settings().aligment(1);
|
||||
|
|
Loading…
Add table
Reference in a new issue