mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-16 21:58:21 +02:00
util/drirc_gen: fix generating 64-bit driconf options
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41881>
This commit is contained in:
parent
8e008649cb
commit
59d6d5e45f
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ class DrircUint64(DrircOption):
|
|||
self.value = value
|
||||
self.min_value = min_value
|
||||
self.max_value = max_value
|
||||
self.c_args = [f"{value}", f"{min_value}", f"{max_value}", f"\"{self.description}\""]
|
||||
self.c_args = [f"{value}ULL", f"{min_value}ULL", f"{max_value}ULL", f"\"{self.description}\""]
|
||||
|
||||
class DrircFloat(DrircOption):
|
||||
def __init__(self, name, value, min_value, max_value, description="", c_name=None):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue