diff options
Diffstat (limited to 'src/gallium/auxiliary')
| -rw-r--r-- | src/gallium/auxiliary/rbug/rbug_context.h | 2 | ||||
| -rw-r--r-- | src/gallium/auxiliary/rbug/rbug_proto.h | 2 | ||||
| -rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_ureg.c | 8 | ||||
| -rw-r--r-- | src/gallium/auxiliary/util/u_debug.c | 6 | ||||
| -rw-r--r-- | src/gallium/auxiliary/util/u_debug.h | 2 | ||||
| -rw-r--r-- | src/gallium/auxiliary/util/u_network.c | 6 | ||||
| -rw-r--r-- | src/gallium/auxiliary/util/u_network.h | 2 | ||||
| -rw-r--r-- | src/gallium/auxiliary/util/u_stream_stdc.c | 2 | ||||
| -rw-r--r-- | src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.c | 11 | 
9 files changed, 27 insertions, 14 deletions
diff --git a/src/gallium/auxiliary/rbug/rbug_context.h b/src/gallium/auxiliary/rbug/rbug_context.h index da61c2365b..03126d6b12 100644 --- a/src/gallium/auxiliary/rbug/rbug_context.h +++ b/src/gallium/auxiliary/rbug/rbug_context.h @@ -46,7 +46,7 @@ typedef enum  	RBUG_BLOCK_BEFORE = 1,  	RBUG_BLOCK_AFTER = 2,  	RBUG_BLOCK_RULE = 4, -	RBUG_BLOCK_MASK = 7, +	RBUG_BLOCK_MASK = 7  } rbug_block_t;  struct rbug_proto_context_list diff --git a/src/gallium/auxiliary/rbug/rbug_proto.h b/src/gallium/auxiliary/rbug/rbug_proto.h index d273be0166..4f3eb75dc4 100644 --- a/src/gallium/auxiliary/rbug/rbug_proto.h +++ b/src/gallium/auxiliary/rbug/rbug_proto.h @@ -65,7 +65,7 @@ enum rbug_opcode  	RBUG_OP_SHADER_DISABLE = 770,  	RBUG_OP_SHADER_REPLACE = 771,  	RBUG_OP_SHADER_LIST_REPLY = -768, -	RBUG_OP_SHADER_INFO_REPLY = -769, +	RBUG_OP_SHADER_INFO_REPLY = -769  };  /** diff --git a/src/gallium/auxiliary/tgsi/tgsi_ureg.c b/src/gallium/auxiliary/tgsi/tgsi_ureg.c index 1e730e5342..6a0af664dd 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_ureg.c +++ b/src/gallium/auxiliary/tgsi/tgsi_ureg.c @@ -791,8 +791,8 @@ ureg_insn(struct ureg_program *ureg,     unsigned i;     boolean saturate;     boolean predicate; -   boolean negate; -   unsigned swizzle[4]; +   boolean negate = FALSE; +   unsigned swizzle[4] = { 0 };     saturate = nr_dst ? dst[0].Saturate : FALSE;     predicate = nr_dst ? dst[0].Predicate : FALSE; @@ -838,8 +838,8 @@ ureg_tex_insn(struct ureg_program *ureg,     unsigned i;     boolean saturate;     boolean predicate; -   boolean negate; -   unsigned swizzle[4]; +   boolean negate = FALSE; +   unsigned swizzle[4] = { 0 };     saturate = nr_dst ? dst[0].Saturate : FALSE;     predicate = nr_dst ? dst[0].Predicate : FALSE; diff --git a/src/gallium/auxiliary/util/u_debug.c b/src/gallium/auxiliary/util/u_debug.c index 4e01123fff..9b4e6ca2a7 100644 --- a/src/gallium/auxiliary/util/u_debug.c +++ b/src/gallium/auxiliary/util/u_debug.c @@ -454,7 +454,8 @@ debug_dump_flags(const struct debug_named_value *names,  	    util_strncat(output, "|", sizeof(output));  	 else  	    first = 0; -	 util_strncat(output, names->name, sizeof(output)); +	 util_strncat(output, names->name, sizeof(output) - 1); +	 output[sizeof(output) - 1] = '\0';  	 value &= ~names->value;        }        ++names; @@ -467,7 +468,8 @@ debug_dump_flags(const struct debug_named_value *names,  	 first = 0;        util_snprintf(rest, sizeof(rest), "0x%08lx", value); -      util_strncat(output, rest, sizeof(output)); +      util_strncat(output, rest, sizeof(output) - 1); +      output[sizeof(output) - 1] = '\0';     }     if(first) diff --git a/src/gallium/auxiliary/util/u_debug.h b/src/gallium/auxiliary/util/u_debug.h index abd834c741..facc30a553 100644 --- a/src/gallium/auxiliary/util/u_debug.h +++ b/src/gallium/auxiliary/util/u_debug.h @@ -188,7 +188,7 @@ void _debug_assert_fail(const char *expr,  #ifdef DEBUG  #define debug_assert(expr) ((expr) ? (void)0 : _debug_assert_fail(#expr, __FILE__, __LINE__, __FUNCTION__))  #else -#define debug_assert(expr) ((void)0) +#define debug_assert(expr) do { } while (0 && (expr))  #endif diff --git a/src/gallium/auxiliary/util/u_network.c b/src/gallium/auxiliary/util/u_network.c index 6269c72e12..9eb8f309cd 100644 --- a/src/gallium/auxiliary/util/u_network.c +++ b/src/gallium/auxiliary/util/u_network.c @@ -6,7 +6,7 @@  #if defined(PIPE_SUBSYSTEM_WINDOWS_USER)  #  include <winsock2.h>  #  include <windows.h> -#elif defined(PIPE_OS_LINUX) || defined(PIPE_OS_HAIKU) || defined(PIPE_OS_BSD) +#elif defined(PIPE_OS_LINUX) || defined(PIPE_OS_HAIKU) || defined(PIPE_OS_APPLE)  #  include <sys/socket.h>  #  include <netinet/in.h>  #  include <unistd.h> @@ -54,7 +54,7 @@ u_socket_close(int s)     if (s < 0)        return; -#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_HAIKU) || defined(PIPE_OS_BSD) +#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_HAIKU) || defined(PIPE_OS_APPLE)     shutdown(s, SHUT_RDWR);     close(s);  #elif defined(PIPE_SUBSYSTEM_WINDOWS_USER) @@ -169,7 +169,7 @@ u_socket_listen_on_port(uint16_t portnum)  void  u_socket_block(int s, boolean block)  { -#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_HAIKU) || defined(PIPE_OS_BSD) +#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_HAIKU) || defined(PIPE_OS_APPLE)     int old = fcntl(s, F_GETFL, 0);     if (old == -1)        return; diff --git a/src/gallium/auxiliary/util/u_network.h b/src/gallium/auxiliary/util/u_network.h index 0aa898b967..187dcab86e 100644 --- a/src/gallium/auxiliary/util/u_network.h +++ b/src/gallium/auxiliary/util/u_network.h @@ -6,7 +6,7 @@  #if defined(PIPE_SUBSYSTEM_WINDOWS_USER)  #  define PIPE_HAVE_SOCKETS -#elif defined(PIPE_OS_LINUX) || defined(PIPE_OS_HAIKU) || defined(PIPE_OS_BSD) +#elif defined(PIPE_OS_LINUX) || defined(PIPE_OS_HAIKU) || defined(PIPE_OS_APPLE)  #  define PIPE_HAVE_SOCKETS  #endif diff --git a/src/gallium/auxiliary/util/u_stream_stdc.c b/src/gallium/auxiliary/util/u_stream_stdc.c index 5cd05b2904..4d976d6dca 100644 --- a/src/gallium/auxiliary/util/u_stream_stdc.c +++ b/src/gallium/auxiliary/util/u_stream_stdc.c @@ -32,7 +32,7 @@  #include "pipe/p_config.h" -#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_BSD) || defined(PIPE_SUBSYSTEM_WINDOWS_USER) || defined(PIPE_OS_SOLARIS) || defined(PIPE_OS_HAIKU) +#if defined(PIPE_OS_LINUX) || defined(PIPE_OS_BSD) || defined(PIPE_SUBSYSTEM_WINDOWS_USER) || defined(PIPE_OS_SOLARIS) || defined(PIPE_OS_HAIKU) || defined(PIPE_OS_APPLE)  #include <stdio.h> diff --git a/src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.c b/src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.c index ab196c21f8..caf581aca6 100644 --- a/src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.c +++ b/src/gallium/auxiliary/vl/vl_mpeg12_mc_renderer.c @@ -334,11 +334,13 @@ create_frame_pred_vert_shader(struct vl_mpeg12_mc_renderer *r)     free(tokens);  } +#if 0  static void  create_field_pred_vert_shader(struct vl_mpeg12_mc_renderer *r)  {     assert(false);  } +#endif  static void  create_frame_pred_frag_shader(struct vl_mpeg12_mc_renderer *r) @@ -442,11 +444,13 @@ create_frame_pred_frag_shader(struct vl_mpeg12_mc_renderer *r)     free(tokens);  } +#if 0  static void  create_field_pred_frag_shader(struct vl_mpeg12_mc_renderer *r)  {     assert(false);  } +#endif  static void  create_frame_bi_pred_vert_shader(struct vl_mpeg12_mc_renderer *r) @@ -532,11 +536,13 @@ create_frame_bi_pred_vert_shader(struct vl_mpeg12_mc_renderer *r)     free(tokens);  } +#if 0  static void  create_field_bi_pred_vert_shader(struct vl_mpeg12_mc_renderer *r)  {     assert(false);  } +#endif  static void  create_frame_bi_pred_frag_shader(struct vl_mpeg12_mc_renderer *r) @@ -658,11 +664,13 @@ create_frame_bi_pred_frag_shader(struct vl_mpeg12_mc_renderer *r)     free(tokens);  } +#if 0  static void  create_field_bi_pred_frag_shader(struct vl_mpeg12_mc_renderer *r)  {     assert(false);  } +#endif  static void  xfer_buffers_map(struct vl_mpeg12_mc_renderer *r) @@ -1081,6 +1089,9 @@ gen_macroblock_verts(struct vl_mpeg12_mc_renderer *r,     assert(ycbcr_vb);     assert(pos < r->macroblocks_per_batch); +   mo_vec[1].x = 0; +   mo_vec[1].y = 0; +     switch (mb->mb_type) {        case PIPE_MPEG12_MACROBLOCK_TYPE_BI:        {  | 
