search for: newtextureimag

Displaying 2 results from an estimated 2 matches for "newtextureimag".

Did you mean: newtextureimage
2013 Oct 04
1
[PATCH] nouveau_vieux: add AllocTextureImageBuffer implementation
..., GL_FALSE); + return GL_TRUE; +} + static void nouveau_texsubimage(struct gl_context *ctx, GLint dims, struct gl_texture_image *ti, @@ -634,6 +642,7 @@ nouveau_texture_functions_init(struct dd_function_table *functions) functions->DeleteTexture = nouveau_texture_free; functions->NewTextureImage = nouveau_teximage_new; functions->FreeTextureImageBuffer = nouveau_teximage_free; + functions->AllocTextureImageBuffer = nouveau_teximage_alloc; functions->ChooseTextureFormat = nouveau_choose_tex_format; functions->TexImage = nouveau_teximage_123d; functions->TexSubImage =...
2012 Jul 06
0
[PATCH] dri/nouveau: Add AllocTextureImageBuffer() implementation
...nouveau_teximage(struct gl_context *ctx, GLint dims, struct gl_texture_image *ti, @@ -704,7 +744,8 @@ nouveau_texture_functions_init(struct dd_function_table *functions) functions->NewTextureObject = nouveau_texture_new; functions->DeleteTexture = nouveau_texture_free; functions->NewTextureImage = nouveau_teximage_new; - functions->FreeTextureImageBuffer = nouveau_teximage_free; + functions->AllocTextureImageBuffer = nouveau_alloc_texture_image_buffer; + functions->FreeTextureImageBuffer = nouveau_free_texture_image_buffer; functions->ChooseTextureFormat = nouveau_choose_tex...