summaryrefslogtreecommitdiff
path: root/contrib/SDL-3.2.8/src/render/vulkan/VULKAN_PixelShader_Textures.hlsl
blob: e665291bc3f125048cbe4b2f12b44754d168348c (plain)
1
2
3
4
5
6
7
#include "VULKAN_PixelShader_Common.hlsli"

float4 main(PixelShaderInput input) : SV_TARGET
{
    return GetOutputColor(texture0.Sample(sampler0, input.tex)) * input.color;
}