diff options
author | Ilia Mirkin <[email protected]> | 2015-11-26 10:32:57 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-11-28 17:24:34 -0500 |
commit | 0396eaaf80c5d7955d7926c4e448f006c7682d2e (patch) | |
tree | 7fda86c2c4d25e807383e12c2f23c3d63a341d2f /src/mesa/main/teximage.c | |
parent | 9e5e702cfb380af461062c96d974027da8d5f17a (diff) |
mesa: support GL_RED/GL_RG in ES2 contexts when driver support exists
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=93126
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Eduardo Lima Mitev <[email protected]>
Cc: "11.0 11.1" <[email protected]>
Diffstat (limited to 'src/mesa/main/teximage.c')
-rw-r--r-- | src/mesa/main/teximage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index ac7599f9fd4..37dbe267e68 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -1699,7 +1699,7 @@ texture_format_error_check_gles(struct gl_context *ctx, GLenum format, } } else { - err = _mesa_es_error_check_format_and_type(format, type, dimensions); + err = _mesa_es_error_check_format_and_type(ctx, format, type, dimensions); if (err != GL_NO_ERROR) { _mesa_error(ctx, err, "%s(format = %s, type = %s)", callerName, _mesa_enum_to_string(format), |