glsl: Remove Signed Integer variables
This commit is contained in:
parent
4759db28d0
commit
7d89a82a48
8 changed files with 13 additions and 43 deletions
|
@ -69,21 +69,11 @@ public:
|
|||
Add<GlslVarType::U32>(format_str, inst, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
void AddS32(const char* format_str, IR::Inst& inst, Args&&... args) {
|
||||
Add<GlslVarType::S32>(format_str, inst, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
void AddF32(const char* format_str, IR::Inst& inst, Args&&... args) {
|
||||
Add<GlslVarType::F32>(format_str, inst, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
void AddS64(const char* format_str, IR::Inst& inst, Args&&... args) {
|
||||
Add<GlslVarType::S64>(format_str, inst, args...);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
void AddU64(const char* format_str, IR::Inst& inst, Args&&... args) {
|
||||
Add<GlslVarType::U64>(format_str, inst, args...);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue