diff options
author | Boyan Ding <boyan.j.ding@gmail.com> | 2015-07-21 23:43:54 +0800 |
---|---|---|
committer | Martin Peres <martin.peres@linux.intel.com> | 2015-11-17 17:26:20 +0200 |
commit | 6bd9ba7d07490059024d16ba32fafa1c5bb239ee (patch) | |
tree | 55b87a823566ebab87d6097c9cfc019e2f2a882c /src/glx/Makefile.am | |
parent | 252b143e9e8ca0b98143c237f14cb0b548ffd510 (diff) | |
download | external_mesa3d-6bd9ba7d07490059024d16ba32fafa1c5bb239ee.zip external_mesa3d-6bd9ba7d07490059024d16ba32fafa1c5bb239ee.tar.gz external_mesa3d-6bd9ba7d07490059024d16ba32fafa1c5bb239ee.tar.bz2 |
loader: Add dri3 helper
v2: From Martin Peres
- Try to fit in the 80-col limit as much as possible
v3: From Martin Peres
- introduce loader_dri3_helper.la to avoid dragging the xcb dep everywhere (Kristian & Emil)
- get rid of the width, height, dri_screen and is_different_gpu vfuncs (Kristian)
- replace the create/destroy functions with init/fini for dri3 drawables
- prefix static functions with dri3_ and exported ones with loader_dri3 (Emil)
- keep the function definition consistent (Emil)
Signed-off-by: Boyan Ding <boyan.j.ding@gmail.com>
Signed-off-by: Martin Peres <martin.peres@linux.intel.com>
Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
Reviewed-by: Emil Velikov <emil.velikov@collabora.co.uk>
Diffstat (limited to 'src/glx/Makefile.am')
-rw-r--r-- | src/glx/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glx/Makefile.am b/src/glx/Makefile.am index e64955e..d08ff7a 100644 --- a/src/glx/Makefile.am +++ b/src/glx/Makefile.am @@ -133,6 +133,8 @@ if HAVE_DRI3 libglx_la_SOURCES += \ dri3_glx.c \ dri3_priv.h + +libglx_la_LIBADD += $(XCB_DRI3_LIBS) endif if HAVE_APPLEDRI |