Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/capture/
Dserialize.cpp241 const gl::FramebufferAttachment &framebufferAttachment, in ReadPixelsFromAttachment() argument
245 gl::Extents extents = framebufferAttachment.getSize(); in ReadPixelsFromAttachment()
246 GLenum binding = framebufferAttachment.getBinding(); in ReadPixelsFromAttachment()
247 gl::InternalFormat format = *framebufferAttachment.getFormat().info; in ReadPixelsFromAttachment()
274 const gl::FramebufferAttachment &framebufferAttachment, in SerializeFramebufferAttachment() argument
277 if (framebufferAttachment.type() == GL_TEXTURE || in SerializeFramebufferAttachment()
278 framebufferAttachment.type() == GL_RENDERBUFFER) in SerializeFramebufferAttachment()
280 json->addScalar("AttachedResourceID", framebufferAttachment.id()); in SerializeFramebufferAttachment()
283 "Type", gl::GLenumToString(gl::GLESEnum::ObjectIdentifier, framebufferAttachment.type())); in SerializeFramebufferAttachment()
285 json->addString("Binding", gl::GLenumToString(enumGroup, framebufferAttachment.getBinding())); in SerializeFramebufferAttachment()
[all …]
/external/angle/src/libANGLE/renderer/d3d/d3d11/
Drenderer11_utils.cpp2707 const gl::FramebufferAttachment *framebufferAttachment) in UsePresentPathFast() argument
2709 if (framebufferAttachment == nullptr) in UsePresentPathFast()
2714 return (framebufferAttachment->type() == GL_FRAMEBUFFER_DEFAULT && in UsePresentPathFast()
/external/angle/src/libANGLE/
DFramebuffer.cpp477 const gl::FramebufferAttachment &framebufferAttachment = in getReadAttachment() local
480 return framebufferAttachment.isAttached() ? &framebufferAttachment : nullptr; in getReadAttachment()