mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-17 16:08:06 +02:00
disable the driverContext assertions
This commit is contained in:
parent
64988ff7fe
commit
7cafaff0eb
1 changed files with 2 additions and 2 deletions
|
|
@ -1044,7 +1044,7 @@ _mesa_initialize_context(GLcontext *ctx,
|
|||
const struct dd_function_table *driverFunctions,
|
||||
void *driverContext)
|
||||
{
|
||||
ASSERT(driverContext);
|
||||
/*ASSERT(driverContext);*/
|
||||
assert(driverFunctions->NewTextureObject);
|
||||
assert(driverFunctions->FreeTexImageData);
|
||||
|
||||
|
|
@ -1143,7 +1143,7 @@ _mesa_create_context(const GLvisual *visual,
|
|||
GLcontext *ctx;
|
||||
|
||||
ASSERT(visual);
|
||||
ASSERT(driverContext);
|
||||
/*ASSERT(driverContext);*/
|
||||
|
||||
ctx = (GLcontext *) _mesa_calloc(sizeof(GLcontext));
|
||||
if (!ctx)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue