OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nConfigs
(Results
1 - 6
of
6
) sorted by null
/sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp
28
int
nConfigs
;
37
if (!eglChooseConfig(eglDisplay, attrib, &eglConfig, 1, &
nConfigs
)) {
55
if (
nConfigs
!= 1) {
/sdk/emulator/opengl/host/libs/Translator/EGL/
EglDisplay.h
43
int
nConfigs
(){ return m_configs.size();}
EglMacApi.cpp
83
int
nConfigs
= getNumPixelFormats();
85
for(int i=0; i <
nConfigs
;i++){
/sdk/emulator/opengl/host/libs/libOpenglRender/
FBConfig.cpp
81
EGLint
nConfigs
;
82
if (!s_egl.eglGetConfigs(dpy, NULL, 0, &
nConfigs
)) {
86
EGLConfig *configs = new EGLConfig[
nConfigs
];
87
s_egl.eglGetConfigs(dpy, configs,
nConfigs
, &
nConfigs
);
94
s_fbConfigs = new FBConfig*[
nConfigs
];
95
for (int i=0; i<
nConfigs
; i++) {
160
EGLint
nConfigs
;
161
if (!s_egl.eglGetConfigs(dpy, NULL, 0, &
nConfigs
)) {
168
EGLConfig *matchedConfigs = new EGLConfig[
nConfigs
];
[
all
...]
RenderControl.cpp
107
int
nConfigs
= FBConfig::getNumConfigs();
108
uint32_t neededSize = (
nConfigs
+ 1) * configSize * sizeof(GLuint);
113
return
nConfigs
;
FrameBuffer.cpp
304
int
nConfigs
= FBConfig::getNumConfigs();
307
for (int i=0; i<
nConfigs
; i++) {
Completed in 37 milliseconds