OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fboid
(Results
1 - 7
of
7
) sorted by null
/external/skia/src/utils/mac/
SkEGLContext_mac.cpp
49
GLuint
fboID
;
52
glGenFramebuffersEXT(1, &
fboID
);
53
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT,
fboID
);
/external/skia/src/utils/mesa/
SkEGLContext_Mesa.cpp
106
GLuint
fboID
;
109
glGenFramebuffers_func(1, &
fboID
);
110
glBindFramebuffer_func(GL_FRAMEBUFFER,
fboID
);
/external/skia/src/utils/unix/
SkEGLContext_Unix.cpp
245
GLuint
fboID
;
248
glGenFramebuffersEXT(1, &
fboID
);
249
glBindFramebufferEXT(GL_FRAMEBUFFER_EXT,
fboID
);
/system/media/mca/filterfw/java/android/filterfw/core/
GLFrame.java
136
private void initWithFbo(int
fboId
) {
139
if (!nativeAllocateWithFbo(mGLEnvironment,
fboId
, width, height)) {
372
int
fboId
,
/external/webkit/Source/WebCore/platform/graphics/android/
GLUtils.cpp
516
GLuint
fboID
;
517
glGenFramebuffers(1, &
fboID
);
518
glBindFramebuffer(GL_FRAMEBUFFER,
fboID
);
523
glDeleteFramebuffers(1, &
fboID
);
TransferQueue.cpp
144
void TransferQueue::blitTileFromQueue(GLuint
fboID
, BaseTileTexture* destTex,
149
glBindFramebuffer(GL_FRAMEBUFFER,
fboID
);
161
glBindFramebuffer(GL_FRAMEBUFFER,
fboID
);
TransferQueue.h
165
void blitTileFromQueue(GLuint
fboID
, BaseTileTexture* destTex,
Completed in 883 milliseconds