Home | History | Annotate | Download | only in main

Lines Matching defs:newObj

344    struct gl_array_object *newObj = NULL;
353 * Get pointer to new array object (newObj)
359 newObj = ctx->Array.DefaultArrayObj;
363 newObj = lookup_arrayobj(ctx, id);
364 if (!newObj) {
371 newObj = (*ctx->Driver.NewArrayObject)(ctx, id);
372 if (!newObj) {
377 save_array_object(ctx, newObj);
380 if (!newObj->_Used) {
387 newObj->ARBsemantics = genRequired;
388 newObj->_Used = GL_TRUE;
393 _mesa_reference_array_object(ctx, &ctx->Array.ArrayObj, newObj);
396 if (ctx->Driver.BindArrayObject && newObj)
397 ctx->Driver.BindArrayObject(ctx, newObj);