History log of /sdk/emulator/opengl/host/libs/Translator/EGL/EglGlobalInfo.cpp
Revision Date Author Comments
aac93f1585bc9bdf8a57b6ed3c47c24f56a3990a 10-Mar-2014 David 'Digit' Turner <digit@google.com> emulator/opengl: Remove android::Mutex.

This patch removes the dependency on android::Mutex from
<cutils/threads.h> by providing a custom implementation, which
is a simple wrapper around pthread_mutex_t / CriticalSection,
under shared/emugl/common/mutex.h

+ Provide unit tests.

Change-Id: I379ef0c480c478ab9ba5f2faaf8274267eff37ba
425be59a9fbc663fd7ac43cb7f447b4230c019d3 24-Aug-2012 Jesse Hall <jessehall@google.com> Check that the native display is valid before using it

EglOS::getDefaultDisplay() can return an invalid display, e.g. on X11
if $DISPLAY is not set. This is called from the EglGlobalInfo
constructor, which doesn't have a good way to indicate failure. So
instead EglGlobalInfo::addDisplay() checks that the display is valid
before wrapping it in a EglDisplay.

Bug: 7020498
Change-Id: Id18fc568dae5bff4b45b706f3322ae5e4785d95d
ce6c3389061fb9fcdefc94fab2044a8e11600b52 16-Apr-2012 Jesse Hall <jessehall@google.com> Move emulator GLES from development.git to sdk.git

The emulator GLES support has two interfaces: a host shared library
interface used by QEMU, and a protocol between the platform and the
host. The host library interface is not versioned; QEMU and the GLES
renderer must match. The protocol on the other hand must be backwards
compatible: a new GLES renderer must support an older platform image.

Thus for branching purposes it makes more sense to put the GLES
renderer in sdk.git, which is branched along with qemu.git for SDK
releases. Platform images will be built against the protocol version
in the platform branch of sdk.git.

Change-Id: I2c3bce627ecfd0a4b3e688d1839fe10755a21e58