diff options
author | Eric Engestrom <[email protected]> | 2017-06-19 00:16:51 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2017-06-21 21:42:14 +0100 |
commit | 4a1238a452a7e49a6717506ffdbaeab18d90a6be (patch) | |
tree | 5af8a8989085fbfdf2d01a42135ac14a278f32ca /src/gallium/auxiliary/vl | |
parent | 60f984262c4d4c3c3828eb2eec3dc07c63922ece (diff) |
egl: turn one more boolean `int` into a `bool`
Same as the previous commit, but this one was split out because it's
a bit more complicated: this field is given as a pointer to a function,
so the function had to be changed as well, and the function was use in
a bunch of places, which needed updating as well.
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_winsys_dri3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_winsys_dri3.c b/src/gallium/auxiliary/vl/vl_winsys_dri3.c index c7c615b3958..8251087f3f9 100644 --- a/src/gallium/auxiliary/vl/vl_winsys_dri3.c +++ b/src/gallium/auxiliary/vl/vl_winsys_dri3.c @@ -89,7 +89,7 @@ struct vl_dri3_screen int64_t last_ust, ns_frame, last_msc, next_msc; bool flushed; - int is_different_gpu; + bool is_different_gpu; }; static void |