diff options
author | Brian Paul <[email protected]> | 2009-05-21 09:56:41 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-05-21 16:10:45 -0600 |
commit | de1cfc5e8a8e9d0b0b397671575ae448a554a002 (patch) | |
tree | 9f3d94b32d940af2a75de684d9ca9ef27dcf5658 /src/mesa/main/arrayobj.h | |
parent | dda82137d28aba846dda73da230871c115e30aaf (diff) |
mesa: new _mesa_update_array_object_max_element() function
This will replace the code in state.c
Diffstat (limited to 'src/mesa/main/arrayobj.h')
-rw-r--r-- | src/mesa/main/arrayobj.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/main/arrayobj.h b/src/mesa/main/arrayobj.h index 90c2aea1555..abca5ab9b4c 100644 --- a/src/mesa/main/arrayobj.h +++ b/src/mesa/main/arrayobj.h @@ -1,9 +1,10 @@ /* * Mesa 3-D graphics library - * Version: 6.5 + * Version: 7.6 * * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * (C) Copyright IBM Corporation 2006 + * Copyright (C) 2009 VMware, Inc. 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"), @@ -57,6 +58,10 @@ _mesa_initialize_array_object( GLcontext *ctx, struct gl_array_object *obj, GLuint name ); +extern void +_mesa_update_array_object_max_element(GLcontext *ctx, + struct gl_array_object *arrayObj); + /* * API functions |