Merge pull request #18984 from GermanAizek/fix-flag-after-9

[GPU] Fixed bug in GEExpressionFunctions::getFieldValue with GECmdField::FLAG_AFTER_9
This commit is contained in:
Henrik Rydgård 2024-04-04 15:51:44 +02:00 committed by GitHub
commit d0afdcd94f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -770,7 +770,7 @@ uint32_t GEExpressionFunctions::getFieldValue(GECmdFormat fmt, GECmdField field,
case GECmdField::FLAG_AFTER_8:
return (value >> 8) & 1;
case GECmdField::FLAG_AFTER_9:
return (value >> 8) & 1;
return (value >> 9) & 1;
case GECmdField::FLAG_AFTER_10:
return (value >> 10) & 1;
case GECmdField::FLAG_AFTER_11: