mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2025-04-07 07:11:44 +00:00
mesa: Replace MESA_VERSION with PACKAGE_VERSION.
One fewer place to have to update. Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
42c1b33f6d
commit
439c3d4e31
@ -2,7 +2,6 @@ AUTOMAKE_OPTIONS = subdir-objects
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
$(GALLIUM_PIPE_LOADER_DEFINES) \
|
||||
-DMESA_VERSION=\"$(MESA_VERSION)\" \
|
||||
-DPIPE_SEARCH_DIR=\"$(libdir)/gallium-pipe\" \
|
||||
-I$(top_srcdir)/include \
|
||||
-I$(top_srcdir)/src/gallium/include \
|
||||
|
@ -217,13 +217,13 @@ clGetDeviceInfo(cl_device_id dev, cl_device_info param,
|
||||
return string_property(buf, size, size_ret, dev->vendor_name());
|
||||
|
||||
case CL_DRIVER_VERSION:
|
||||
return string_property(buf, size, size_ret, MESA_VERSION);
|
||||
return string_property(buf, size, size_ret, PACKAGE_VERSION);
|
||||
|
||||
case CL_DEVICE_PROFILE:
|
||||
return string_property(buf, size, size_ret, "FULL_PROFILE");
|
||||
|
||||
case CL_DEVICE_VERSION:
|
||||
return string_property(buf, size, size_ret, "OpenCL 1.1 MESA " MESA_VERSION);
|
||||
return string_property(buf, size, size_ret, "OpenCL 1.1 MESA " PACKAGE_VERSION);
|
||||
|
||||
case CL_DEVICE_EXTENSIONS:
|
||||
return string_property(buf, size, size_ret, "");
|
||||
|
@ -51,7 +51,7 @@ clGetPlatformInfo(cl_platform_id platform, cl_platform_info param_name,
|
||||
|
||||
case CL_PLATFORM_VERSION:
|
||||
return string_property(buf, size, size_ret,
|
||||
"OpenCL 1.1 MESA " MESA_VERSION);
|
||||
"OpenCL 1.1 MESA " PACKAGE_VERSION);
|
||||
|
||||
case CL_PLATFORM_NAME:
|
||||
return string_property(buf, size, size_ret, "Default");
|
||||
|
@ -25,8 +25,7 @@ include $(top_srcdir)/src/gallium/Automake.inc
|
||||
AM_CFLAGS = $(GALLIUM_CFLAGS)
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_srcdir)/include \
|
||||
-I$(top_srcdir)/src/mapi \
|
||||
-DVEGA_VERSION_STRING=\"$(MESA_VERSION)\"
|
||||
-I$(top_srcdir)/src/mapi
|
||||
|
||||
noinst_LTLIBRARIES = libvega.la
|
||||
|
||||
|
@ -12,7 +12,7 @@ env.Append(CPPPATH = [
|
||||
Dir('.'),
|
||||
])
|
||||
env.Append(CPPDEFINES = [
|
||||
'VEGA_VERSION_STRING=',
|
||||
'PACKAGE_VERSION='
|
||||
'KHRONOS_DLL_EXPORTS',
|
||||
])
|
||||
|
||||
|
@ -370,7 +370,7 @@ vg_api_destroy(struct st_api *stapi)
|
||||
}
|
||||
|
||||
static const struct st_api vg_api = {
|
||||
"Vega " VEGA_VERSION_STRING,
|
||||
"Vega " PACKAGE_VERSION,
|
||||
ST_API_OPENVG,
|
||||
ST_PROFILE_DEFAULT_MASK,
|
||||
0,
|
||||
|
@ -63,7 +63,7 @@
|
||||
#define SERVER_MINOR_VERSION 4
|
||||
|
||||
/* This is appended onto the glXGetClient/ServerString version strings. */
|
||||
#define MESA_GLX_VERSION "Mesa " MESA_VERSION_STRING
|
||||
#define MESA_GLX_VERSION "Mesa " PACKAGE_VERSION
|
||||
|
||||
/* Who implemented this GLX? */
|
||||
#define VENDOR "Brian Paul"
|
||||
|
@ -410,7 +410,7 @@ one_time_init( struct gl_context *ctx )
|
||||
#if defined(DEBUG) && defined(__DATE__) && defined(__TIME__)
|
||||
if (MESA_VERBOSE != 0) {
|
||||
_mesa_debug(ctx, "Mesa %s DEBUG build %s %s\n",
|
||||
MESA_VERSION_STRING, __DATE__, __TIME__);
|
||||
PACKAGE_VERSION, __DATE__, __TIME__);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -848,7 +848,7 @@ _mesa_problem( const struct gl_context *ctx, const char *fmtString, ... )
|
||||
_mesa_vsnprintf( str, MAX_DEBUG_MESSAGE_LENGTH, fmtString, args );
|
||||
va_end( args );
|
||||
fprintf(stderr, "Mesa %s implementation error: %s\n",
|
||||
MESA_VERSION_STRING, str);
|
||||
PACKAGE_VERSION, str);
|
||||
fprintf(stderr, "Please report at bugs.freedesktop.org\n");
|
||||
}
|
||||
}
|
||||
|
@ -99,7 +99,7 @@ create_version_string(struct gl_context *ctx, const char *prefix)
|
||||
ctx->VersionString = malloc(max);
|
||||
if (ctx->VersionString) {
|
||||
_mesa_snprintf(ctx->VersionString, max,
|
||||
"%s%u.%u%s Mesa " MESA_VERSION_STRING
|
||||
"%s%u.%u%s Mesa " PACKAGE_VERSION
|
||||
#ifdef MESA_GIT_SHA1
|
||||
" (" MESA_GIT_SHA1 ")"
|
||||
#endif
|
||||
|
@ -883,7 +883,7 @@ st_manager_add_color_renderbuffer(struct st_context *st,
|
||||
}
|
||||
|
||||
static const struct st_api st_gl_api = {
|
||||
"Mesa " MESA_VERSION_STRING,
|
||||
"Mesa " PACKAGE_VERSION,
|
||||
ST_API_OPENGL,
|
||||
#if FEATURE_GL
|
||||
ST_PROFILE_DEFAULT_MASK |
|
||||
|
Loading…
x
Reference in New Issue
Block a user