You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
534 B
17 lines
534 B
PackedVaryings vert(Attributes input) |
|
{ |
|
Varyings output = (Varyings)0; |
|
output = BuildVaryings(input); |
|
PackedVaryings packedOutput = PackVaryings(output); |
|
return packedOutput; |
|
} |
|
|
|
half4 frag(PackedVaryings packedInput) : SV_TARGET |
|
{ |
|
Varyings unpacked = UnpackVaryings(packedInput); |
|
|
|
SurfaceDescriptionInputs surfaceDescriptionInputs = BuildSurfaceDescriptionInputs(unpacked); |
|
SurfaceDescription surfaceDescription = SurfaceDescriptionFunction(surfaceDescriptionInputs); |
|
|
|
return surfaceDescription.Out; |
|
}
|
|
|