mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-14 16:10:17 +01:00
mesa: remove unused gl_buffer_object::OnCard field
This commit is contained in:
parent
dcca97a3e3
commit
6359ecebec
2 changed files with 0 additions and 3 deletions
|
|
@ -389,7 +389,6 @@ _mesa_buffer_map( GLcontext *ctx, GLenum target, GLenum access,
|
|||
(void) ctx;
|
||||
(void) target;
|
||||
(void) access;
|
||||
ASSERT(!bufObj->OnCard);
|
||||
/* Just return a direct pointer to the data */
|
||||
if (bufObj->Pointer) {
|
||||
/* already mapped! */
|
||||
|
|
@ -413,7 +412,6 @@ _mesa_buffer_unmap( GLcontext *ctx, GLenum target,
|
|||
{
|
||||
(void) ctx;
|
||||
(void) target;
|
||||
ASSERT(!bufObj->OnCard);
|
||||
/* XXX we might assert here that bufObj->Pointer is non-null */
|
||||
bufObj->Pointer = NULL;
|
||||
return GL_TRUE;
|
||||
|
|
|
|||
|
|
@ -1505,7 +1505,6 @@ struct gl_buffer_object
|
|||
GLsizeiptr Length; /**< mapped length */
|
||||
GLsizeiptrARB Size; /**< Size of storage in bytes */
|
||||
GLubyte *Data; /**< Location of storage either in RAM or VRAM. */
|
||||
GLboolean OnCard; /**< Is buffer in VRAM? (hardware drivers) */
|
||||
GLboolean Written; /**< Ever written to? (for debugging) */
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue