Mesa (gallium-0.1): pipebuffer: Fix copy'n'paste typo.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Tue Mar 3 12:01:19 UTC 2009


Module: Mesa
Branch: gallium-0.1
Commit: 9036e0d724dcefb7e15d9cc2020a25f87c93a04d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9036e0d724dcefb7e15d9cc2020a25f87c93a04d

Author: José Fonseca <jfonseca at vmware.com>
Date:   Tue Mar  3 12:01:01 2009 +0000

pipebuffer: Fix copy'n'paste typo.

---

 .../auxiliary/pipebuffer/pb_buffer_fenced.c        |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c b/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c
index 9282bca..1fb4ed8 100644
--- a/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c
+++ b/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c
@@ -302,7 +302,7 @@ fenced_buffer_map(struct pb_buffer *buf,
       ((fenced_buf->flags & PIPE_BUFFER_USAGE_GPU_READ) && (flags & PIPE_BUFFER_USAGE_CPU_WRITE))) {
       if(flags & PIPE_BUFFER_USAGE_DONTBLOCK) {
          /* Don't wait for the GPU to finish writing */
-         if(winsys->fence_finish(winsys, fenced_buf->fence, 0) == 0)
+         if(winsys->fence_signalled(winsys, fenced_buf->fence, 0) == 0)
             _fenced_buffer_remove(fenced_list, fenced_buf);
          else
             return NULL;




More information about the mesa-commit mailing list