mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
mesa: add missing newlines for _mesa_debug/_mesa_log callers
Reviewed-by: Emma Anholt <emma@anholt.net> Reviewed-by: Jesse Natalie <jenatali@microsoft.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21454>
This commit is contained in:
parent
40e45eaef0
commit
f18f43338e
1 changed files with 2 additions and 2 deletions
|
|
@ -189,7 +189,7 @@ _mesa_CreateMemoryObjectsEXT(GLsizei n, GLuint *memoryObjects)
|
|||
const char *func = "glCreateMemoryObjectsEXT";
|
||||
|
||||
if (MESA_VERBOSE & (VERBOSE_API))
|
||||
_mesa_debug(ctx, "%s(%d, %p)", func, n, memoryObjects);
|
||||
_mesa_debug(ctx, "%s(%d, %p)\n", func, n, memoryObjects);
|
||||
|
||||
if (!ctx->Extensions.EXT_memory_object) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(unsupported)", func);
|
||||
|
|
@ -766,7 +766,7 @@ _mesa_GenSemaphoresEXT(GLsizei n, GLuint *semaphores)
|
|||
const char *func = "glGenSemaphoresEXT";
|
||||
|
||||
if (MESA_VERBOSE & (VERBOSE_API))
|
||||
_mesa_debug(ctx, "%s(%d, %p)", func, n, semaphores);
|
||||
_mesa_debug(ctx, "%s(%d, %p)\n", func, n, semaphores);
|
||||
|
||||
if (!ctx->Extensions.EXT_semaphore) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "%s(unsupported)", func);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue