Sha256: d30b50faee7889882baeb31ce1da8a29aa20f1544b4e7aa3678a8644e3fbdd73
Contents?: true
Size: 351 Bytes
Versions: 27
Compression:
Stored size: 351 Bytes
Contents
struct PSInput { float4 position : SV_POSITION; float4 color : COLOR; }; // Vertex shader PSInput VSMain(float4 position : POSITION, float4 color : COLOR) { PSInput result; result.position = position; result.color = color; return result; } // Pixel shader float4 PSMain(PSInput input) : SV_TARGET { return input.color; }
Version data entries
27 entries across 27 versions & 2 rubygems