mesa: revert to using gallium drivers.

I had copied the config flags for mesa from the building wayland page, but
after asking in the channel it turns out there is no technical reason for not
using the gallium drivers.
This commit is contained in:
Carles Pagès 2013-03-10 23:04:24 +01:00
parent 6c949148b6
commit 8f77bc2024

View File

@ -25,9 +25,9 @@ stdenv.mkDerivation {
configureFlags =
""
+ " --enable-gles1 --enable-gles2 --disable-gallium-egl"
+ " --enable-gles1 --enable-gles2 --enable-gallium-egl"
+ " --with-gallium-drivers=i915,nouveau,r300,r600,svga,swrast"
+ " --with-egl-platforms=x11,wayland,drm --enable-gbm --enable-shared-glapi"
+ " --with-gallium-drivers=nouveau,r300,r600,svga,swrast"
+ stdenv.lib.optionalString enableR600LlvmCompiler " --enable-r600-llvm-compiler"
# Texture floats are patented, see docs/patents.txt
+ stdenv.lib.optionalString enableTextureFloats " --enable-texture-float";