HomeSort by relevance Sort by last modified time
    Searched full:framebuffers (Results 1 - 25 of 324) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoderTest.cpp 88 Vector<ImageFrame, 1>& frameBuffers = decoder->frameBufferCache();
90 frameBuffers[1].setDisposalMethod(ImageFrame::DisposeKeep);
91 frameBuffers[2].setDisposalMethod(ImageFrame::DisposeOverwritePrevious);
92 frameBuffers[3].setDisposalMethod(ImageFrame::DisposeOverwritePrevious);
93 frameBuffers[4].setDisposalMethod(ImageFrame::DisposeKeep);
98 EXPECT_EQ(kNotFound, frameBuffers[0].requiredPreviousFrameIndex());
100 EXPECT_EQ(0u, frameBuffers[1].requiredPreviousFrameIndex());
102 EXPECT_EQ(1u, frameBuffers[2].requiredPreviousFrameIndex());
104 EXPECT_EQ(1u, frameBuffers[3].requiredPreviousFrameIndex());
105 EXPECT_EQ(1u, frameBuffers[4].requiredPreviousFrameIndex())
    [all...]
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_GL_SwapBuffers.3 3 SDL_GL_SwapBuffers \- Swap OpenGL framebuffers/Update Display
  /external/qemu/android/camera/
camera-format-converters.h 39 /* Converts a frame into multiple framebuffers.
41 * usualy sends two framebuffers in the reply: one for video, and another for
42 * preview window. Since these two framebuffers have different pixel formats
51 * framebuffers - Array of framebuffers where to convert the frame. Size of this
55 * fbs_num - Number of entries in the 'framebuffers' array.
66 ClientFrameBuffer* framebuffers,
camera-capture-linux.c 70 /* Framebuffers are shared via memory mapping. */
72 /* Framebuffers are available via user pointers. */
74 /* Framebuffers are to be read from the device. */
103 /* Allocated framebuffers. */
104 struct CameraFrameBuffer* framebuffers; member in struct:LinuxCameraDevice
105 /* Actual number of allocated framebuffers. */
194 /* Frees array of framebuffers, depending on the I/O method the array has been
209 /* Unmap framebuffers. */
221 /* Free framebuffers. */
274 if (lcd->framebuffers != NULL)
    [all...]
camera-capture.h 71 * framebuffers - Array of framebuffers where to read the frame. Size of this
75 * fbs_num - Number of entries in the 'framebuffers' array.
86 ClientFrameBuffer* framebuffers,
camera-capture-mac.m 112 * framebuffers - Array of framebuffers where to read the frame. Size of this
116 * fbs_num - Number of entries in the 'framebuffers' array.
123 - (int)read_frame:(ClientFrameBuffer*)framebuffers:(int)fbs_num:(float)r_scale:(float)g_scale:(float)b_scale:(float)exp_comp;
263 - (int)read_frame:(ClientFrameBuffer*)framebuffers:(int)fbs_num:(float)r_scale:(float)g_scale:(float)b_scale:(float)exp_comp
287 framebuffers, fbs_num,
455 ClientFrameBuffer* framebuffers,
475 return [mcd->device read_frame:framebuffers:fbs_num:r_scale:g_scale:b_scale:exp_comp];
  /device/generic/goldfish/opengl/system/egl/
ClientAPIExts.in 143 (GLsizei n, const GLuint* framebuffers),
144 (n, framebuffers))
147 (GLsizei n, GLuint* framebuffers),
148 (n, framebuffers))
  /frameworks/native/opengl/tools/glgen/specs/gles11/
checks.spec 29 glDeleteFramebuffers check framebuffers n
30 glDeleteFramebuffersOES check framebuffers n
41 glGenFramebuffersOES check framebuffers n
42 glGenFramebuffers check framebuffers n
  /sdk/emulator/opengl/host/libs/Translator/EGL/
ClientAPIExts.in 143 (GLsizei n, const GLuint* framebuffers),
144 (n, framebuffers))
147 (GLsizei n, GLuint* framebuffers),
148 (n, framebuffers))
  /frameworks/native/opengl/tools/glgen/specs/jsr239/
glspec-1.1extpack 10 void glDeleteFramebuffersOES ( GLint n, GLuint *framebuffers )
16 void glGenFramebuffersOES ( GLint n, GLuint *framebuffers )
glspec-checks 38 glDeleteFramebuffersOES requires OES_framebuffer_object check framebuffers n
43 glGenFramebuffersOES requires OES_framebuffer_object check framebuffers n
  /external/chromium_org/third_party/khronos/
README.chromium 29 - Added EGLNative*Type for native linux framebuffers.
  /device/generic/goldfish/camera/
Converters.h 260 * width, height - Dimensions for both framebuffers.
268 * width, height - Dimensions for both framebuffers.
276 * width, height - Dimensions for both framebuffers.
284 * width, height - Dimensions for both framebuffers.
292 * width, height - Dimensions for both framebuffers.
300 * width, height - Dimensions for both framebuffers.
308 * width, height - Dimensions for both framebuffers.
  /sdk/emulator/opengl/host/libs/GLESv1_dec/
gl.attrib 488 #void glDeleteFramebuffersOES(GLsizei n, GLuint *framebuffers)
490 dir framebuffers in
491 len framebuffers (n * sizeof(GLuint))
494 #void glGenFramebuffersOES(GLsizei n, GLuint *framebuffers)
496 dir framebuffers out
497 len framebuffers (n * sizeof(GLuint))
654 #void glExtGetFramebuffersQCOM(GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers)
656 dir framebuffers out
657 len framebuffers (maxFramebuffers * sizeof(GLuint))
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
framebuffer.c 27 * Functions for allocating/managing framebuffers and renderbuffers.
79 * This is intended for creating _window_system_ framebuffers, not generic
99 * This is for allocating user-created framebuffers, not window-system
100 * framebuffers!
119 * window system-created framebuffers, not user-created framebuffers.
266 * This should only be used for window-system framebuffers, not
401 * Note: this is only intended for user-created framebuffers, not
410 /* user-created framebuffers only */
490 * This may apply to user-created framebuffers or window system framebuffers
    [all...]
  /external/mesa3d/src/mesa/main/
framebuffer.c 27 * Functions for allocating/managing framebuffers and renderbuffers.
79 * This is intended for creating _window_system_ framebuffers, not generic
99 * This is for allocating user-created framebuffers, not window-system
100 * framebuffers!
119 * window system-created framebuffers, not user-created framebuffers.
266 * This should only be used for window-system framebuffers, not
401 * Note: this is only intended for user-created framebuffers, not
410 /* user-created framebuffers only */
490 * This may apply to user-created framebuffers or window system framebuffers
    [all...]
  /external/chromium_org/cc/test/
test_gles2_interface.h 20 virtual void GenFramebuffers(GLsizei n, GLuint* framebuffers) OVERRIDE;
26 const GLuint* framebuffers) OVERRIDE;
test_gles2_interface.cc 31 void TestGLES2Interface::GenFramebuffers(GLsizei n, GLuint* framebuffers) {
33 framebuffers[i] = test_context_->createFramebuffer();
56 const GLuint* framebuffers) {
58 test_context_->deleteFramebuffer(framebuffers[i]);
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL11ExtensionPack.java 169 int[] framebuffers,
175 java.nio.IntBuffer framebuffers
214 int[] framebuffers,
220 java.nio.IntBuffer framebuffers
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Statistics.java 88 "FrameBuffers (S)",
89 "FrameBuffers (F)",
90 "FrameBuffers (M)" };
  /external/chromium_org/third_party/mesa/src/src/gallium/include/state_tracker/
st_api.h 168 * with regards to invalidating the framebuffers.
263 * The visual of the framebuffers the context will be bound to.
284 * allows framebuffers to be shared between different threads
295 * Atomic stamp which changes when framebuffers need to be updated.
486 * The framebuffers might be NULL, or might have different visuals than the
  /external/mesa3d/src/gallium/include/state_tracker/
st_api.h 168 * with regards to invalidating the framebuffers.
263 * The visual of the framebuffers the context will be bound to.
284 * allows framebuffers to be shared between different threads
295 * Atomic stamp which changes when framebuffers need to be updated.
486 * The framebuffers might be NULL, or might have different visuals than the
  /frameworks/native/opengl/libs/GLES_CM/
glext_api.in 181 void API_ENTRY(glDeleteFramebuffersOES)(GLsizei n, const GLuint* framebuffers) {
182 CALL_GL_API(glDeleteFramebuffersOES, n, framebuffers);
184 void API_ENTRY(glGenFramebuffersOES)(GLsizei n, GLuint* framebuffers) {
185 CALL_GL_API(glGenFramebuffersOES, n, framebuffers);
388 void API_ENTRY(glExtGetFramebuffersQCOM)(GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers) {
389 CALL_GL_API(glExtGetFramebuffersQCOM, framebuffers, maxFramebuffers, numFramebuffers);
  /sdk/emulator/opengl/host/libs/GLESv2_dec/
gl2.attrib 34 #void glDeleteFramebuffers(GLsizei n, GLuint *framebuffers)
36 len framebuffers (n * sizeof(GLuint))
59 #void glGenFramebuffers(GLsizei n, GLuint *framebuffers)
61 len framebuffers (n * sizeof(GLuint))
62 dir framebuffers out
504 #void glExtGetFramebuffersQCOM(GLuint *framebuffers, GLint maxFramebuffers, GLint *numFramebuffers)
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_viewport.c 39 * We'll only return non-null for window system framebuffers.

Completed in 1894 milliseconds

1 2 3 4 5 6 7 8 91011>>