diff options
author | Brian <[email protected]> | 2007-03-22 09:11:26 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-03-22 09:11:26 -0600 |
commit | 12229f119d754715e0315846fdd8d6e9213e8edf (patch) | |
tree | 53f9f61f76f80685f6cb6ad9e8297292a4be7a4f /src/mesa/shader/nvvertparse.c | |
parent | 1bf81e3c5d65b636658d11072f4f027f5c499396 (diff) |
use _mesa_copy_instructions()
Diffstat (limited to 'src/mesa/shader/nvvertparse.c')
-rw-r--r-- | src/mesa/shader/nvvertparse.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/shader/nvvertparse.c b/src/mesa/shader/nvvertparse.c index 0bc0c055dad..ac96d4a60ed 100644 --- a/src/mesa/shader/nvvertparse.c +++ b/src/mesa/shader/nvvertparse.c @@ -1378,8 +1378,7 @@ _mesa_parse_nv_vertex_program(GLcontext *ctx, GLenum dstTarget, _mesa_free(programString); return; /* out of memory */ } - _mesa_memcpy(newInst, instBuffer, - parseState.numInst * sizeof(struct prog_instruction)); + _mesa_copy_instructions(newInst, instBuffer, parseState.numInst); /* install the program */ program->Base.Target = target; |