summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2011-09-20 14:01:45 +0800
committerChia-I Wu <[email protected]>2011-09-20 17:44:20 +0800
commita5f8d37be141fac5c4ac605163a552ac64324e15 (patch)
tree7573dd4f41357c72b5a57ce74b894e0fbad33840 /src/gallium/targets
parent5eca41665bbd6deb5ffff011e47ff0cec41916da (diff)
st/egl: add support for null platform
The backend calls null_sw_create() to create sw_winsys. And that is pretty much it...
Diffstat (limited to 'src/gallium/targets')
-rw-r--r--src/gallium/targets/egl-static/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/targets/egl-static/Makefile b/src/gallium/targets/egl-static/Makefile
index 1583ab181ea..2c07455ee4a 100644
--- a/src/gallium/targets/egl-static/Makefile
+++ b/src/gallium/targets/egl-static/Makefile
@@ -63,6 +63,9 @@ endif
ifneq ($(findstring fbdev, $(EGL_PLATFORMS)),)
egl_LIBS += $(TOP)/src/gallium/winsys/sw/fbdev/libfbdev.a
endif
+ifneq ($(findstring null, $(EGL_PLATFORMS)),)
+egl_LIBS += $(TOP)/src/gallium/winsys/sw/null/libws_null.a
+endif
# st/mesa
ifneq ($(filter $(GL_LIB), $(EGL_CLIENT_APIS)),)