Home
last modified time | relevance | path

Searched refs:framebufferAttachment (Results 1 – 3 of 3) sorted by relevance

/external/angle/src/libANGLE/capture/
Dframe_capture_utils.cpp352 const gl::FramebufferAttachment &framebufferAttachment, in ReadPixelsFromAttachment() argument
356 gl::Extents extents = framebufferAttachment.getSize(); in ReadPixelsFromAttachment()
357 GLenum binding = framebufferAttachment.getBinding(); in ReadPixelsFromAttachment()
358 gl::InternalFormat format = *framebufferAttachment.getFormat().info; in ReadPixelsFromAttachment()
385 const gl::FramebufferAttachment &framebufferAttachment, in SerializeFramebufferAttachment() argument
388 if (framebufferAttachment.type() == GL_TEXTURE || in SerializeFramebufferAttachment()
389 framebufferAttachment.type() == GL_RENDERBUFFER) in SerializeFramebufferAttachment()
391 json->addScalar("ID", framebufferAttachment.id()); in SerializeFramebufferAttachment()
393 json->addScalar("Type", framebufferAttachment.type()); in SerializeFramebufferAttachment()
395 json->addString("Binding", gl::GLenumToString(enumGroup, framebufferAttachment.getBinding())); in SerializeFramebufferAttachment()
[all …]
/external/angle/src/libANGLE/renderer/d3d/d3d11/
Drenderer11_utils.cpp2585 const gl::FramebufferAttachment *framebufferAttachment) in UsePresentPathFast() argument
2587 if (framebufferAttachment == nullptr) in UsePresentPathFast()
2592 return (framebufferAttachment->type() == GL_FRAMEBUFFER_DEFAULT && in UsePresentPathFast()
/external/angle/src/libANGLE/
DFramebuffer.cpp470 const gl::FramebufferAttachment &framebufferAttachment = in getReadAttachment() local
473 return framebufferAttachment.isAttached() ? &framebufferAttachment : nullptr; in getReadAttachment()