mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
spirv: Fix alpha test
This commit is contained in:
parent
6f4a1c8dcf
commit
ab3831f6cb
1 changed files with 5 additions and 0 deletions
|
@ -65,6 +65,10 @@ void AlphaTest(EmitContext& ctx) {
|
||||||
if (comparison == CompareFunction::Always) {
|
if (comparison == CompareFunction::Always) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (!Sirit::ValidId(ctx.frag_color[0])) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const Id type{ctx.F32[1]};
|
const Id type{ctx.F32[1]};
|
||||||
const Id rt0_color{ctx.OpLoad(ctx.F32[4], ctx.frag_color[0])};
|
const Id rt0_color{ctx.OpLoad(ctx.F32[4], ctx.frag_color[0])};
|
||||||
const Id alpha{ctx.OpCompositeExtract(type, rt0_color, 3u)};
|
const Id alpha{ctx.OpCompositeExtract(type, rt0_color, 3u)};
|
||||||
|
@ -74,6 +78,7 @@ void AlphaTest(EmitContext& ctx) {
|
||||||
const Id alpha_reference{ctx.Constant(ctx.F32[1], ctx.profile.alpha_test_reference)};
|
const Id alpha_reference{ctx.Constant(ctx.F32[1], ctx.profile.alpha_test_reference)};
|
||||||
const Id condition{ComparisonFunction(ctx, comparison, alpha, alpha_reference)};
|
const Id condition{ComparisonFunction(ctx, comparison, alpha, alpha_reference)};
|
||||||
|
|
||||||
|
ctx.OpSelectionMerge(true_label, spv::SelectionControlMask::MaskNone);
|
||||||
ctx.OpBranchConditional(condition, true_label, discard_label);
|
ctx.OpBranchConditional(condition, true_label, discard_label);
|
||||||
ctx.AddLabel(discard_label);
|
ctx.AddLabel(discard_label);
|
||||||
ctx.OpKill();
|
ctx.OpKill();
|
||||||
|
|
Loading…
Reference in a new issue