OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:renderableType
(Results
1 - 11
of
11
) sorted by null
/sdk/emulator/opengl/host/libs/Translator/EGL/
EglDisplay.h
61
void initialize(int
renderableType
);
73
void initConfigurations(int
renderableType
);
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
,
94
void queryConfigs(EGLNativeDisplayType dpy,int
renderableType
,ConfigsList& listOut) {
99
EglConfig* conf = pixelFormatToConfig(i++,
renderableType
,&frmt);
EglDisplay.cpp
61
void EglDisplay::initialize(int
renderableType
) {
64
initConfigurations(
renderableType
);
122
void EglDisplay::initConfigurations(int
renderableType
) {
124
EglOS::queryConfigs(m_dpy,
renderableType
,m_configs);
EglX11Api.cpp
84
EglConfig* pixelFormatToConfig(EGLNativeDisplayType dpy,int
renderableType
,EGLNativePixelFormatType* frmt){
159
pMaxPixels,renderable,
renderableType
,visualId,visualType,samples,stencil,
163
void queryConfigs(EGLNativeDisplayType dpy,int
renderableType
,ConfigsList& listOut) {
167
EglConfig* conf = pixelFormatToConfig(dpy,
renderableType
,&frmtList[i]);
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
,
406
void queryConfigs(EGLNativeInternalDisplayType display,int
renderableType
,ConfigsList& listOut) {
424
EglConfig* pConfig = pixelFormatToConfig(display,
renderableType
,&pfd,iPixelFormat);
EglImp.cpp
202
int
renderableType
= EGL_OPENGL_ES_BIT;
216
renderableType
|= EGL_OPENGL_ES2_BIT;
222
dpy->initialize(
renderableType
);
[
all
...]
/cts/tests/tests/graphics/src/android/opengl/cts/
EglConfigTest.java
71
private static int[] getEglConfigIds(int
renderableType
) {
77
EGL10.EGL_RENDERABLE_TYPE,
renderableType
,
/cts/tests/tests/opengl/src/android/opengl/cts/
WrapperTest.java
240
int
renderableType
;
243
renderableType
= EGL14.EGL_OPENGL_ES_BIT;
246
renderableType
= EGL14.EGL_OPENGL_ES2_BIT;
258
EGL14.EGL_RENDERABLE_TYPE,
renderableType
,
/frameworks/native/services/surfaceflinger/RenderEngine/
RenderEngine.cpp
33
EGLint
renderableType
= 0;
37
if (!eglGetConfigAttrib(display, config, EGL_RENDERABLE_TYPE, &
renderableType
)) {
41
if (
renderableType
& EGL_OPENGL_ES2_BIT) {
43
} else if (
renderableType
& EGL_OPENGL_ES_BIT) {
/frameworks/native/services/surfaceflinger/
SurfaceFlinger.h
323
EGLint
renderableType
, EGLConfig* config);
SurfaceFlinger.cpp
408
EGLint
renderableType
, EGLConfig* config) {
416
if (
renderableType
) {
417
attribs[EGL_RENDERABLE_TYPE] =
renderableType
;
[
all
...]
Completed in 375 milliseconds