mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-09 12:00:26 +01:00
gbm: turn GBM_ALWAYS_SOFTWARE into a boolean
Instead of setting based on set/unset, allow users to use boolean values. Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
f940b1665a
commit
6ea8db5b4c
3 changed files with 9 additions and 3 deletions
|
|
@ -32,7 +32,10 @@ LOCAL_EXPORT_C_INCLUDE_DIRS := \
|
|||
LOCAL_C_INCLUDES := \
|
||||
$(LOCAL_PATH)/main
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := libmesa_loader
|
||||
LOCAL_STATIC_LIBRARIES := \
|
||||
libmesa_util \
|
||||
libmesa_loader
|
||||
|
||||
LOCAL_MODULE := libgbm
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ libgbm_la_LDFLAGS = \
|
|||
|
||||
libgbm_la_LIBADD = \
|
||||
$(top_builddir)/src/loader/libloader.la \
|
||||
$(top_builddir)/src/util/libmesautil.la \
|
||||
$(top_builddir)/src/util/libxmlconfig.la \
|
||||
$(DLOPEN_LIBS)
|
||||
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@
|
|||
|
||||
#include "gbmint.h"
|
||||
#include "loader.h"
|
||||
#include "util/debug.h"
|
||||
#include "util/macros.h"
|
||||
|
||||
/* For importing wl_buffer */
|
||||
|
|
@ -1336,7 +1337,8 @@ static struct gbm_device *
|
|||
dri_device_create(int fd)
|
||||
{
|
||||
struct gbm_dri_device *dri;
|
||||
int ret, force_sw;
|
||||
int ret;
|
||||
bool force_sw;
|
||||
|
||||
dri = calloc(1, sizeof *dri);
|
||||
if (!dri)
|
||||
|
|
@ -1364,7 +1366,7 @@ dri_device_create(int fd)
|
|||
|
||||
mtx_init(&dri->mutex, mtx_plain);
|
||||
|
||||
force_sw = getenv("GBM_ALWAYS_SOFTWARE") != NULL;
|
||||
force_sw = env_var_as_boolean("GBM_ALWAYS_SOFTWARE", false);
|
||||
if (!force_sw) {
|
||||
ret = dri_screen_create(dri);
|
||||
if (ret)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue