gallium: no longer pass max_inst to ppc_init_func()
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 29 Oct 2008 22:35:59 +0000 (16:35 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 29 Oct 2008 22:35:59 +0000 (16:35 -0600)
src/gallium/auxiliary/draw/draw_vs_ppc.c
src/gallium/auxiliary/rtasm/rtasm_ppc.c
src/gallium/auxiliary/rtasm/rtasm_ppc.h

index d720c7bbd5317ab5a5b712b7aceeaf25eb64dd88..8b751361449ce1a832faecfd78c45a7665f0265b 100644 (file)
@@ -197,7 +197,7 @@ draw_create_vs_ppc(struct draw_context *draw,
    vs->base.immediates = align_malloc(TGSI_EXEC_NUM_IMMEDIATES * 4 *
                                       sizeof(float), 16);
 
-   ppc_init_func( &vs->ppc_program, 2000 ); /* XXX fix limit */
+   ppc_init_func( &vs->ppc_program );
 
    if (!tgsi_emit_ppc( (struct tgsi_token *) vs->base.state.tokens,
                        &vs->ppc_program, 
index e73ed71a0b6389ffaca2d9662982303b57a889e3..6d11263be8fda011227573a61ea3fb20e8b526a6 100644 (file)
@@ -43,7 +43,7 @@
 
 
 void
-ppc_init_func(struct ppc_function *p, unsigned max_inst)
+ppc_init_func(struct ppc_function *p)
 {
    uint i;
 
index d0477dec94156a713c34ea2a34e64b137b7eea87..afb4704c398839b53fcf0da34c1adc7e894b3853 100644 (file)
@@ -62,7 +62,7 @@ struct ppc_function
 
 
 
-extern void ppc_init_func(struct ppc_function *p, unsigned max_inst);
+extern void ppc_init_func(struct ppc_function *p);
 extern void ppc_release_func(struct ppc_function *p);
 extern uint ppc_num_instructions(const struct ppc_function *p);
 extern void (*ppc_get_func( struct ppc_function *p ))( void );