HomeSort by relevance Sort by last modified time
    Searched full:framebuffer (Results 601 - 625 of 1668) sorted by null

<<21222324252627282930>>

  /device/google/cuttlefish_common/guest/hals/camera/
EmulatedCameraDevice.h 186 /* Gets current framebuffer, converted into preview frame format.
258 * pixel format. Return: Current framebuffer's pixel format. Note that value
504 /* Framebuffer containing the current frame. */
508 * Framebuffer properties.
511 /* Byte size of the framebuffer. */
  /external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
esextcTextureCubeMapArraySubImage3D.cpp 416 GLU_EXPECT_NO_ERROR(gl.getError(), "Could not attach texture object to framebuffer's attachment");
442 /* attach one layer to framebuffer's attachment */
444 GLU_EXPECT_NO_ERROR(gl.getError(), "Could not attach texture object to framebuffer's attachment");
446 /* check framebuffer status */
452 GLU_EXPECT_NO_ERROR(gl.getError(), "Could not read pixels from framebuffer's attachment!");
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiGetMemoryCommitment.cpp 114 Move<VkFramebuffer> framebuffer; local
215 // Create framebuffer
235 framebuffer = createFramebuffer(vkd, device, &framebufferParams);
523 *framebuffer, // VkFramebuffer framebuffer;
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsEarlyFragmentTests.cpp 84 const VkFramebuffer framebuffer,
100 framebuffer, // VkFramebuffer framebuffer;
686 const Unique<VkFramebuffer> framebuffer (makeFramebuffer(vk, device, *renderPass, numUsedAttachmentImages, attachmentImages, renderSize));
722 beginRenderPass(vk, *cmdBuffer, *renderPass, *framebuffer, renderArea, clearColor, 0.5f, 0u);
    [all...]
  /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/
es31fShaderHelperInvocationTests.cpp 215 glu::Framebuffer m_framebuffer;
217 glu::Framebuffer m_resolveFramebuffer;
251 GLU_EXPECT_NO_ERROR(gl.getError(), "Failed to create framebuffer");
366 m_testCtx.getLog() << TestLog::Message << "Using GL_RGBA8 framebuffer with "
528 m_testCtx.getLog() << TestLog::Message << "Using GL_RGBA8 framebuffer with "
  /external/mesa3d/src/gallium/drivers/i915/
i915_state.c 869 i915->framebuffer.width = fb->width;
870 i915->framebuffer.height = fb->height;
871 i915->framebuffer.nr_cbufs = fb->nr_cbufs;
873 pipe_surface_reference(&i915->framebuffer.cbufs[i],
876 pipe_surface_reference(&i915->framebuffer.zsbuf, fb->zsbuf);
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
Texture.cpp 23 #include "Framebuffer.h"
413 void Texture2D::copyImage(GLint level, GLenum format, GLint x, GLint y, GLsizei width, GLsizei height, Framebuffer *source)
446 void Texture2D::copySubImage(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, Framebuffer *source)
897 void TextureCubeMap::copyImage(GLenum target, GLint level, GLenum format, GLint x, GLint y, GLsizei width, GLsizei height, Framebuffer *source)
942 void TextureCubeMap::copySubImage(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height, Framebuffer *source)
  /external/deqp/external/openglcts/modules/gl/
gl4cMultiBindTests.cpp 205 /** Represents framebuffer
208 class Framebuffer
213 Framebuffer(deqp::Context& context);
214 ~Framebuffer();
551 /* Framebuffer constants */
552 const GLuint Framebuffer::m_invalid_id = -1;
558 Framebuffer::Framebuffer(deqp::Context& context) : m_id(m_invalid_id), m_context(context)
566 Framebuffer::~Framebuffer()
    [all...]
gl3cTextureSizePromotion.hpp 76 * channel and set it up as output color in framebuffer;
120 glw::GLuint m_framebuffer; //!< Framebuffer Object name.
255 /** Clean framebuffer object.
gl4cPostDepthCoverageTests.cpp 413 //Firstible use multisampled framebuffer
483 //Draw multisampled texture to framebuffer
489 //Read data from framebuffer
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
core_validation.cpp 490 return "framebuffer";
7128 auto framebuffer = getFramebufferState(dev_data, pInfo->framebuffer); local
10345 auto framebuffer = getFramebufferState(dev_data, pRenderPassBegin->framebuffer); local
10396 auto framebuffer = pRenderPassBegin ? getFramebufferState(dev_data, pRenderPassBegin->framebuffer) : nullptr; local
10519 auto framebuffer = getFramebufferState(dev_data, pCB->activeFramebuffer); local
    [all...]
  /external/vulkan-validation-layers/layers/
core_validation.cpp 5655 auto framebuffer = GetFramebufferState(dev_data, pInfo->framebuffer); local
8891 auto framebuffer = pRenderPassBegin ? GetFramebufferState(dev_data, pRenderPassBegin->framebuffer) : nullptr; local
9016 FRAMEBUFFER_STATE *framebuffer = NULL; local
    [all...]
  /external/swiftshader/include/GL/
glext.h     [all...]
  /device/google/cuttlefish_common/guest/hals/hwcomposer/legacy/
hwcomposer.cpp 94 return "Framebuffer";
190 // marked overlay or framebuffer means that surfaceflinger decided to go for
209 // In the call to prepare() the framebuffer target does not have a valid
  /device/linaro/bootloader/edk2/OptionRomPkg/Library/FrameBufferBltLib/
FrameBufferBltLib.c 80 @param[in] FrameBuffer Pointer to the start of the frame buffer
91 IN VOID *FrameBuffer,
119 mBltLibFrameBuffer = (UINT8*) FrameBuffer;
  /external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryTestsUtil.cpp 616 const VkFramebuffer framebuffer,
626 framebuffer, // VkFramebuffer framebuffer;
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemAttachmentLoadTests.cpp 128 vk::Unique<vk::VkFramebuffer> framebuffer (createFramebuffer(ctx, RENDER_WIDTH, RENDER_HEIGHT, *renderPass, *colorImageView));
174 *framebuffer, // framebuffer
  /external/deqp/modules/gles2/stress/
es2sSpecialFloatTests.cpp 415 m_testCtx.getLog() << tcu::TestLog::Message << "Using default framebuffer." << tcu::TestLog::EndMessage;
    [all...]
  /external/libvncserver/
NEWS 95 complete framebuffer update.
234 framebuffer. If you prefer to do that yourself, use rfbScheduleCopyR*
235 instead; this doesn't modify the frameBuffer.
  /external/mesa3d/src/amd/vulkan/
radv_meta_resolve.c 533 .framebuffer = fb_h,
575 struct radv_framebuffer *fb = cmd_buffer->state.framebuffer;
596 struct radv_image *dst_img = cmd_buffer->state.framebuffer->attachments[dest_att.attachment].attachment->image;
  /external/mesa3d/src/gallium/drivers/freedreno/
freedreno_draw.c 63 struct pipe_framebuffer_state *pfb = &batch->framebuffer;
212 struct pipe_framebuffer_state *pfb = &ctx->batch->framebuffer;
285 struct pipe_framebuffer_state *pfb = &batch->framebuffer;
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_rss.c 253 svga->curr.framebuffer.zsbuf)
266 if (svga->curr.framebuffer.cbufs[0] &&
267 util_format_is_srgb(svga->curr.framebuffer.cbufs[0]->format)) {
  /external/mesa3d/src/gallium/drivers/swr/
swr_context.cpp 326 util_blitter_save_framebuffer(ctx->blitter, &ctx->framebuffer);
359 pipe_surface_reference(&ctx->framebuffer.cbufs[i], NULL);
362 pipe_surface_reference(&ctx->framebuffer.zsbuf, NULL);
  /external/mesa3d/src/mesa/drivers/common/
meta_tex_subimage.c 33 #include "framebuffer.h"
404 /* If we were given a texture, bind it to the read framebuffer. If not,
405 * we're doing a ReadPixels and we should just use whatever framebuffer

Completed in 758 milliseconds

<<21222324252627282930>>