Remove trailing space

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Gert Wollny <gert.wollny@collabora.com>
macos/master
Yonggang Luo 2 years ago committed by Gert Wollny
parent a96d650ed0
commit dffbb13a47
  1. 68
      src/mesa/util/u_debug.h
  2. 2
      src/vrend_renderer.h

@ -1,8 +1,8 @@
/**************************************************************************
*
*
* Copyright 2008 VMware, Inc.
* All Rights Reserved.
*
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
@ -10,11 +10,11 @@
* distribute, sub license, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
@ -22,16 +22,16 @@
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*
**************************************************************************/
/**
* @file
* Cross-platform debugging helpers.
*
* For now it just has assert and printf replacements, but it might be extended
* with stack trace reports and more advanced logging in the near future.
*
*
* For now it just has assert and printf replacements, but it might be extended
* with stack trace reports and more advanced logging in the near future.
*
* @author Jose Fonseca <jfonseca@vmware.com>
*/
@ -62,7 +62,7 @@ extern "C" {
#define _util_printf_format(fmt, list) PRINTFLIKE(fmt, list)
void _debug_vprintf(const char *format, va_list ap);
static inline void
_debug_printf(const char *format, ...)
@ -164,9 +164,9 @@ debug_get_version_option(const char *name, unsigned *major, unsigned *minor);
#ifdef _MSC_VER
__declspec(noreturn)
#endif
void _debug_assert_fail(const char *expr,
const char *file,
unsigned line,
void _debug_assert_fail(const char *expr,
const char *file,
unsigned line,
const char *function)
#if defined(__GNUC__) && !defined(DEBUG)
__attribute__((noreturn))
@ -174,10 +174,10 @@ void _debug_assert_fail(const char *expr,
;
/**
/**
* Assert macro
*
* Do not expect that the assert call terminates -- errors must be handled
*
* Do not expect that the assert call terminates -- errors must be handled
* regardless of assert behavior.
*
* For non debug builds the assert macro will expand to a no-op, so do not
@ -205,7 +205,7 @@ void _debug_assert_fail(const char *expr,
_debug_printf("%s\n", __FUNCTION__)
#else
#define debug_checkpoint() \
((void)0)
((void)0)
#endif
@ -217,7 +217,7 @@ void _debug_assert_fail(const char *expr,
_debug_printf("%s:%u:%s\n", __FILE__, __LINE__, __FUNCTION__)
#else
#define debug_checkpoint_full() \
((void)0)
((void)0)
#endif
@ -229,7 +229,7 @@ void _debug_assert_fail(const char *expr,
_debug_printf("%s:%u:%s: warning: %s\n", __FILE__, __LINE__, __FUNCTION__, __msg)
#else
#define debug_warning(__msg) \
((void)0)
((void)0)
#endif
@ -248,7 +248,7 @@ void _debug_assert_fail(const char *expr,
} while (0)
#else
#define debug_warn_once(__msg) \
((void)0)
((void)0)
#endif
@ -257,7 +257,7 @@ void _debug_assert_fail(const char *expr,
*/
#ifdef DEBUG
#define debug_error(__msg) \
_debug_printf("%s:%u:%s: error: %s\n", __FILE__, __LINE__, __FUNCTION__, __msg)
_debug_printf("%s:%u:%s: error: %s\n", __FILE__, __LINE__, __FUNCTION__, __msg)
#else
#define debug_error(__msg) \
_debug_printf("error: %s\n", __msg)
@ -282,7 +282,7 @@ struct debug_named_value
/**
* Some C pre-processor magic to simplify creating named values.
*
*
* Example:
* @code
* static const debug_named_value my_names[] = {
@ -291,9 +291,9 @@ struct debug_named_value
* DEBUG_NAMED_VALUE(MY_ENUM_VALUE_Z),
* DEBUG_NAMED_VALUE_END
* };
*
*
* ...
* debug_printf("%s = %s\n",
* debug_printf("%s = %s\n",
* name,
* debug_dump_enum(my_names, my_value));
* ...
@ -308,11 +308,11 @@ struct debug_named_value
* Convert a enum value to a string.
*/
const char *
debug_dump_enum(const struct debug_named_value *names,
debug_dump_enum(const struct debug_named_value *names,
unsigned long value);
const char *
debug_dump_enum_noprefix(const struct debug_named_value *names,
debug_dump_enum_noprefix(const struct debug_named_value *names,
const char *prefix,
unsigned long value);
@ -321,7 +321,7 @@ debug_dump_enum_noprefix(const struct debug_named_value *names,
* Convert binary flags value to a string.
*/
const char *
debug_dump_flags(const struct debug_named_value *names,
debug_dump_flags(const struct debug_named_value *names,
unsigned long value);
@ -364,14 +364,14 @@ void debug_funclog_enter_exit(const char* f, const int line, const char* file);
/**
* Get option.
*
* It is an alias for getenv on Linux.
*
* On Windows it reads C:\gallium.cfg, which is a text file with CR+LF line
*
* It is an alias for getenv on Linux.
*
* On Windows it reads C:\gallium.cfg, which is a text file with CR+LF line
* endings with one option per line as
*
*
* NAME=value
*
*
* This file must be terminated with an extra empty line.
*/
const char *
@ -384,7 +384,7 @@ long
debug_get_num_option(const char *name, long dfault);
uint64_t
debug_get_flags_option(const char *name,
debug_get_flags_option(const char *name,
const struct debug_named_value *flags,
uint64_t dfault);

@ -88,7 +88,7 @@ struct vrend_resource {
uint64_t mipmap_offsets[VR_MAX_TEXTURE_2D_LEVELS];
void *gbm_bo, *egl_image;
void *aux_plane_egl_image[VIRGL_GBM_MAX_PLANES];
uint64_t size;
GLbitfield buffer_storage_flags;
GLuint memobj;

Loading…
Cancel
Save