Mesa (master): mesa: fix flags assignment in save_WaitSync()

Brian Paul brianp at kemper.freedesktop.org
Fri Nov 29 13:44:51 UTC 2013


Module: Mesa
Branch: master
Commit: 95d6ed22b3b33c1d3c748ef88db53866eb7c3f91
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=95d6ed22b3b33c1d3c748ef88db53866eb7c3f91

Author: Brian Paul <brianp at vmware.com>
Date:   Fri Nov 29 06:40:35 2013 -0700

mesa: fix flags assignment in save_WaitSync()

The flags value is a bitfield so use the union's 'bf' field, not 'e'
(enum) field.  There's no actual change in behavior here since both
fields of the union are the same size.

Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 src/mesa/main/dlist.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index 0b81327..74800da 100644
--- a/src/mesa/main/dlist.c
+++ b/src/mesa/main/dlist.c
@@ -6775,7 +6775,7 @@ save_WaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout)
       union uint64_pair p;
       p.uint64 = timeout;
       n[1].data = sync;
-      n[2].e = flags;
+      n[2].bf = flags;
       n[3].ui = p.uint32[0];
       n[4].ui = p.uint32[1];
    }




More information about the mesa-commit mailing list