Searched defs:fbo (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium_org/third_party/angle/tests/angle_tests/
H A DSRGBTextureTest.cpp112 GLuint fbo = 0; local
113 glGenFramebuffers(1, &fbo);
114 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
131 glDeleteFramebuffers(1, &fbo);
H A DFramebufferFormatsTest.cpp16 void checkBitCount(GLuint fbo, GLenum channel, GLint minBits) argument
18 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
33 void testBitCounts(GLuint fbo, GLint minRedBits, GLint minGreenBits, GLint minBlueBits, argument
36 checkBitCount(fbo, GL_RED_BITS, minRedBits);
37 checkBitCount(fbo, GL_GREEN_BITS, minGreenBits);
38 checkBitCount(fbo, GL_BLUE_BITS, minBlueBits);
39 checkBitCount(fbo, GL_ALPHA_BITS, minAlphaBits);
40 checkBitCount(fbo, GL_DEPTH_BITS, minDepthBits);
41 checkBitCount(fbo, GL_STENCIL_BITS, minStencilBits);
52 GLuint fbo local
[all...]
H A DMaxTextureSizeTest.cpp216 GLuint fbo = 0; local
234 glGenFramebuffers(1, &fbo);
235 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
255 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
260 glBindFramebuffer(GL_READ_FRAMEBUFFER_ANGLE, fbo);
276 glDeleteFramebuffers(1, &fbo);
H A DReadPixelsTest.cpp299 GLuint fbo; local
300 glGenFramebuffers(1, &fbo);
301 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
324 glDeleteFramebuffers(1, &fbo);
/external/chromium_org/android_webview/browser/
H A Daw_gl_surface.cc40 void AwGLSurface::SetBackingFrameBufferObject(unsigned int fbo) { argument
41 fbo_ = fbo;
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_unittest.cc40 GLuint fbo = 0; local
41 glGenFramebuffers(1, &fbo);
52 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
61 glDeleteFramebuffers(1, &fbo);
H A Dgl_chromium_framebuffer_multisample_unittest.cc35 GLuint fbo = 0; local
36 glGenFramebuffers(1, &fbo);
37 glBindFramebuffer(GL_DRAW_FRAMEBUFFER, fbo);
H A Dgl_texture_mailbox_unittest.cc25 GLuint fbo; local
26 glGenFramebuffers(1, &fbo);
27 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
49 glDeleteFramebuffers(1, &fbo);
H A Dgl_depth_texture_unittest.cc99 // create an fbo
100 GLuint fbo = 0; local
101 glGenFramebuffers(1, &fbo);
102 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
151 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
169 // Render to the fbo.
/external/chromium_org/ui/gl/
H A Dscoped_binders.cc12 ScopedFrameBufferBinder::ScopedFrameBufferBinder(unsigned int fbo) argument
19 glBindFramebufferEXT(GL_FRAMEBUFFER, fbo);
/external/srec/srec/cfront/
H A Dchelmel4.c55 //static void mel_cuberoot_offset(cepdata *fbo, cepdata *ch_off, int nf);
57 static void mel_spectrum_correction(cepdata *fbo, cepdata *ch_gain, int nf);
61 //static void mel_exp(cepdata *fbo, int nf);
113 static void mel_spectrum_correction(cepdata *fbo, cepdata *ch_gain, int nf) argument
120 fbo[i] = fbo[i] * ch_gain[i]; /* TODO: Fixedpt scale up and down */
152 //static void mel_exp(cepdata *fbo, int nf)
159 // fbo[i] = (cepdata) exp((double) fbo[i]);
H A Dspec_anl.c52 void filtbank(front_freq *freqobj, fftdata *density, cepdata *fbo);
270 void filtbank(front_freq *freqobj, fftdata *density, cepdata *fbo) argument
317 fbo[i] = (cepdata) t;
/external/chromium_org/mojo/examples/surfaces_app/
H A Dchild_gl_impl.cc121 GLuint fbo = 0u; local
122 glGenFramebuffers(1, &fbo);
123 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
/external/deqp/modules/gles3/functional/
H A Des3fFboStencilbufferTests.cpp75 deUint32 fbo = 0; local
90 glGenFramebuffers(1, &fbo);
91 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
169 deUint32 fbo = 0; local
184 glGenFramebuffers(1, &fbo);
185 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
H A Des3fFboDepthbufferTests.cpp69 deUint32 fbo = 0; local
84 glGenFramebuffers(1, &fbo);
94 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
161 deUint32 fbo = 0; local
174 glGenFramebuffers(1, &fbo);
186 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
247 deUint32 fbo = 0; local
260 glGenFramebuffers(1, &fbo);
272 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
H A Des3fFboMultisampleTests.cpp100 deUint32& fbo = ndx ? resolveFbo : msaaFbo; local
116 glGenFramebuffers(1, &fbo);
117 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
134 // Fill MSAA fbo with gradient, depth = [-1..1]
H A Des3fFboApiTests.cpp135 deUint32 fbo = 1; local
148 context.bindFramebuffer(GL_FRAMEBUFFER, fbo);
H A Des3fRasterizerDiscardTests.cpp436 tcu::TestCaseGroup* fbo = new tcu::TestCaseGroup(m_testCtx, "fbo", "Rasterizer discard test for framebuffer object"); local
440 addChild(fbo);
488 fbo->addChild(new RasterizerDiscardCase(m_context, "write_depth_points", "points", 4, CASE_WRITE_DEPTH, CASEOPTION_FBO, GL_POINTS));
489 fbo->addChild(new RasterizerDiscardCase(m_context, "write_depth_lines", "lines", 4, CASE_WRITE_DEPTH, CASEOPTION_FBO, GL_LINES));
490 fbo->addChild(new RasterizerDiscardCase(m_context, "write_depth_line_strip", "line_strip", 4, CASE_WRITE_DEPTH, CASEOPTION_FBO, GL_LINE_STRIP));
491 fbo->addChild(new RasterizerDiscardCase(m_context, "write_depth_line_loop", "line_loop", 4, CASE_WRITE_DEPTH, CASEOPTION_FBO, GL_LINE_LOOP));
492 fbo->addChild(new RasterizerDiscardCase(m_context, "write_depth_triangles", "triangles", 4, CASE_WRITE_DEPTH, CASEOPTION_FBO, GL_TRIANGLES));
493 fbo->addChild(new RasterizerDiscardCase(m_context, "write_depth_triangle_strip", "triangle_strip", 4, CASE_WRITE_DEPTH, CASEOPTION_FBO, GL_TRIANGLE_STRIP));
494 fbo
[all...]
/external/chromium_org/cc/test/
H A Dlayer_tree_pixel_test.cc250 GLuint fbo = 0; local
251 gl->GenFramebuffers(1, &fbo);
252 gl->BindFramebuffer(GL_FRAMEBUFFER, fbo);
267 gl->DeleteFramebuffers(1, &fbo);
/external/deqp/modules/gles31/functional/
H A Des31fFboColorbufferTests.cpp210 const deUint32 fbo = fbos[layerFace]; local
224 glBindFramebuffer(GL_FRAMEBUFFER, fbo);
H A Des31fNegativeVertexArrayApiTests.cpp269 GLuint fbo = 0; local
282 ctx.glGenFramebuffers(1, &fbo);
283 ctx.glBindFramebuffer(GL_FRAMEBUFFER, fbo);
288 ctx.glDeleteFramebuffers(1, &fbo);
297 GLuint fbo = 0; local
310 ctx.glGenFramebuffers(1, &fbo);
311 ctx.glBindFramebuffer(GL_FRAMEBUFFER, fbo);
316 ctx.glDeleteFramebuffers(1, &fbo);
324 GLuint fbo = 0; local
337 ctx.glGenFramebuffers(1, &fbo);
353 GLuint fbo = 0; local
423 GLuint fbo = 0; local
458 GLuint fbo = 0; local
529 GLuint fbo = 0; local
561 GLuint fbo = 0; local
592 GLuint fbo = 0; local
625 GLuint fbo = 0; local
699 GLuint fbo = 0; local
738 GLuint fbo = 0; local
813 GLuint fbo = 0; local
888 GLuint fbo = 0; local
928 GLuint fbo = 0; local
[all...]
H A Des31fNegativeBufferApiTests.cpp187 GLuint fbo = 0x1234; local
188 ctx.glGenFramebuffers(1, &fbo);
189 ctx.glBindFramebuffer(GL_FRAMEBUFFER, fbo);
195 ctx.glDeleteFramebuffers(1, &fbo);
234 deUint32 fbo = 0x1234; local
240 ctx.glGenFramebuffers (1, &fbo);
241 ctx.glBindFramebuffer (GL_FRAMEBUFFER, fbo);
304 ctx.glDeleteFramebuffers (1, &fbo);
408 deUint32 fbo = 0x1234; local
414 ctx.glGenFramebuffers (1, &fbo);
453 deUint32 fbo = 0x1234; local
495 deUint32 fbo = 0x1234; local
641 deUint32 fbo = 0x1234; local
815 deUint32 fbo = 0x1234; local
967 GLuint fbo = 0x1234; local
1002 GLuint fbo = 0x1234; local
1116 deUint32 fbo[2]; local
1208 deUint32 fbo[2]; local
1253 deUint32 fbo = 0x1234; local
1327 deUint32 fbo = 0x1234; local
1362 deUint32 fbo = 0x1234; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DDrawingBuffer.h129 void setFramebufferBinding(Platform3DObject fbo) { m_framebufferBinding = fbo; } argument
/external/deqp/modules/gles2/functional/
H A Des2fFboApiTest.cpp146 deUint32 fbo = 1; local
152 context.bindFramebuffer(GL_FRAMEBUFFER, fbo);
166 deUint32 fbo = 1; local
172 context.bindFramebuffer(GL_FRAMEBUFFER, fbo);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_texture.c286 GLenum srcType, GLboolean fbo)
295 if (fbo)
326 GLenum type, GLboolean fbo)
360 return do32bpt ? radeonChoose8888TexFormat(rmesa, format, type, fbo) :
387 radeonChoose8888TexFormat(rmesa, format, type, fbo) :
284 radeonChoose8888TexFormat(radeonContextPtr rmesa, GLenum srcFormat, GLenum srcType, GLboolean fbo) argument
323 radeonChooseTextureFormat(struct gl_context * ctx, GLint internalFormat, GLenum format, GLenum type, GLboolean fbo) argument

Completed in 489 milliseconds

12