HomeSort by relevance Sort by last modified time
    Searched refs:EglConfig (Results 1 - 18 of 18) sorted by null

  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglConfig.h 26 class EglConfig {
29 bool operator<(const EglConfig& conf) const;
30 bool operator>=(const EglConfig& conf) const;
31 bool compitableWith(const EglConfig& conf) const; //compitability
32 bool choosen(const EglConfig& dummy);
38 EglConfig(EGLint red_size,
62 EglConfig(const EglConfig& conf);
64 EglConfig(const EglConfig& conf
    [all...]
EglPixmapSurface.h 27 EglPixmapSurface(EglDisplay *dpy, EGLNativePixmapType pix,EglConfig* config);
EglDisplay.h 26 #include "EglConfig.h"
33 typedef std::list<EglConfig*> ConfigsList;
44 int getConfigs(EGLConfig* configs,int config_size);
45 int chooseConfigs(const EglConfig& dummy,EGLConfig* configs,int config_size);
46 EglConfig* getConfig(EGLConfig conf);
47 EglConfig* getConfig(EGLint id );
71 int doChooseConfigs(const EglConfig& dummy,EGLConfig* configs,int config_size)
    [all...]
EglConfig.cpp 16 #include "EglConfig.h"
18 EglConfig::EglConfig(EGLint red_size,
77 EglConfig::EglConfig(const EglConfig& conf):m_buffer_size(conf.m_buffer_size),
110 EglConfig::EglConfig(const EglConfig& conf,
150 bool EglConfig::getConfAttrib(EGLint attrib,EGLint* val) const
    [all...]
EglOsApi.h 26 #include "EglConfig.h"
44 bool checkWindowPixelFormatMatch(EGLNativeInternalDisplayType dpy,EGLNativeWindowType win,EglConfig* cfg,unsigned int* width,unsigned int* height);
45 bool checkPixmapPixelFormatMatch(EGLNativeInternalDisplayType dpy,EGLNativePixmapType pix,EglConfig* cfg,unsigned int* width,unsigned int* height);
54 EGLNativeSurfaceType createPbufferSurface(EGLNativeInternalDisplayType dpy,EglConfig* cfg,EglPbufferSurface* pb);
55 EGLNativeContextType createContext(EGLNativeInternalDisplayType dpy,EglConfig* cfg,EGLNativeContextType sharedContext);
EglWindowSurface.h 22 #include "EglConfig.h"
28 EglWindowSurface(EglDisplay *dpy, EGLNativeWindowType win,EglConfig* config,unsigned width,unsigned int height);
EglContext.h 27 #include "EglConfig.h"
41 EglContext(EglDisplay *dpy, EGLNativeContextType context,ContextPtr shared_context,EglConfig* config,GLEScontext* glesCtx,GLESVersion ver,ObjectNameManager* mngr);
48 EglConfig* getConfig(){ return m_config;};
62 EglConfig* m_config;
EglSurface.h 23 #include "EglConfig.h"
42 EglConfig* getConfig(){return m_config;};
54 EglConfig* config,
68 EglConfig* m_config;
EglDisplay.cpp 50 EglConfig* pConfig = *it;
77 static bool compareEglConfigsPtrs(EglConfig* first,EglConfig* second) {
85 EGLConfig match;
87 EglConfig dummy(5, 6, 5, 0, // RGB_565
98 const EglConfig* config = (EglConfig*)match;
117 EglConfig* newConfig = new EglConfig(*config,max_config_id+1,5,6,5,0);
130 EglConfig* EglDisplay::getConfig(EGLConfig conf)
    [all...]
EglMacApi.cpp 30 static EglConfig* pixelFormatToConfig(int index,int renderableType,EGLNativePixelFormatType* frmt){
77 return new EglConfig(red,green,blue,alpha,caveat,(EGLint)index,depth,level,pMaxWidth,pMaxHeight,pMaxPixels,renderable,renderableType,
99 EglConfig* conf = pixelFormatToConfig(i++,renderableType,&frmt);
125 bool checkWindowPixelFormatMatch(EGLNativeDisplayType dpy,EGLNativeWindowType win,EglConfig* cfg,unsigned int* width,unsigned int* height) {
138 bool checkPixmapPixelFormatMatch(EGLNativeDisplayType dpy,EGLNativePixmapType pix,EglConfig* cfg,unsigned int* width,unsigned int* height) {
142 EGLNativeSurfaceType createPbufferSurface(EGLNativeDisplayType dpy,EglConfig* cfg,EglPbufferSurface* srfc){
157 EGLNativeContextType createContext(EGLNativeDisplayType dpy,EglConfig* cfg,EGLNativeContextType sharedContext) {
EglPbufferSurface.h 25 EglPbufferSurface(EglDisplay *dpy, EglConfig* config):
EglPixmapSurface.cpp 28 EglConfig* config) :
EglWindowSurface.cpp 28 EglConfig* config,
EglContext.cpp 30 EglConfig* config,GLEScontext* glesCtx,GLESVersion ver,ObjectNameManager* mngr):
EglX11Api.cpp 84 EglConfig* pixelFormatToConfig(EGLNativeDisplayType dpy,int renderableType,EGLNativePixelFormatType* frmt){
158 return new EglConfig(red,green,blue,alpha,caveat,configId,depth,level,pMaxWidth,pMaxHeight,
167 EglConfig* conf = pixelFormatToConfig(dpy,renderableType,&frmtList[i]);
200 bool checkWindowPixelFormatMatch(EGLNativeDisplayType dpy,EGLNativeWindowType win,EglConfig* cfg,unsigned int* width,unsigned int* height) {
213 bool checkPixmapPixelFormatMatch(EGLNativeDisplayType dpy,EGLNativePixmapType pix,EglConfig* cfg,unsigned int* width,unsigned int* height) {
225 EGLNativeSurfaceType createPbufferSurface(EGLNativeDisplayType dpy,EglConfig* cfg,EglPbufferSurface* srfc){
246 EGLNativeContextType createContext(EGLNativeDisplayType dpy,EglConfig* cfg,EGLNativeContextType sharedContext) {
Android.mk 28 EglConfig.cpp \
EglWindowsApi.cpp 336 EglConfig* pixelFormatToConfig(EGLNativeInternalDisplayType display,int renderableType,EGLNativePixelFormatType* frmt,int index){
401 return new EglConfig(red,green,blue,alpha,caveat,(EGLint)index,depth,level,pMaxWidth,pMaxHeight,pMaxPixels,renderable,renderableType,
424 EglConfig* pConfig = pixelFormatToConfig(display,renderableType,&pfd,iPixelFormat);
448 bool checkWindowPixelFormatMatch(EGLNativeInternalDisplayType dpy,EGLNativeWindowType win,EglConfig* cfg,unsigned int* width,unsigned int* height) {
460 bool checkPixmapPixelFormatMatch(EGLNativeInternalDisplayType dpy,EGLNativePixmapType pix,EglConfig* cfg,unsigned int* width,unsigned int* height){
471 EGLNativeSurfaceType createPbufferSurface(EGLNativeInternalDisplayType display,EglConfig* cfg,EglPbufferSurface* pbSurface) {
516 EGLNativeContextType createContext(EGLNativeInternalDisplayType display,EglConfig* cfg,EGLNativeContextType sharedContext) {
EglImp.cpp 37 #include "EglConfig.h"
107 #define VALIDATE_CONFIG_RETURN(EGLConfig,ret) \
108 EglConfig* cfg = dpy->getConfig(EGLConfig); \
129 #define VALIDATE_CONFIG(EGLConfig) \
130 VALIDATE_CONFIG_RETURN(EGLConfig,EGL_FALSE)
251 EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigs(EGLDisplay display, EGLConfig *configs,
268 EGLConfig *configs, EGLint config_size,
438 EglConfig* pConfig = dpy->getConfig(config_id);
441 configs[0] = static_cast<EGLConfig>(pConfig)
    [all...]

Completed in 71 milliseconds