OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EglContext
(Results
1 - 4
of
4
) sorted by null
/sdk/emulator/opengl/host/libs/Translator/EGL/
EglContext.cpp
16
#include "
EglContext
.h"
21
unsigned int
EglContext
::s_nextContextHndl = 0;
25
bool
EglContext
::usingSurface(SurfacePtr surface) {
29
EglContext
::
EglContext
(EglDisplay *dpy, EGLNativeContextType context,ContextPtr shared_context,
46
EglContext
::~
EglContext
()
65
void
EglContext
::setSurfaces(SurfacePtr read,SurfacePtr draw)
71
bool
EglContext
::getAttrib(EGLint attrib,EGLint* value) {
82
bool
EglContext
::attachImage(unsigned int imageId,ImagePtr img)
[
all
...]
EglContext.h
32
class
EglContext
;
33
typedef SmartPtr<
EglContext
> ContextPtr;
37
class
EglContext
{
41
EglContext
(EglDisplay *dpy, EGLNativeContextType context,ContextPtr shared_context,EglConfig* config,GLEScontext* glesCtx,GLESVersion ver,ObjectNameManager* mngr);
56
~
EglContext
();
Android.mk
29
EglContext
.cpp \
EglImp.cpp
36
#include "
EglContext
.h"
75
EGLImageKHR eglCreateImageKHR(EGLDisplay display,
EGLContext
context, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list);
119
#define VALIDATE_CONTEXT_RETURN(
EGLContext
,ret) \
120
ContextPtr ctx = dpy->getContext(
EGLContext
); \
135
#define VALIDATE_CONTEXT(
EGLContext
) \
136
VALIDATE_CONTEXT_RETURN(
EGLContext
,EGL_FALSE)
605
EGLAPI
EGLContext
EGLAPIENTRY eglCreateContext(EGLDisplay display, EGLConfig config,
606
EGLContext
share_context,
651
ContextPtr ctx(new
EglContext
(dpy, nativeContext,sharedCtxPtr,cfg,glesCtx,version,dpy->getManager(version)));
660
EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay display,
EGLContext
context)
[
all
...]
Completed in 606 milliseconds