tgsi: Fix typo.
authorMichal Krol <michal@tungstengraphics.com>
Wed, 13 Aug 2008 17:28:10 +0000 (19:28 +0200)
committerMichal Krol <michal@tungstengraphics.com>
Wed, 13 Aug 2008 17:28:10 +0000 (19:28 +0200)
src/gallium/auxiliary/tgsi/tgsi_build.c
src/gallium/auxiliary/tgsi/tgsi_build.h

index 742ef14..050b448 100644 (file)
@@ -820,7 +820,7 @@ tgsi_build_instruction_ext_nv(
    unsigned cond_swizzle_z,
    unsigned cond_swizzle_w,
    unsigned cond_dst_update,
-   unsigned cond_flow_update,
+   unsigned cond_flow_enable,
    struct tgsi_token *prev_token,
    struct tgsi_instruction *instruction,
    struct tgsi_header *header )
@@ -837,7 +837,7 @@ tgsi_build_instruction_ext_nv(
    instruction_ext_nv.CondSwizzleZ = cond_swizzle_z;
    instruction_ext_nv.CondSwizzleW = cond_swizzle_w;
    instruction_ext_nv.CondDstUpdate = cond_dst_update;
-   instruction_ext_nv.CondFlowEnable = cond_flow_update;
+   instruction_ext_nv.CondFlowEnable = cond_flow_enable;
 
    prev_token->Extended = 1;
    instruction_grow( instruction, header );
index ed25830..6ae7f32 100644 (file)
@@ -170,7 +170,7 @@ tgsi_build_instruction_ext_nv(
    unsigned cond_swizzle_z,
    unsigned cond_swizzle_w,
    unsigned cond_dst_update,
-   unsigned cond_flow_update,
+   unsigned cond_flow_enable,
    struct tgsi_token *prev_token,
    struct tgsi_instruction *instruction,
    struct tgsi_header *header );