OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:egl_display_t
(Results
1 - 10
of
10
) sorted by null
/frameworks/native/opengl/libs/EGL/
egl_display.h
46
class EGLAPI
egl_display_t
{ // marked as EGLAPI for testing purposes
class in namespace:android
47
static
egl_display_t
sDisplay[NUM_DISPLAYS];
58
egl_display_t
();
59
~
egl_display_t
();
85
static
egl_display_t
* get(EGLDisplay dpy);
144
// The owning
egl_display_t
's lock may be but is not required to be held
146
// class may call back up to
egl_display_t
directly or indirectly.
187
// An egl_display_ptr is a kind of smart pointer for
egl_display_t
objects.
188
// It doesn't refcount the
egl_display_t
, but does ensure that the underlying
193
explicit egl_display_ptr(
egl_display_t
* dpy): mDpy(dpy)
[
all
...]
egl_display.cpp
56
egl_display_t
egl_display_t
::sDisplay[NUM_DISPLAYS];
58
egl_display_t
::
egl_display_t
() :
function in class:android::egl_display_t
62
egl_display_t
::~
egl_display_t
() {
67
egl_display_t
*
egl_display_t
::get(EGLDisplay dpy) {
72
void
egl_display_t
::addObject(egl_object_t* object) {
77
void
egl_display_t
::removeObject(egl_object_t* object)
[
all
...]
egl_cache.h
31
class
egl_display_t
;
45
void initialize(
egl_display_t
* display);
egl_object.h
40
class
egl_display_t
;
43
egl_display_t
*display;
51
egl_object_t(
egl_display_t
* display);
56
inline
egl_display_t
* getDisplay() const { return display; }
59
static bool get(
egl_display_t
const* display, egl_object_t* object);
70
explicit LocalRef(
egl_display_t
const* display, T o) : ref(0) {
134
egl_surface_t(
egl_display_t
* dpy, EGLConfig config,
egl_object.cpp
35
egl_object_t::egl_object_t(
egl_display_t
* disp) :
59
bool egl_object_t::get(
egl_display_t
const* display, egl_object_t* object) {
67
egl_surface_t::egl_surface_t(
egl_display_t
* dpy, EGLConfig config,
egl_cache.cpp
90
void egl_cache_t::initialize(
egl_display_t
*display) {
eglApi.cpp
280
EGLDisplay dpy =
egl_display_t
::getFromNativeDisplay(display);
[
all
...]
/frameworks/native/opengl/tests/EGLTest/
egl_cache_test.cpp
55
mCache->initialize(
egl_display_t
::get(EGL_DEFAULT_DISPLAY));
66
mCache->initialize(
egl_display_t
::get(EGL_DEFAULT_DISPLAY));
99
mCache->initialize(
egl_display_t
::get(EGL_DEFAULT_DISPLAY));
102
mCache->initialize(
egl_display_t
::get(EGL_DEFAULT_DISPLAY));
/frameworks/native/opengl/libagl/
egl.cpp
101
struct
egl_display_t
struct in namespace:android
103
egl_display_t
() : type(0), initialized(0) { }
function in struct:android::egl_display_t
105
static
egl_display_t
& get_display(EGLDisplay dpy);
115
static
egl_display_t
gDisplays[NUM_DISPLAYS];
117
egl_display_t
&
egl_display_t
::get_display(EGLDisplay dpy) {
[
all
...]
/frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp
183
egl_display_t
* eglDisplay = get_display_nowake(dpy);
Completed in 177 milliseconds