mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
i965: Add missing close-parenthesis in error messages
Trivial. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
7070c8879a
commit
8f84a8e257
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue