Browse Source

st/xorg: fix warnings

tags/mesa_7_6_rc1
Zack Rusin 16 years ago
parent
commit
206eb50493
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/gallium/state_trackers/xorg/xorg_exa_tgsi.c

+ 3
- 3
src/gallium/state_trackers/xorg/xorg_exa_tgsi.c View File

@@ -146,13 +146,13 @@ create_fs(struct pipe_context *pipe,
unsigned fs_traits)
{
struct ureg_program *ureg;
struct ureg_src dst_sampler, src_sampler, mask_sampler;
struct ureg_src dst_pos, src_pos, mask_pos;
struct ureg_src /*dst_sampler,*/ src_sampler, mask_sampler;
struct ureg_src /*dst_pos,*/ src_pos, mask_pos;
struct ureg_src src, mask;
struct ureg_dst out;
boolean is_fill = fs_traits & VS_FILL;
boolean is_composite = fs_traits & VS_COMPOSITE;
boolean has_mask = fs_traits & VS_MASK;
/*boolean has_mask = fs_traits & VS_MASK;*/

ureg = ureg_create(TGSI_PROCESSOR_FRAGMENT);
if (ureg == NULL)

Loading…
Cancel
Save