<feed xmlns='http://www.w3.org/2005/Atom'>
<title>android-x86-mesa.git/configs, branch r300</title>
<subtitle>Androïd/x86 port of Mesa drivers
</subtitle>
<id>https://git.hiegel.fr/cgit/android-x86-mesa.git/atom?h=r300</id>
<link rel='self' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/atom?h=r300'/>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/'/>
<updated>2011-03-14T20:05:56Z</updated>
<entry>
<title>autoconf/make: Don't specify individual llvm libraries.</title>
<updated>2011-03-14T20:05:56Z</updated>
<author>
<name>José Fonseca</name>
<email>jfonseca@vmware.com</email>
</author>
<published>2011-03-14T19:58:22Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/commit/?id=202c345c7cf5074c0d0be208067c072c2f53535a'/>
<id>urn:sha1:202c345c7cf5074c0d0be208067c072c2f53535a</id>
<content type='text'>
We need more and more of these, and it is difficult and prone to version
incompatability issues trying to single out every one of them.

This mimicks what was done in SCons.
</content>
</entry>
<entry>
<title>gallivm: Use LLVM MC disassembler, instead of udis86.</title>
<updated>2011-03-13T19:24:26Z</updated>
<author>
<name>José Fonseca</name>
<email>jfonseca@vmware.com</email>
</author>
<published>2011-03-13T19:24:26Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/commit/?id=e6314db0ac537695a20feb5fab8d77a30836eccf'/>
<id>urn:sha1:e6314db0ac537695a20feb5fab8d77a30836eccf</id>
<content type='text'>
Included in LLVM 2.7+. Unlink udis86, should support all instructions that
LLVM can emit.
</content>
</entry>
<entry>
<title>glx: Take GLPROTO_CFLAGS into account.</title>
<updated>2011-03-07T20:48:20Z</updated>
<author>
<name>Henri Verbeet</name>
<email>hverbeet@gmail.com</email>
</author>
<published>2011-03-07T20:15:02Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/commit/?id=c3c91a0fe5e9a497c44481bcd072093e6edaac50'/>
<id>urn:sha1:c3c91a0fe5e9a497c44481bcd072093e6edaac50</id>
<content type='text'>
</content>
</entry>
<entry>
<title>mesa: Optionally build a dricore support library (v3)</title>
<updated>2011-02-12T02:31:05Z</updated>
<author>
<name>Christopher James Halse Rogers</name>
<email>christopher.halse.rogers@canonical.com</email>
</author>
<published>2011-02-03T00:19:32Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/commit/?id=d1e28b22673777fe1290cda899abf73aad02e4aa'/>
<id>urn:sha1:d1e28b22673777fe1290cda899abf73aad02e4aa</id>
<content type='text'>
This an adds --enable-shared-dricore option to configure.  When enabled,
DRI modules will link against a shared copy of the common mesa routines
rather than statically linking these.

This saves about 30MB on disc with a full complement of classic DRI
drivers.

v2: Only enable with a gcc-compatible compiler that handles rpath
    Handle DRI_CFLAGS without filter-out magic
    Build shared libraries with the full mklib voodoo
    Fix typos
v3: Resolve conflicts with talloc removal patches

Signed-off-by: Christopher James Halse Rogers &lt;christopher.halse.rogers@canonical.com&gt;
</content>
</entry>
<entry>
<title>egl: Implement libwayland-egl</title>
<updated>2011-02-07T12:55:20Z</updated>
<author>
<name>Benjamin Franzke</name>
<email>benjaminfranzke@googlemail.com</email>
</author>
<published>2011-02-04T11:24:08Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/commit/?id=214fc6e85057bc4661b76ae3f3c22733910da69c'/>
<id>urn:sha1:214fc6e85057bc4661b76ae3f3c22733910da69c</id>
<content type='text'>
This library is required and defined by wayland for
EGL implementations supporting wayland.
</content>
</entry>
<entry>
<title>Remove talloc from the make and automake build systems.</title>
<updated>2011-01-31T18:17:09Z</updated>
<author>
<name>Kenneth Graunke</name>
<email>kenneth@whitecape.org</email>
</author>
<published>2011-01-17T00:01:54Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/commit/?id=d1d8120545b0bd2f7ec48c5f03c77b967b082e04'/>
<id>urn:sha1:d1d8120545b0bd2f7ec48c5f03c77b967b082e04</id>
<content type='text'>
</content>
</entry>
<entry>
<title>glapi: Fix OpenGL and OpenGL ES interop.</title>
<updated>2011-01-20T09:15:50Z</updated>
<author>
<name>Chia-I Wu</name>
<email>olv@lunarg.com</email>
</author>
<published>2010-12-26T10:24:13Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/commit/?id=e8c7d7598fb48237508f566204c71ba8f74d544f'/>
<id>urn:sha1:e8c7d7598fb48237508f566204c71ba8f74d544f</id>
<content type='text'>
When --enable-shared-glapi is specified, libGL will share libglapi with
OpenGL ES instead of defining its own copy of glapi.  This makes sure an
app will get only one copy of glapi in its address space.

The new option is disabled by default.  When enabled, libGL and libglapi
must be built from the same source tree and distributed together.  This
requirement comes from the fact that the dispatch offsets used by these
libraries are re-assigned whenever GLAPI XMLs are changed.

For GLX, indirect rendering for has_different_protocol() functions is
tricky.  A has_different_protocol() function is assigned only one
dispatch offset, yet each entry point needs a different protocol opcode.
It cannot be supported by the shared glapi.  The fix to this is to make
glXGetProcAddress handle such functions specially before calling
_glapi_get_proc_address.

Note that these files are automatically generated/re-generated

 src/glx/indirect.c
 src/glx/indirect.h
 src/mapi/glapi/glapi_mapi_tmp.h
</content>
</entry>
<entry>
<title>glapi: Fix OpenGL ES 1.1 and 2.0 interop.</title>
<updated>2011-01-20T09:15:50Z</updated>
<author>
<name>Chia-I Wu</name>
<email>olv@lunarg.com</email>
</author>
<published>2010-12-26T10:02:59Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/commit/?id=9767d3b5ad08640737e9d8dd4feb046478ae1f4b'/>
<id>urn:sha1:9767d3b5ad08640737e9d8dd4feb046478ae1f4b</id>
<content type='text'>
Move _glapi_* symbols from libGLESv1_CM.so and libGLESv2.so to
libglapi.so.  This makes sure an app will get only one copy of glapi in
its address space.

Note that with this change, libGLES* and libglapi must be built from the
same source tree and distributed together.  This requirement comes from
the fact that the dispatch offsets used by these libraries are
re-assigned whenever GLAPI XMLs are changed.
</content>
</entry>
<entry>
<title>Add GLX_TLS setting to configs/default.</title>
<updated>2011-01-10T22:39:21Z</updated>
<author>
<name>Tom Fogal</name>
<email>tfogal@alumni.unh.edu</email>
</author>
<published>2011-01-10T22:37:26Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/commit/?id=0e3ff159f950f7481af53506a8331476bc54c00f'/>
<id>urn:sha1:0e3ff159f950f7481af53506a8331476bc54c00f</id>
<content type='text'>
Should have gone in with 31351dc029ff0e12a250e3ffc509f4f01e025a24,
thanks to Dan Nicholson for noticing.
</content>
</entry>
<entry>
<title>Export TLS support in gl.pc.</title>
<updated>2011-01-10T19:34:02Z</updated>
<author>
<name>Tom Fogal</name>
<email>tfogal@alumni.unh.edu</email>
</author>
<published>2010-12-06T00:58:32Z</published>
<link rel='alternate' type='text/html' href='https://git.hiegel.fr/cgit/android-x86-mesa.git/commit/?id=31351dc029ff0e12a250e3ffc509f4f01e025a24'/>
<id>urn:sha1:31351dc029ff0e12a250e3ffc509f4f01e025a24</id>
<content type='text'>
</content>
</entry>
</feed>
