Mesa (master): softpipe: add casts to silence MSVC warnings

Brian Paul brianp at kemper.freedesktop.org
Fri Jan 25 22:48:26 UTC 2013


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

Author: Brian Paul <brianp at vmware.com>
Date:   Tue Jan 22 17:46:40 2013 -0700

softpipe: add casts to silence MSVC warnings

Reviewed-by: José Fonseca <jfonseca at vmware.com>

---

 src/gallium/drivers/softpipe/sp_tile_cache.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_tile_cache.c b/src/gallium/drivers/softpipe/sp_tile_cache.c
index 8d58111..dded0e1 100644
--- a/src/gallium/drivers/softpipe/sp_tile_cache.c
+++ b/src/gallium/drivers/softpipe/sp_tile_cache.c
@@ -253,7 +253,7 @@ clear_tile(struct softpipe_cached_tile *tile,
 
    switch (util_format_get_blocksize(format)) {
    case 1:
-      memset(tile->data.any, clear_value, TILE_SIZE * TILE_SIZE);
+      memset(tile->data.any, (int) clear_value, TILE_SIZE * TILE_SIZE);
       break;
    case 2:
       if (clear_value == 0) {
@@ -274,7 +274,7 @@ clear_tile(struct softpipe_cached_tile *tile,
       else {
          for (i = 0; i < TILE_SIZE; i++) {
             for (j = 0; j < TILE_SIZE; j++) {
-               tile->data.depth32[i][j] = clear_value;
+               tile->data.depth32[i][j] = (uint) clear_value;
             }
          }
       }




More information about the mesa-commit mailing list