HomeSort by relevance Sort by last modified time
    Searched defs:sampObj (Results 1 - 2 of 2) sorted by null

  /external/mesa3d/src/mesa/main/
shared.c 290 struct gl_sampler_object *sampObj = (struct gl_sampler_object *) data;
291 _mesa_reference_sampler_object(ctx, &sampObj, NULL);
samplerobj.c 86 struct gl_sampler_object *sampObj)
88 mtx_destroy(&sampObj->Mutex);
89 free(sampObj->Label);
90 free(sampObj);
143 _mesa_init_sampler_object(struct gl_sampler_object *sampObj, GLuint name)
145 mtx_init(&sampObj->Mutex, mtx_plain);
146 sampObj->Name = name;
147 sampObj->RefCount = 1;
148 sampObj->WrapS = GL_REPEAT;
149 sampObj->WrapT = GL_REPEAT
    [all...]

Completed in 77 milliseconds