Lines Matching defs:obj
371 * if <obj> is already attached to <containerObj>."
1283 struct gl_pipeline_object *obj = (struct gl_pipeline_object *) data;
1286 if (obj->CurrentProgram[stage] &&
1287 obj->CurrentProgram[stage]->Id == params->shProg->Name) {
1289 _mesa_use_program(params->ctx, stage, params->shProg, prog, obj);
1690 _mesa_DeleteObjectARB(GLhandleARB obj)
1694 _mesa_debug(ctx, "glDeleteObjectARB(%lu)\n", (unsigned long)obj);
1697 if (obj) {
1700 if (is_program(ctx, obj)) {
1701 delete_shader_program(ctx, obj);
1703 else if (is_shader(ctx, obj)) {
1704 delete_shader(ctx, obj);
1769 GLsizei * count, GLhandleARB * obj)
1772 get_attached_shaders(ctx, (GLuint)container, maxCount, count, NULL, obj);
1778 GLsizei *count, GLuint *obj)
1781 get_attached_shaders(ctx, program, maxCount, count, obj, NULL);