Browse Source
node_helper: add IBitfieldExtract case
pull/15/merge
Nguyen Dac Nam
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
src/video_core/shader/node_helper.cpp
|
|
|
@ -68,6 +68,8 @@ OperationCode SignedToUnsignedCode(OperationCode operation_code, bool is_signed) |
|
|
|
return OperationCode::UBitwiseXor; |
|
|
|
case OperationCode::IBitwiseNot: |
|
|
|
return OperationCode::UBitwiseNot; |
|
|
|
case OperationCode::IBitfieldExtract: |
|
|
|
return OperationCode::UBitfieldExtract; |
|
|
|
case OperationCode::IBitfieldInsert: |
|
|
|
return OperationCode::UBitfieldInsert; |
|
|
|
case OperationCode::IBitCount: |
|
|
|
|