diff options
author | Brian Paul <[email protected]> | 2006-10-29 18:33:14 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-10-29 18:33:14 +0000 |
commit | ebcedd2d8909cc00d8528d76d3a1990315f270ea (patch) | |
tree | 6d89b2dff1b8cf8f826c7f2dfa4c2856375a359c /src/mesa/shader/nvvertexec.h | |
parent | abb1430c79024198bdc9816465d3c8bc963adf8b (diff) |
New _mesa_exec_vertex_state_program() function. Start of some re-org.
Diffstat (limited to 'src/mesa/shader/nvvertexec.h')
-rw-r--r-- | src/mesa/shader/nvvertexec.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/mesa/shader/nvvertexec.h b/src/mesa/shader/nvvertexec.h index e0fd46a7662..e7c5be09e64 100644 --- a/src/mesa/shader/nvvertexec.h +++ b/src/mesa/shader/nvvertexec.h @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 6.1 + * Version: 6.5.2 * - * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -35,7 +35,13 @@ extern void _mesa_init_vp_per_primitive_registers(GLcontext *ctx); extern void -_mesa_exec_vertex_program(GLcontext *ctx, const struct gl_vertex_program *program); +_mesa_exec_vertex_program(GLcontext *ctx, + const struct gl_vertex_program *program); + +extern void +_mesa_exec_vertex_state_program(GLcontext *ctx, + struct gl_vertex_program *vprog, + const GLfloat *params); extern void _mesa_dump_vp_state( const struct gl_vertex_program_state *state ); |