summaryrefslogtreecommitdiffstatshomepage
path: root/hlsl/phosphor.fx
diff options
context:
space:
mode:
Diffstat (limited to 'hlsl/phosphor.fx')
-rw-r--r--hlsl/phosphor.fx12
1 files changed, 6 insertions, 6 deletions
diff --git a/hlsl/phosphor.fx b/hlsl/phosphor.fx
index 242c23d26a2..6512cc4739a 100644
--- a/hlsl/phosphor.fx
+++ b/hlsl/phosphor.fx
@@ -7,9 +7,9 @@ texture Diffuse;
sampler DiffuseSampler = sampler_state
{
Texture = <Diffuse>;
- MipFilter = POINT;
- MinFilter = POINT;
- MagFilter = POINT;
+ MipFilter = LINEAR;
+ MinFilter = LINEAR;
+ MagFilter = LINEAR;
AddressU = CLAMP;
AddressV = CLAMP;
AddressW = CLAMP;
@@ -20,9 +20,9 @@ texture LastPass;
sampler PreviousSampler = sampler_state
{
Texture = <LastPass>;
- MipFilter = POINT;
- MinFilter = POINT;
- MagFilter = POINT;
+ MipFilter = LINEAR;
+ MinFilter = LINEAR;
+ MagFilter = LINEAR;
AddressU = CLAMP;
AddressV = CLAMP;
AddressW = CLAMP;