diff options
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/genmipmap.c | 26 | ||||
-rw-r--r-- | src/mesa/main/genmipmap.h | 6 |
2 files changed, 32 insertions, 0 deletions
diff --git a/src/mesa/main/genmipmap.c b/src/mesa/main/genmipmap.c index 9eb83cf85f3..488c32f8101 100644 --- a/src/mesa/main/genmipmap.c +++ b/src/mesa/main/genmipmap.c @@ -176,12 +176,29 @@ generate_texture_mipmap_error(struct gl_context *ctx, generate_texture_mipmap(ctx, texObj, target, dsa, false); } +static void +generate_texture_mipmap_no_error(struct gl_context *ctx, + struct gl_texture_object *texObj, + GLenum target, bool dsa) +{ + generate_texture_mipmap(ctx, texObj, target, dsa, true); +} + /** * Generate all the mipmap levels below the base level. * Note: this GL function would be more useful if one could specify a * cube face, a set of array slices, etc. */ void GLAPIENTRY +_mesa_GenerateMipmap_no_error(GLenum target) +{ + GET_CURRENT_CONTEXT(ctx); + + struct gl_texture_object *texObj = _mesa_get_current_tex_object(ctx, target); + generate_texture_mipmap_no_error(ctx, texObj, target, false); +} + +void GLAPIENTRY _mesa_GenerateMipmap(GLenum target) { struct gl_texture_object *texObj; @@ -204,6 +221,15 @@ _mesa_GenerateMipmap(GLenum target) * Generate all the mipmap levels below the base level. */ void GLAPIENTRY +_mesa_GenerateTextureMipmap_no_error(GLuint texture) +{ + GET_CURRENT_CONTEXT(ctx); + + struct gl_texture_object *texObj = _mesa_lookup_texture(ctx, texture); + generate_texture_mipmap_no_error(ctx, texObj, texObj->Target, true); +} + +void GLAPIENTRY _mesa_GenerateTextureMipmap(GLuint texture) { struct gl_texture_object *texObj; diff --git a/src/mesa/main/genmipmap.h b/src/mesa/main/genmipmap.h index 94f7f7a6809..681c9d9087c 100644 --- a/src/mesa/main/genmipmap.h +++ b/src/mesa/main/genmipmap.h @@ -35,9 +35,15 @@ bool _mesa_is_valid_generate_texture_mipmap_internalformat(struct gl_context *ctx, GLenum internalformat); +void GLAPIENTRY +_mesa_GenerateMipmap_no_error(GLenum target); + extern void GLAPIENTRY _mesa_GenerateMipmap(GLenum target); +void GLAPIENTRY +_mesa_GenerateTextureMipmap_no_error(GLuint texture); + extern void GLAPIENTRY _mesa_GenerateTextureMipmap(GLuint texture); |