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
1 additions and
2 deletions
-
src/video_core/shader/decode/memory.cpp
|
|
|
@ -46,8 +46,7 @@ Node GetAtomOperation(AtomicOp op, bool is_signed, Node memory, Node data) { |
|
|
|
return OperationCode::AtomicIExchange; |
|
|
|
} |
|
|
|
}(); |
|
|
|
return SignedOperation(operation_code, is_signed, std::move(memory), |
|
|
|
std::move(data)); |
|
|
|
return SignedOperation(operation_code, is_signed, std::move(memory), std::move(data)); |
|
|
|
} |
|
|
|
|
|
|
|
bool IsUnaligned(Tegra::Shader::UniformType uniform_type) { |
|
|
|
|