i965: Add missing close-parenthesis in error messages

Trivial.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Ian Romanick 2015-10-16 09:18:24 -07:00
parent 7070c8879a
commit 8f84a8e257

View file

@ -343,14 +343,14 @@ intel_image_target_renderbuffer_storage(struct gl_context *ctx,
if (image->planar_format && image->planar_format->nplanes > 1) {
_mesa_error(ctx, GL_INVALID_OPERATION,
"glEGLImageTargetRenderbufferStorage(planar buffers are not "
"supported as render targets.");
"supported as render targets.)");
return;
}
/* __DRIimage is opaque to the core so it has to be checked here */
if (!brw->format_supported_as_render_target[image->format]) {
_mesa_error(ctx, GL_INVALID_OPERATION,
"glEGLImageTargetRenderbufferStorage(unsupported image format");
"glEGLImageTargetRenderbufferStorage(unsupported image format)");
return;
}