mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
Make this struct less opaque.
This commit is contained in:
parent
7245757174
commit
833d19c21d
2 changed files with 7 additions and 7 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue