mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 22:00:13 +01:00
clover: Update OpenCL version string to match OpenGL
Change MESA into Mesa in CL_PLATFORM_VERSION and CL_DEVICE_VERSION. For both, always append git version suffix from git_sha1.h. v5: move semicolon to same line as MESA_GIT_SHA1. v4: drop #ifdef guards. v3: add missing include. v2: change CL_DEVICE_VERSION as well. Cc: <mesa-stable@lists.freedesktop.org> Reviewed-by: Francisco Jerez <currojerez@riseup.net>
This commit is contained in:
parent
bd9f972651
commit
4825264f75
2 changed files with 6 additions and 2 deletions
|
|
@ -23,6 +23,7 @@
|
|||
#include "api/util.hpp"
|
||||
#include "core/platform.hpp"
|
||||
#include "core/device.hpp"
|
||||
#include "git_sha1.h"
|
||||
|
||||
using namespace clover;
|
||||
|
||||
|
|
@ -300,7 +301,8 @@ clGetDeviceInfo(cl_device_id d_dev, cl_device_info param,
|
|||
break;
|
||||
|
||||
case CL_DEVICE_VERSION:
|
||||
buf.as_string() = "OpenCL 1.1 MESA " PACKAGE_VERSION;
|
||||
buf.as_string() = "OpenCL 1.1 Mesa " PACKAGE_VERSION
|
||||
" (" MESA_GIT_SHA1 ")";
|
||||
break;
|
||||
|
||||
case CL_DEVICE_EXTENSIONS:
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@
|
|||
|
||||
#include "api/util.hpp"
|
||||
#include "core/platform.hpp"
|
||||
#include "git_sha1.h"
|
||||
|
||||
using namespace clover;
|
||||
|
||||
|
|
@ -57,7 +58,8 @@ clover::GetPlatformInfo(cl_platform_id d_platform, cl_platform_info param,
|
|||
break;
|
||||
|
||||
case CL_PLATFORM_VERSION:
|
||||
buf.as_string() = "OpenCL 1.1 MESA " PACKAGE_VERSION;
|
||||
buf.as_string() = "OpenCL 1.1 Mesa " PACKAGE_VERSION
|
||||
" (" MESA_GIT_SHA1 ")";
|
||||
break;
|
||||
|
||||
case CL_PLATFORM_NAME:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue