diff options
author | Chris Forbes <[email protected]> | 2014-04-13 11:53:16 +1200 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2014-04-13 12:38:24 +1200 |
commit | b92e7f2da9b72ca239204a7be802a5c64ff6cf4c (patch) | |
tree | 9a7887cb515263f7853208c13bb23d3386d9d10e /src/mesa/main/drawpix.c | |
parent | a5957f7bc5e3618243f03cf9459394f9a83e5971 (diff) |
mesa: Fix typo in error message
Signed-off-by: Chris Forbes <[email protected]>
Diffstat (limited to 'src/mesa/main/drawpix.c')
-rw-r--r-- | src/mesa/main/drawpix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/drawpix.c b/src/mesa/main/drawpix.c index 63e5870e687..1865a66b9da 100644 --- a/src/mesa/main/drawpix.c +++ b/src/mesa/main/drawpix.c @@ -109,7 +109,7 @@ _mesa_DrawPixels( GLsizei width, GLsizei height, /* these buffers must exist */ if (!_mesa_dest_buffer_exists(ctx, format)) { _mesa_error(ctx, GL_INVALID_OPERATION, - "glDrawPixels(missing deest buffer)"); + "glDrawPixels(missing dest buffer)"); goto end; } break; |