Make this struct less opaque.

This commit is contained in:
Keith Whitwell 2006-02-26 14:39:23 +00:00
parent 7245757174
commit 833d19c21d
2 changed files with 7 additions and 7 deletions

View file

@ -35,12 +35,6 @@
#include "bufmgr.h"
struct intel_buffer_object {
struct gl_buffer_object Base;
GLuint buffer;
};
/* There is some duplication between mesa's bufferobjects and our
* bufmgr buffers. Both have an integer handle and a hashtable to
* lookup an opaque structure. It would be nice if the handles and

View file

@ -32,7 +32,13 @@
struct intel_context;
struct gl_buffer_object;
struct intel_buffer_object;
struct intel_buffer_object {
struct gl_buffer_object Base;
GLuint buffer;
};
/* Get the bm buffer associated with a GL bufferobject:
*/