Reviewed-by: Jason Ekstrand <[email protected]> On Fri, Jul 6, 2018 at 2:06 PM Lionel Landwerlin < [email protected]> wrote:
> Signed-off-by: Lionel Landwerlin <[email protected]> > --- > src/vulkan/util/gen_enum_to_str.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/vulkan/util/gen_enum_to_str.py > b/src/vulkan/util/gen_enum_to_str.py > index bf883d5cb8f..fb9ecd65c6d 100644 > --- a/src/vulkan/util/gen_enum_to_str.py > +++ b/src/vulkan/util/gen_enum_to_str.py > @@ -172,7 +172,7 @@ class VkEnum(object): > def add_value_from_xml(self, elem, extension=None): > if 'value' in elem.attrib: > self.add_value(elem.attrib['name'], > - value=int(elem.attrib['value'])) > + value=int(elem.attrib['value'], base=0)) > elif 'alias' in elem.attrib: > self.add_value(elem.attrib['name'], > value=self.name_to_value[elem.attrib['alias']]) > -- > 2.18.0 > >
_______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
