Go to the source code of this file.
Functions | |
void | i915_init_texture_functions (struct i915_context *i915) |
void | i915_init_screen_texture_functions (struct pipe_screen *screen) |
void i915_init_screen_texture_functions | ( | struct pipe_screen * | screen | ) |
Definition at line 767 of file i915_texture.c.
References pipe_screen::get_tex_surface, i915_get_tex_surface(), i915_tex_surface_release(), i915_texture_blanket(), i915_texture_create(), i915_texture_release(), pipe_screen::tex_surface_release, pipe_screen::texture_blanket, pipe_screen::texture_create, and pipe_screen::texture_release.
00768 { 00769 screen->texture_create = i915_texture_create; 00770 screen->texture_release = i915_texture_release; 00771 screen->get_tex_surface = i915_get_tex_surface; 00772 screen->texture_blanket = i915_texture_blanket; 00773 screen->tex_surface_release = i915_tex_surface_release; 00774 }
void i915_init_texture_functions | ( | struct i915_context * | i915 | ) |