mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
llvmpipe: include LLVM version number in name string
This commit is contained in:
parent
3143e95353
commit
b38c26f19f
1 changed files with 3 additions and 1 deletions
|
|
@ -93,7 +93,9 @@ llvmpipe_get_vendor(struct pipe_screen *screen)
|
|||
static const char *
|
||||
llvmpipe_get_name(struct pipe_screen *screen)
|
||||
{
|
||||
return "llvmpipe";
|
||||
static char buf[100];
|
||||
snprintf(buf, sizeof(buf), "llvmpipe (LLVM 0x%x)", HAVE_LLVM);
|
||||
return buf;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue