emit_glasm_context_get_and_set.cpp: Add missing semicolons
This commit is contained in:
		| @@ -164,14 +164,14 @@ void EmitGetPatch(EmitContext& ctx, IR::Inst& inst, IR::Patch patch) { | |||||||
|     } |     } | ||||||
|     const u32 index{IR::GenericPatchIndex(patch)}; |     const u32 index{IR::GenericPatchIndex(patch)}; | ||||||
|     const u32 element{IR::GenericPatchElement(patch)}; |     const u32 element{IR::GenericPatchElement(patch)}; | ||||||
|     ctx.Add("MOV.F {},result.patch.attrib[{}].{}", inst, index, "xyzw"[element]); |     ctx.Add("MOV.F {},result.patch.attrib[{}].{};", inst, index, "xyzw"[element]); | ||||||
| } | } | ||||||
|  |  | ||||||
| void EmitSetPatch(EmitContext& ctx, IR::Patch patch, ScalarF32 value) { | void EmitSetPatch(EmitContext& ctx, IR::Patch patch, ScalarF32 value) { | ||||||
|     if (IR::IsGeneric(patch)) { |     if (IR::IsGeneric(patch)) { | ||||||
|         const u32 index{IR::GenericPatchIndex(patch)}; |         const u32 index{IR::GenericPatchIndex(patch)}; | ||||||
|         const u32 element{IR::GenericPatchElement(patch)}; |         const u32 element{IR::GenericPatchElement(patch)}; | ||||||
|         ctx.Add("MOV.F result.patch.attrib[{}].{},{}", index, "xyzw"[element], value); |         ctx.Add("MOV.F result.patch.attrib[{}].{},{};", index, "xyzw"[element], value); | ||||||
|         return; |         return; | ||||||
|     } |     } | ||||||
|     switch (patch) { |     switch (patch) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user