initial commit
This commit is contained in:
@@ -0,0 +1,106 @@
|
||||
// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)'
|
||||
|
||||
Shader "Hidden/Fast Approximate Anti-aliasing"
|
||||
{
|
||||
Properties
|
||||
{
|
||||
_MainTex ("Texture", 2D) = "white" {}
|
||||
}
|
||||
|
||||
CGINCLUDE
|
||||
#pragma fragmentoption ARB_precision_hint_fastest
|
||||
|
||||
#if defined(SHADER_API_PS3)
|
||||
#define FXAA_PS3 1
|
||||
|
||||
// Shaves off 2 cycles from the shader
|
||||
#define FXAA_EARLY_EXIT 0
|
||||
#elif defined(SHADER_API_XBOX360)
|
||||
#define FXAA_360 1
|
||||
|
||||
// Shaves off 10ms from the shader's execution time
|
||||
#define FXAA_EARLY_EXIT 1
|
||||
#else
|
||||
#define FXAA_PC 1
|
||||
#endif
|
||||
|
||||
#define FXAA_HLSL_3 1
|
||||
#define FXAA_QUALITY__PRESET 39
|
||||
|
||||
#define FXAA_GREEN_AS_LUMA 1
|
||||
|
||||
#pragma target 3.0
|
||||
#include "FXAA3.cginc"
|
||||
|
||||
float4 _MainTex_TexelSize;
|
||||
|
||||
float3 _QualitySettings;
|
||||
float4 _ConsoleSettings;
|
||||
|
||||
struct Input
|
||||
{
|
||||
float4 position : POSITION;
|
||||
float2 uv : TEXCOORD0;
|
||||
};
|
||||
|
||||
struct Varying
|
||||
{
|
||||
float4 position : SV_POSITION;
|
||||
float2 uv : TEXCOORD0;
|
||||
};
|
||||
|
||||
Varying vertex(Input input)
|
||||
{
|
||||
Varying output;
|
||||
|
||||
output.position = UnityObjectToClipPos(input.position);
|
||||
output.uv = input.uv;
|
||||
|
||||
return output;
|
||||
}
|
||||
|
||||
sampler2D _MainTex;
|
||||
|
||||
float calculateLuma(float4 color)
|
||||
{
|
||||
return color.g * 1.963211 + color.r;
|
||||
}
|
||||
|
||||
fixed4 fragment(Varying input) : SV_Target
|
||||
{
|
||||
const float4 consoleUV = input.uv.xyxy + .5 * float4(-_MainTex_TexelSize.xy, _MainTex_TexelSize.xy);
|
||||
const float4 consoleSubpixelFrame = _ConsoleSettings.x * float4(-1., -1., 1., 1.) *
|
||||
_MainTex_TexelSize.xyxy;
|
||||
|
||||
const float4 consoleSubpixelFramePS3 = float4(-2., -2., 2., 2.) * _MainTex_TexelSize.xyxy;
|
||||
const float4 consoleSubpixelFrameXBOX = float4(8., 8., -4., -4.) * _MainTex_TexelSize.xyxy;
|
||||
|
||||
#if defined(SHADER_API_XBOX360)
|
||||
const float4 consoleConstants = float4(1., -1., .25, -.25);
|
||||
#else
|
||||
const float4 consoleConstants = float4(0., 0., 0., 0.);
|
||||
#endif
|
||||
|
||||
return FxaaPixelShader(input.uv, consoleUV, _MainTex, _MainTex, _MainTex, _MainTex_TexelSize.xy,
|
||||
consoleSubpixelFrame, consoleSubpixelFramePS3, consoleSubpixelFrameXBOX,
|
||||
_QualitySettings.x, _QualitySettings.y, _QualitySettings.z, _ConsoleSettings.y, _ConsoleSettings.z,
|
||||
_ConsoleSettings.w, consoleConstants);
|
||||
}
|
||||
ENDCG
|
||||
|
||||
SubShader
|
||||
{
|
||||
ZTest Always Cull Off ZWrite Off
|
||||
Fog { Mode off }
|
||||
|
||||
Pass
|
||||
{
|
||||
CGPROGRAM
|
||||
#pragma vertex vertex
|
||||
#pragma fragment fragment
|
||||
|
||||
#include "UnityCG.cginc"
|
||||
ENDCG
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3eaaee164ee0fed4d9a0bbe8434805a6
|
||||
timeCreated: 1453736553
|
||||
licenseType: Store
|
||||
ShaderImporter:
|
||||
defaultTextures: []
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,9 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b44d2ca11a7157e4db9f1e02f5249f95
|
||||
timeCreated: 1453990603
|
||||
licenseType: Store
|
||||
ShaderImporter:
|
||||
defaultTextures: []
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user