 03e63fa805
			
		
	
	
		03e63fa805
		
	
	
	
	
		
			
			This generated code needs an optimization pass to eliminate the assignments to the opaque members.
		
			
				
	
	
		
			22 lines
		
	
	
		
			503 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			503 B
		
	
	
	
		
			GLSL
		
	
	
	
	
	
| struct FxaaTex { SamplerState smpl; Texture2D tex; };
 | |
| SamplerState g_tInputTexture_sampler; Texture2D g_tInputTexture;
 | |
| 
 | |
| float4 lookUp(FxaaTex tex)
 | |
| {
 | |
|     return tex.tex.Sample(tex.smpl, float2(0.3, 0.4));
 | |
| }
 | |
| 
 | |
| FxaaTex fillOpaque()
 | |
| {
 | |
|     FxaaTex t;
 | |
|     t.smpl = g_tInputTexture_sampler;
 | |
|     t.tex = g_tInputTexture;
 | |
|     return t;
 | |
| }
 | |
| 
 | |
| float4 main() : SV_TARGET0
 | |
| {
 | |
|     FxaaTex tex1 = { g_tInputTexture_sampler, g_tInputTexture };
 | |
|     FxaaTex tex2 = fillOpaque();
 | |
|     return lookUp(tex1);
 | |
| } |