mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 02:37:57 -05:00
glsl: F16x2 storage atomics
This commit is contained in:
@ -43,6 +43,11 @@ public:
|
||||
Add<Type::U1>(format_str, inst, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
void AddF16x2(const char* format_str, IR::Inst& inst, Args&&... args) {
|
||||
Add<Type::F16x2>(format_str, inst, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
void AddU32(const char* format_str, IR::Inst& inst, Args&&... args) {
|
||||
Add<Type::U32>(format_str, inst, args...);
|
||||
|
Reference in New Issue
Block a user