mirror of
https://github.com/ong19th/Citron.git
synced 2025-12-12 22:37:00 +00:00
Downgrade Android SDK and build tools
- Reduce compileSdkVersion and targetSdk from 35 to 34 - Change NDK version to 26.1.10909125 - Downgrade Android Gradle Plugin from 8.8.0 to 8.1.2 - Add androidx.constraintlayout dependency These changes improve compatibility with current Android development environment and add necessary layout support.
This commit is contained in:
parent
43170513b6
commit
62de5aa9de
3 changed files with 7 additions and 7 deletions
|
|
@ -261,8 +261,7 @@ static U1 GetFlowTest(IREmitter& ir, FlowTest flow_test) {
|
|||
case FlowTest::RGT:
|
||||
return ir.LogicalAnd(ir.LogicalNot(ir.GetSFlag()), ir.LogicalNot(ir.GetZFlag()));
|
||||
case FlowTest::FCSM_TR:
|
||||
LOG_WARNING(Shader, "(STUBBED) FCSM_TR");
|
||||
return ir.Imm1(false);
|
||||
return ir.LogicalAnd(ir.GetSFlag(), ir.LogicalNot(ir.GetZFlag()));
|
||||
case FlowTest::CSM_TA:
|
||||
case FlowTest::CSM_TR:
|
||||
case FlowTest::CSM_MX:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue