Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mapi: remove unneeded ARRAY_SIZE #define | Brian Paul | 2015-03-04 | 1 | -0/+1 |
| | | | | | | include util/macros.h instead. Reviewed-by: Jose Fonseca <[email protected]> | ||||
* | build: Move src/mapi/mapi/* to src/mapi/ | Matt Turner | 2013-04-15 | 1 | -2/+2 |
| | | | | | | Tested-by: Emil Velikov <[email protected]> Reviewed-and-Tested-by: Andreas Boll <[email protected]> Reviewed-by: Jordan Justen <[email protected]> | ||||
* | scons: Remove references to u_thread.c | José Fonseca | 2012-01-26 | 1 | -2/+8 |
| | | | | For future reference: always run "git grep" on refactorings. | ||||
* | Remove windows kernel support code. | José Fonseca | 2011-11-29 | 1 | -51/+50 |
| | | | | | | Not actively used. Reviewed-by: Brian Paul <[email protected]> | ||||
* | scons: Add support for GLES. | Chia-I Wu | 2011-01-22 | 1 | -0/+116 |
GLES can be enabled by running scons with $ scons gles=yes When gles=yes is given, the build is changed in three ways. First, libmesa.a will be built with FEATURE_ES1 and FEATURE_ES2. This makes DRI drivers and libEGL support and advertise GLES support. Second, GLES libraries will be created. They are libGLESv1_CM, libGLESv2, and libglapi. Last, libGL or opengl32 will link to libglapi. This change is required as _glapi_* will be declared as __declspec(dllimport) in libmesa.a on windows. libmesa.a expects those symbols to be defined in another DLL. Due to this change to GL, GLES support is marked experimental. Note that GLES requires libxml2-python to generate some of its sources. |