summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/intel_fbo.c
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2015-10-16 09:18:24 -0700
committerIan Romanick <ian.d.romanick@intel.com>2015-10-26 16:15:55 -0700
commit8f84a8e257291168ec4b394b1eaa6acef1538cea (patch)
tree88d08cde6ba843db77b0296ef3647f0a799aa30f /src/mesa/drivers/dri/i965/intel_fbo.c
parent7070c8879adff2a1204d7473f119d8194eff919b (diff)
downloadexternal_mesa3d-8f84a8e257291168ec4b394b1eaa6acef1538cea.zip
external_mesa3d-8f84a8e257291168ec4b394b1eaa6acef1538cea.tar.gz
external_mesa3d-8f84a8e257291168ec4b394b1eaa6acef1538cea.tar.bz2
i965: Add missing close-parenthesis in error messages
Trivial. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_fbo.c')
-rw-r--r--src/mesa/drivers/dri/i965/intel_fbo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_fbo.c b/src/mesa/drivers/dri/i965/intel_fbo.c
index 7f281fa..3a4a53a 100644
--- a/src/mesa/drivers/dri/i965/intel_fbo.c
+++ b/src/mesa/drivers/dri/i965/intel_fbo.c
@@ -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;
}