56 lines
985 B
Plaintext
56 lines
985 B
Plaintext
struct Uniforms {
|
|
float4x4 projection;
|
|
float4x4 view;
|
|
float4x4 model;
|
|
float4 color;
|
|
bool hasTexture;
|
|
Sampler2D texture;
|
|
}
|
|
|
|
uniform Uniforms uniforms;
|
|
|
|
struct AssembledVertex {
|
|
float3 position : POSITION;
|
|
float2 texcoord : TEXCOORD;
|
|
};
|
|
|
|
struct Fragment {
|
|
float4 color;
|
|
};
|
|
|
|
struct VertexStageOutput {
|
|
float2 uv : UV;
|
|
float4 sv_position : SV_Position;
|
|
};
|
|
|
|
[shader("vertex")]
|
|
VertexStageOutput vertexMain(
|
|
AssembledVertex assembledVertex
|
|
) {
|
|
VertexStageOutput output;
|
|
|
|
float3 position = assembledVertex.position;
|
|
|
|
output.uv = assembledVertex.texcoord;
|
|
|
|
output.sv_position = mul(
|
|
float4(position, 1.0),
|
|
mul(uniforms.model, mul(uniforms.view, uniforms.projection))
|
|
);
|
|
|
|
return output;
|
|
}
|
|
|
|
[shader("fragment")]
|
|
Fragment fragmentMain(
|
|
float2 uv: UV
|
|
) : SV_Target {
|
|
Fragment output;
|
|
if (uniforms.hasTexture) {
|
|
output.color = uniforms.texture.Sample(uv) * uniforms.color;
|
|
} else {
|
|
output.color = uniforms.color;
|
|
}
|
|
|
|
return output;
|
|
} |