repo.or.cz
/
mesa-waffle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
gitlab-ci: enable sanitizers for the meson builds
[mesa-waffle.git]
/
src
/
waffle
/
api
/
waffle_enum.c
blob
9d8b48f4acc6fd7eb6fad1476a3e3c9ecfb4607e
1
// SPDX-FileCopyrightText: Copyright 2012 Intel Corporation
2
// SPDX-License-Identifier: BSD-2-Clause
3
4
#include
"api_priv.h"
5
6
#include
"wcore_error.h"
7
#include
"wcore_util.h"
8
9
WAFFLE_API
const char
*
10
waffle_enum_to_string
(
int32_t
e
)
11
{
12
wcore_error_reset
();
13
return
wcore_enum_to_string
(
e
);
14
}