mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-04-22 02:11:38 +00:00
Use clamp texture addressing by default.
This commit is contained in:
parent
e6251bdbc3
commit
010c0a9fdf
1 changed files with 3 additions and 3 deletions
|
|
@ -1269,9 +1269,9 @@ namespace plume {
|
||||||
RenderFilter minFilter = RenderFilter::LINEAR;
|
RenderFilter minFilter = RenderFilter::LINEAR;
|
||||||
RenderFilter magFilter = RenderFilter::LINEAR;
|
RenderFilter magFilter = RenderFilter::LINEAR;
|
||||||
RenderMipmapMode mipmapMode = RenderMipmapMode::LINEAR;
|
RenderMipmapMode mipmapMode = RenderMipmapMode::LINEAR;
|
||||||
RenderTextureAddressMode addressU = RenderTextureAddressMode::WRAP;
|
RenderTextureAddressMode addressU = RenderTextureAddressMode::CLAMP;
|
||||||
RenderTextureAddressMode addressV = RenderTextureAddressMode::WRAP;
|
RenderTextureAddressMode addressV = RenderTextureAddressMode::CLAMP;
|
||||||
RenderTextureAddressMode addressW = RenderTextureAddressMode::WRAP;
|
RenderTextureAddressMode addressW = RenderTextureAddressMode::CLAMP;
|
||||||
float mipLODBias = 0.0f;
|
float mipLODBias = 0.0f;
|
||||||
uint32_t maxAnisotropy = 16;
|
uint32_t maxAnisotropy = 16;
|
||||||
bool anisotropyEnabled = false;
|
bool anisotropyEnabled = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue