aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/egl/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* egl: remove compiler flags from CFLAGSBrian Paul2009-02-251-3/+1
| | | | The incoming CFLAGS already has -fPIC and -Wall. Don't want -g here either.
* egl: add comment/reminder to fix the CFLAGS in this MakefileBrian Paul2009-02-251-0/+2
|
* gallium: Fix build when exiting CFLAGS contains a path with different gl.hBenjamin Close2009-02-251-2/+3
| | | | | | | | | | If a path is in CFLAGS when building and that path contains gl.h then the wrong gl.h is used when building. This can lead to very confusing errors. The solution is rather than postpend the CFLAGS we prepend the paths as expected allowing compilation to occur as intended Signed-off-by: Benjamin Close <[email protected]>
* egl: Doesn't depend on xorg or pixmanJakob Bornecrantz2009-02-121-1/+0
|
* galium: Makefile fixes: -Werror=implicit-function-declaration -> ↵Benjamin Close2009-02-131-1/+1
| | | | | | -Werror-implicit-function-declaration Found-By: Tinderbox
* Add external pixman CFLAGS after all internal include pathsDan Nicholson2009-02-111-1/+1
| | | | | | | | With the pixman CFLAGS at the beginning of the command line, my build was picking up the glcore.h from glproto, which doesn't have any of the TFP fields in __GLcontextmodes. Signed-off-by: Dan Nicholson <[email protected]>
* egl: Add a egl state_tracker that use GalliumJakob Bornecrantz2009-01-181-0/+29
This works on top Gallium and KMS. The only thing that does not work currently is swap buffers for shown mesa screens. So the only fun thing this will produce is a white screen. The driver wishing to us the state_tracker needs to implement the intrace as define in drm_api.h located in gallium/include/state_tracker. And also have a working KMS implementation.