mesa: Use latest Mesa optional package

* Use non-debug version which is a *lot* smaller
* Represents bug fixes to Mesa under Haiku, x86
  assembly + sse is now used with swrast.
* Remove state.h requirement as I can't find anything
  that actually uses it.
This commit is contained in:
Alexander von Gluck IV 2012-01-23 13:45:06 -06:00
parent 4b3408bdf6
commit bec3facc5e
2 changed files with 2 additions and 3 deletions

View File

@ -177,8 +177,8 @@ if $(TARGET_ARCH) = x86 {
local galliumObjects ;
local zipFile ;
if $(HAIKU_GCC_VERSION[1]) >= 4 {
#HAIKU_MESA_FILE = mesa-8.0dev-x86-gcc4-2012-01-17.zip ;
HAIKU_MESA_FILE = mesa-8.0devdbg-x86-gcc4-2012-01-17.zip ;
HAIKU_MESA_FILE = mesa-8.0dev-x86-gcc4-2012-01-23.zip ;
#HAIKU_MESA_FILE = mesa-8.0devdbg-x86-gcc4-2012-01-23.zip ;
glslObject = lib.haiku/libglsl.a ;
galliumObjects = lib.haiku/libgallium.a ;
} else {

View File

@ -35,7 +35,6 @@ extern "C" {
#include "main/formats.h"
#include "main/framebuffer.h"
#include "main/renderbuffer.h"
#include "main/state.h"
#include "swrast/swrast.h"
#if __GNUC__ > 2
#include "swrast/s_renderbuffer.h"