HomeSort by relevance Sort by last modified time
    Searched refs:framebuffer (Results 26 - 50 of 552) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
tri.c 72 struct pipe_framebuffer_state framebuffer; member in struct:program
164 memset(&p->framebuffer, 0, sizeof(p->framebuffer));
165 p->framebuffer.width = WIDTH;
166 p->framebuffer.height = HEIGHT;
167 p->framebuffer.nr_cbufs = 1;
168 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, p->target, &surf_tmpl);
231 pipe_surface_reference(&p->framebuffer.cbufs[0], NULL);
246 cso_set_framebuffer(p->cso, &p->framebuffer);
272 debug_dump_surface_bmp(p->pipe, "result.bmp", p->framebuffer.cbufs[0])
    [all...]
quad-tex.c 75 struct pipe_framebuffer_state framebuffer; member in struct:program
223 memset(&p->framebuffer, 0, sizeof(p->framebuffer));
224 p->framebuffer.width = WIDTH;
225 p->framebuffer.height = HEIGHT;
226 p->framebuffer.nr_cbufs = 1;
227 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, p->target, &surf_tmpl);
293 pipe_surface_reference(&p->framebuffer.cbufs[0], NULL);
310 cso_set_framebuffer(p->cso, &p->framebuffer);
343 debug_dump_surface_bmp(p->pipe, "result.bmp", p->framebuffer.cbufs[0])
    [all...]
  /external/mesa3d/src/gallium/tests/trivial/
tri.c 72 struct pipe_framebuffer_state framebuffer; member in struct:program
164 memset(&p->framebuffer, 0, sizeof(p->framebuffer));
165 p->framebuffer.width = WIDTH;
166 p->framebuffer.height = HEIGHT;
167 p->framebuffer.nr_cbufs = 1;
168 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, p->target, &surf_tmpl);
231 pipe_surface_reference(&p->framebuffer.cbufs[0], NULL);
246 cso_set_framebuffer(p->cso, &p->framebuffer);
272 debug_dump_surface_bmp(p->pipe, "result.bmp", p->framebuffer.cbufs[0])
    [all...]
quad-tex.c 75 struct pipe_framebuffer_state framebuffer; member in struct:program
223 memset(&p->framebuffer, 0, sizeof(p->framebuffer));
224 p->framebuffer.width = WIDTH;
225 p->framebuffer.height = HEIGHT;
226 p->framebuffer.nr_cbufs = 1;
227 p->framebuffer.cbufs[0] = p->pipe->create_surface(p->pipe, p->target, &surf_tmpl);
293 pipe_surface_reference(&p->framebuffer.cbufs[0], NULL);
310 cso_set_framebuffer(p->cso, &p->framebuffer);
343 debug_dump_surface_bmp(p->pipe, "result.bmp", p->framebuffer.cbufs[0])
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
framebuffer_manager.h 27 // Info about a particular Framebuffer.
28 class GPU_EXPORT Framebuffer : public base::RefCounted<Framebuffer> {
47 virtual void DetachFromFramebuffer(Framebuffer* framebuffer) const = 0;
60 Framebuffer(FramebufferManager* manager, GLuint service_id);
119 // not mean the real OpenGL will consider it framebuffer complete. It just
156 friend class base::RefCounted<Framebuffer>;
158 ~Framebuffer();
184 // Service side framebuffer id
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_flush.c 69 for (i = 0; i < softpipe->framebuffer.nr_cbufs; i++)
92 debug_dump_surface_bmp(softpipe, filename, softpipe->framebuffer.cbufs[0]);
94 debug_dump_surface_bmp(softpipe, filename, softpipe->framebuffer.zsbuf);
sp_context.c 64 for (i = 0; i < sp->framebuffer.nr_cbufs; i++) {
80 for (i = 0; i < sp->framebuffer.nr_cbufs; i++) {
119 pipe_surface_reference(&softpipe->framebuffer.cbufs[i], NULL);
123 pipe_surface_reference(&softpipe->framebuffer.zsbuf, NULL);
151 * if (the texture is being used as a framebuffer surface)
171 for (i = 0; i < softpipe->framebuffer.nr_cbufs; i++) {
172 if (softpipe->framebuffer.cbufs[i] &&
173 softpipe->framebuffer.cbufs[i]->texture == texture) {
177 if (softpipe->framebuffer.zsbuf &&
178 softpipe->framebuffer.zsbuf->texture == texture)
    [all...]
sp_quad_pipe.c 47 sp->framebuffer.zsbuf &&
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_flush.c 69 for (i = 0; i < softpipe->framebuffer.nr_cbufs; i++)
92 debug_dump_surface_bmp(softpipe, filename, softpipe->framebuffer.cbufs[0]);
94 debug_dump_surface_bmp(softpipe, filename, softpipe->framebuffer.zsbuf);
sp_context.c 64 for (i = 0; i < sp->framebuffer.nr_cbufs; i++) {
80 for (i = 0; i < sp->framebuffer.nr_cbufs; i++) {
119 pipe_surface_reference(&softpipe->framebuffer.cbufs[i], NULL);
123 pipe_surface_reference(&softpipe->framebuffer.zsbuf, NULL);
151 * if (the texture is being used as a framebuffer surface)
171 for (i = 0; i < softpipe->framebuffer.nr_cbufs; i++) {
172 if (softpipe->framebuffer.cbufs[i] &&
173 softpipe->framebuffer.cbufs[i]->texture == texture) {
177 if (softpipe->framebuffer.zsbuf &&
178 softpipe->framebuffer.zsbuf->texture == texture)
    [all...]
sp_quad_pipe.c 47 sp->framebuffer.zsbuf &&
  /frameworks/rs/
rsFBOCache.cpp 40 rsc->mHal.funcs.framebuffer.init(rsc, this);
44 rsc->mHal.funcs.framebuffer.destroy(rsc, this);
90 rsc->mHal.funcs.framebuffer.setActive(rsc, this);
  /hardware/qcom/display/msm8084/libgralloc/
fb_priv.h 40 struct private_handle_t* framebuffer; member in struct:private_module_t
  /hardware/qcom/display/msm8226/libgralloc/
fb_priv.h 40 struct private_handle_t* framebuffer; member in struct:private_module_t
  /hardware/qcom/display/msm8960/libgralloc/
fb_priv.h 40 struct private_handle_t* framebuffer; member in struct:private_module_t
  /hardware/qcom/display/msm8974/libgralloc/
fb_priv.h 40 struct private_handle_t* framebuffer; member in struct:private_module_t
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
pp_mlaa.c 84 unsigned int w = p->framebuffer.width;
85 unsigned int h = p->framebuffer.height;
92 if (dimensions[0] != p->framebuffer.width ||
93 dimensions[1] != p->framebuffer.height) {
94 constants[0] = 1.0 / p->framebuffer.width;
95 constants[1] = 1.0 / p->framebuffer.height;
98 dimensions[0] = p->framebuffer.width;
99 dimensions[1] = p->framebuffer.height;
112 p->framebuffer.zsbuf = ppq->stencils;
180 w, h, 0, p->framebuffer.cbufs[0]
    [all...]
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_mlaa.c 84 unsigned int w = p->framebuffer.width;
85 unsigned int h = p->framebuffer.height;
92 if (dimensions[0] != p->framebuffer.width ||
93 dimensions[1] != p->framebuffer.height) {
94 constants[0] = 1.0 / p->framebuffer.width;
95 constants[1] = 1.0 / p->framebuffer.height;
98 dimensions[0] = p->framebuffer.width;
99 dimensions[1] = p->framebuffer.height;
112 p->framebuffer.zsbuf = ppq->stencils;
180 w, h, 0, p->framebuffer.cbufs[0]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_pipe_misc.c 53 struct pipe_framebuffer_state *curr = &svga->curr.framebuffer;
54 struct pipe_framebuffer_state *hw = &svga->state.hw_clear.framebuffer;
76 struct pipe_framebuffer_state *dst = &svga->curr.framebuffer;
117 if (svga->curr.framebuffer.zsbuf)
119 switch (svga->curr.framebuffer.zsbuf->format) {
svga_pipe_clear.c 48 struct pipe_framebuffer_state *fb = &svga->curr.framebuffer;
74 if ((svga->curr.framebuffer.zsbuf->format == PIPE_FORMAT_S8_UINT_Z24_UNORM) &&
116 svga_surface(svga->curr.framebuffer.cbufs[0])->handle);
svga_pipe_flush.c 52 struct pipe_framebuffer_state *fb = &svga->curr.framebuffer;
  /external/deqp/modules/gles31/functional/
es31fFboNoAttachmentTests.cpp 21 * \brief Framebuffer without attachments (GL_ARB_framebuffer_no_attachments) tests.
66 bool checkFramebufferSize (TestLog& log, const glu::RenderContext& renderCtx, GLuint framebuffer, const IVec2& size)
100 gl.bindFramebuffer(GL_DRAW_FRAMEBUFFER, framebuffer);
173 bool checkFramebufferRenderable (TestLog& log, const glu::RenderContext& renderCtx, GLuint framebuffer, const IVec2& size)
202 gl.bindFramebuffer(GL_DRAW_FRAMEBUFFER, framebuffer);
207 log << TestLog::Message << "Rendering full framebuffer quad with color ouput, verifying output presence with occlusion query" << TestLog::EndMessage;
291 GLuint framebuffer = 0; local
293 gl.genFramebuffers(1, &framebuffer);
294 gl.bindFramebuffer(GL_DRAW_FRAMEBUFFER, framebuffer);
296 m_results.check(gl.checkFramebufferStatus(GL_DRAW_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE, "Framebuffer was incorrectly reported as complete when it had no width, height or attachments")
363 GLuint framebuffer = 0; local
467 GLuint framebuffer = 0; local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_misc.c 53 struct pipe_framebuffer_state *curr = &svga->curr.framebuffer;
54 struct pipe_framebuffer_state *hw = &svga->state.hw_clear.framebuffer;
76 struct pipe_framebuffer_state *dst = &svga->curr.framebuffer;
117 if (svga->curr.framebuffer.zsbuf)
119 switch (svga->curr.framebuffer.zsbuf->format) {
svga_pipe_clear.c 48 struct pipe_framebuffer_state *fb = &svga->curr.framebuffer;
74 if ((svga->curr.framebuffer.zsbuf->format == PIPE_FORMAT_S8_UINT_Z24_UNORM) &&
116 svga_surface(svga->curr.framebuffer.cbufs[0])->handle);
svga_pipe_flush.c 52 struct pipe_framebuffer_state *fb = &svga->curr.framebuffer;

Completed in 6178 milliseconds

12 3 4 5 6 7 8 91011>>