mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-06-28 00:38:45 +00:00
7 lines
176 B
HLSL
7 lines
176 B
HLSL
|
|
#include "VULKAN_PixelShader_Common.hlsli"
|
|
|
|
float4 main(PixelShaderInput input) : SV_TARGET
|
|
{
|
|
return GetOutputColor(texture0.Sample(sampler0, input.tex)) * input.color;
|
|
}
|