mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-19 02:25:46 -04:00
Add precompiled versions of D3D11 display shaders
This commit is contained in:
8
src/frontend-common/display_ps.hlsl
Normal file
8
src/frontend-common/display_ps.hlsl
Normal file
@ -0,0 +1,8 @@
|
||||
Texture2D samp0 : register(t0);
|
||||
SamplerState samp0_ss : register(s0);
|
||||
|
||||
void main(in float2 v_tex0 : TEXCOORD0,
|
||||
out float4 o_col0 : SV_Target)
|
||||
{
|
||||
o_col0 = samp0.Sample(samp0_ss, v_tex0);
|
||||
}
|
Reference in New Issue
Block a user