diff options
Diffstat (limited to 'src/gallium/drivers/r600/r600.h')
-rw-r--r-- | src/gallium/drivers/r600/r600.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600.h b/src/gallium/drivers/r600/r600.h index 28c1ee15ce3..f04bcae1e51 100644 --- a/src/gallium/drivers/r600/r600.h +++ b/src/gallium/drivers/r600/r600.h @@ -164,7 +164,10 @@ struct r600_range { }; struct r600_query { - u64 result; + union { + uint64_t u64; + boolean b; + } result; /* The kind of query */ unsigned type; /* Offset of the first result for current query */ |