mirror of
https://github.com/hedge-dev/UnleashedRecomp
synced 2026-09-01 18:19:55 -04:00
Use clamp texture addressing by default.
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user