Monthly Archives: August 2010

Mesa Source Tree Overview

docs – Documentation include – Public OpenGL header files src egl – EGL library sources docs – EGL documentation drivers – EGL drivers main – main EGL library implementation. This is where all EGL API functions are implemented, like eglCreateContext(). … Continue reading

Posted in Uncategorized | Leave a comment

Misc Mesa and Gallium code tree notes

Some information on the code tree Gallim3D: http://dri.freedesktop.org/doxygen/gallium/ Mesa: http://dri.freedesktop.org/doxygen/mesa/main/ TNL: Implements a pipeline that receives as input a buffer of vertices and does all necessary transformations (rotations, clipping, vertex shader etc.) and passes then the output to the rasterizer. … Continue reading

Posted in Uncategorized | Leave a comment

Building Gallium on Mesa 7.9-devel

AUTOCONF.. SCON.. and Plain old Make.. sigh, how many more ways are there to build this puppy?? They’d better be all in sync in the code tree… I’ll stick with autoconf for now… at least in th 7.9 tree… Building … Continue reading

Posted in Uncategorized | Leave a comment

Building DRI drivers for Mesa 7.8.2 on Fedora 12

Download: mesa 7.8.2 (lib, Demo, GLUT) dri2proto 1.99.3 libdrm 2.4.15 To make dri2proto: ./configure make install To make libdrm: ./configure make install note: libdrm 2.4.15 installs to /usr/local/lib by default, so /usr/local/lib need to be prepended to PKG_CONFIG_PATH before making … Continue reading

Posted in Uncategorized | Leave a comment