mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 14:08:05 +02:00
gfxstream: drop unnecessary semi-colons
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33384>
This commit is contained in:
parent
5f54beb307
commit
58938f7348
1 changed files with 8 additions and 8 deletions
|
|
@ -568,10 +568,10 @@ class VulkanCounting(VulkanWrapperGenerator):
|
|||
def structCountingDef(cgen):
|
||||
self.countingCodegen.cgen = cgen
|
||||
self.countingCodegen.currentStructInfo = structInfo
|
||||
cgen.stmt("(void)%s" % self.featureBitsVar);
|
||||
cgen.stmt("(void)%s" % self.rootTypeVar);
|
||||
cgen.stmt("(void)%s" % self.countVars[0]);
|
||||
cgen.stmt("(void)%s" % self.countVars[1]);
|
||||
cgen.stmt("(void)%s" % self.featureBitsVar)
|
||||
cgen.stmt("(void)%s" % self.rootTypeVar)
|
||||
cgen.stmt("(void)%s" % self.countVars[0])
|
||||
cgen.stmt("(void)%s" % self.countVars[1])
|
||||
|
||||
if category == "struct":
|
||||
# marshal 'let' parameters first
|
||||
|
|
@ -587,10 +587,10 @@ class VulkanCounting(VulkanWrapperGenerator):
|
|||
self.countingCodegen.cgen = cgen
|
||||
self.countingCodegen.currentStructInfo = structInfo
|
||||
self.countingCodegen.doFiltering = False
|
||||
cgen.stmt("(void)%s" % self.featureBitsVar);
|
||||
cgen.stmt("(void)%s" % self.rootTypeVar);
|
||||
cgen.stmt("(void)%s" % self.countVars[0]);
|
||||
cgen.stmt("(void)%s" % self.countVars[1]);
|
||||
cgen.stmt("(void)%s" % self.featureBitsVar)
|
||||
cgen.stmt("(void)%s" % self.rootTypeVar)
|
||||
cgen.stmt("(void)%s" % self.countVars[0])
|
||||
cgen.stmt("(void)%s" % self.countVars[1])
|
||||
|
||||
if category == "struct":
|
||||
# marshal 'let' parameters first
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue