45 lines
1.5 KiB
HLSL
45 lines
1.5 KiB
HLSL
#include "xenos_draw.hlsli"
|
|
|
|
struct XeHSConstantDataOutput {
|
|
float edges[4] : SV_TessFactor;
|
|
float inside[2] : SV_InsideTessFactor;
|
|
};
|
|
|
|
XeHSConstantDataOutput XePatchConstant() {
|
|
XeHSConstantDataOutput output = (XeHSConstantDataOutput)0;
|
|
uint i;
|
|
|
|
// 1.0 already added to the factor on the CPU, according to the images in
|
|
// https://www.slideshare.net/blackdevilvikas/next-generation-graphics-programming-on-xbox-360
|
|
// (fractional_even also requires a factor of at least 2.0).
|
|
|
|
// Don't calculate any variables for SV_TessFactor outside of this loop, or
|
|
// everything will be broken - FXC will add code to make it calculated only
|
|
// once for all 4 fork instances, but doesn't do it properly.
|
|
[unroll] for (i = 0u; i < 4u; ++i) {
|
|
output.edges[i] = xe_tessellation_factor_range.y;
|
|
}
|
|
|
|
// Don't calculate any variables for SV_InsideTessFactor outside of this loop,
|
|
// or everything will be broken - FXC will add code to make it calculated only
|
|
// once for all 2 fork instances, but doesn't do it properly.
|
|
[unroll] for (i = 0u; i < 2u; ++i) {
|
|
output.inside[i] = xe_tessellation_factor_range.y;
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
[domain("quad")]
|
|
[partitioning("fractional_even")]
|
|
[outputtopology("triangle_cw")]
|
|
[outputcontrolpoints(4)]
|
|
[patchconstantfunc("XePatchConstant")]
|
|
XeHSControlPointOutput main(
|
|
InputPatch<XeHSControlPointInputIndexed, 4> xe_input_patch,
|
|
uint xe_control_point_id : SV_OutputControlPointID) {
|
|
XeHSControlPointOutput output;
|
|
output.index = xe_input_patch[xe_control_point_id].index;
|
|
return output;
|
|
}
|