diff options
author | Chia-I Wu <[email protected]> | 2011-09-20 14:01:45 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-09-20 17:44:20 +0800 |
commit | a5f8d37be141fac5c4ac605163a552ac64324e15 (patch) | |
tree | 7573dd4f41357c72b5a57ce74b894e0fbad33840 /src/gallium/targets | |
parent | 5eca41665bbd6deb5ffff011e47ff0cec41916da (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/Makefile | 3 |
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)),) |