Searched refs:sampObj (Results 1 – 6 of 6) sorted by relevance
/third_party/mesa3d/src/mesa/main/ |
D | samplerobj.c | 75 struct gl_sampler_object *sampObj) in delete_sampler_object() argument 77 _mesa_delete_sampler_handles(ctx, sampObj); in delete_sampler_object() 78 free(sampObj->Label); in delete_sampler_object() 79 FREE(sampObj); in delete_sampler_object() 117 _mesa_init_sampler_object(struct gl_sampler_object *sampObj, GLuint name) in _mesa_init_sampler_object() argument 119 sampObj->Name = name; in _mesa_init_sampler_object() 120 sampObj->RefCount = 1; in _mesa_init_sampler_object() 121 sampObj->Attrib.WrapS = GL_REPEAT; in _mesa_init_sampler_object() 122 sampObj->Attrib.WrapT = GL_REPEAT; in _mesa_init_sampler_object() 123 sampObj->Attrib.WrapR = GL_REPEAT; in _mesa_init_sampler_object() [all …]
|
D | texturebindless.c | 130 struct gl_sampler_object *sampObj = NULL; in make_texture_handle_resident() local 147 if (texHandleObj->sampObj) in make_texture_handle_resident() 148 _mesa_reference_sampler_object(ctx, &sampObj, texHandleObj->sampObj); in make_texture_handle_resident() 165 if (texHandleObj->sampObj) { in make_texture_handle_resident() 166 sampObj = texHandleObj->sampObj; in make_texture_handle_resident() 167 _mesa_reference_sampler_object(ctx, &sampObj, NULL); in make_texture_handle_resident() 213 struct gl_sampler_object *sampObj) in find_texhandleobj() argument 217 if ((*texHandleObj)->sampObj == sampObj) in find_texhandleobj() 225 struct gl_sampler_object *sampObj) in new_texture_handle() argument 236 st_convert_sampler(st, texObj, sampObj, 0, &sampler, false); in new_texture_handle() [all …]
|
D | texturebindless.h | 60 _mesa_init_sampler_handles(struct gl_sampler_object *sampObj); 63 struct gl_sampler_object *sampObj);
|
D | shared.c | 306 struct gl_sampler_object *sampObj = (struct gl_sampler_object *) data; in delete_sampler_object_cb() local 307 _mesa_reference_sampler_object(ctx, &sampObj, NULL); in delete_sampler_object_cb()
|
D | samplerobj.h | 77 struct gl_sampler_object *sampObj);
|
D | mtypes.h | 3052 struct gl_sampler_object *sampObj; member
|