HomeSort by relevance Sort by last modified time
    Searched defs:framebuffer (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/mesa3d/src/mesa/state_tracker/
st_atom_msaa.c 42 struct pipe_framebuffer_state *framebuffer = &st->state.framebuffer; local
45 if (framebuffer->zsbuf)
46 sample_count = framebuffer->zsbuf->texture->nr_samples;
47 else if (framebuffer->cbufs[0])
48 sample_count = framebuffer->cbufs[0]->texture->nr_samples;
st_atom_framebuffer.c 97 * Update framebuffer state (color, depth, stencil, etc. buffers)
102 struct pipe_framebuffer_state *framebuffer = &st->state.framebuffer; local
110 framebuffer->width = fb->Width;
111 framebuffer->height = fb->Height;
118 framebuffer->nr_cbufs = 0;
123 /*printf("--------- framebuffer surface rtt %p\n", strb->rtt);*/
131 pipe_surface_reference(&framebuffer->cbufs[framebuffer->nr_cbufs],
133 framebuffer->nr_cbufs++
    [all...]
  /external/skia/src/gpu/vk/
GrVkFramebuffer.cpp 46 VkFramebuffer framebuffer; local
50 &framebuffer));
55 return new GrVkFramebuffer(framebuffer);
GrVkFramebuffer.h 30 VkFramebuffer framebuffer() const { return fFramebuffer; } function in class:GrVkFramebuffer
33 GrVkFramebuffer(VkFramebuffer framebuffer) : INHERITED(), fFramebuffer(framebuffer) {}
GrVkRenderTarget.h 41 const GrVkFramebuffer* framebuffer() const { return fFramebuffer; } function in class:GrVkRenderTarget
  /hardware/bsp/intel/peripheral/libupm/src/lol/
lol.h 52 * This module defines the LoL API and implementation for a simple framebuffer.
71 * Gets a framebuffer pointer
95 unsigned char framebuffer[LOL_X*LOL_Y]; member in class:upm::LoL
  /frameworks/rs/driver/
rsdFrameBufferObj.cpp 127 bool framebuffer = renderToFramebuffer(); local
136 if (!framebuffer) {
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_program.h 49 struct pipe_framebuffer_state framebuffer; member in struct:program
  /external/skia/bench/
GLBench.cpp 110 //Setup framebuffer
129 // bind framebuffer
130 GrGLuint framebuffer; local
132 GR_GL_CALL(gl, GenFramebuffers(1, &framebuffer));
133 GR_GL_CALL(gl, BindFramebuffer(GR_GL_FRAMEBUFFER, framebuffer));
  /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/msm8909/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/msm8994/libgralloc/
fb_priv.h 40 struct private_handle_t* framebuffer; member in struct:private_module_t
  /hardware/qcom/display/msm8996/libgralloc/
fb_priv.h 40 struct private_handle_t* framebuffer; member in struct:private_module_t
  /hardware/qcom/display/msmcobalt/libgralloc/
fb_priv.h 40 struct private_handle_t* framebuffer; member in struct:private_module_t
  /external/autotest/client/deps/glbench/src/
fillratetest.cc 202 // Setup Framebuffer.
203 // TODO(fjhenigman): In WAFFLE_PLATFORM_NULL the default framebuffer
208 GLuint framebuffer = 0; local
209 glGenFramebuffers(1, &framebuffer);
210 glBindFramebuffer(GL_FRAMEBUFFER, framebuffer);
232 glDeleteFramebuffers(1, &framebuffer);
  /external/deqp/framework/opengl/
gluStateReset.cpp 373 // Framebuffer control.
383 GLU_EXPECT_NO_ERROR(gl.getError(), "Framebuffer control state reset failed");
386 // Framebuffer state.
388 // \note Actually spec explictly says 0 but on some platforms (iOS) no default framebuffer exists.
401 GLU_EXPECT_NO_ERROR(gl.getError(), "Framebuffer state reset failed");
983 deUint32 framebuffer = renderCtx.getDefaultFramebuffer(); local
    [all...]
  /hardware/libhardware/modules/gralloc/
gralloc_priv.h 40 private_handle_t* framebuffer; member in struct:private_module_t
  /external/deqp/modules/gles3/functional/
es3fReadPixelsTests.cpp 224 GLuint framebuffer = 0; local
245 GLU_CHECK_CALL(glGenFramebuffers(1, &framebuffer));
246 GLU_CHECK_CALL(glBindFramebuffer(GL_FRAMEBUFFER, framebuffer));
320 if (framebuffer)
321 GLU_CHECK_CALL(glDeleteFramebuffers(1, &framebuffer));
  /external/deqp/modules/gles31/functional/
es31fFboNoAttachmentTests.cpp 21 * \brief Framebuffer without attachments (GL_ARB_framebuffer_no_attachments) tests.
67 bool checkFramebufferSize (TestLog& log, const glu::RenderContext& renderCtx, GLuint framebuffer, const IVec2& size)
101 gl.bindFramebuffer(GL_DRAW_FRAMEBUFFER, framebuffer);
174 bool checkFramebufferRenderable (TestLog& log, const glu::RenderContext& renderCtx, GLuint framebuffer, const IVec2& size)
203 gl.bindFramebuffer(GL_DRAW_FRAMEBUFFER, framebuffer);
208 log << TestLog::Message << "Rendering full framebuffer quad with color ouput, verifying output presence with occlusion query" << TestLog::EndMessage;
292 GLuint framebuffer = 0; local
294 gl.genFramebuffers(1, &framebuffer);
295 gl.bindFramebuffer(GL_DRAW_FRAMEBUFFER, framebuffer);
297 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")
364 GLuint framebuffer = 0; local
468 GLuint framebuffer = 0; local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_context.h 75 struct pipe_framebuffer_state framebuffer; member in struct:llvmpipe_context
lp_setup_context.h 106 struct u_rect framebuffer; member in struct:lp_setup_context
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.h 80 struct si_pm4_state *framebuffer; member in struct:si_state::__anon19170
  /external/mesa3d/src/gallium/tests/trivial/
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...]

Completed in 988 milliseconds

1 2 3 4 5