Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
Dframe_capture_utils.cpp242 const gl::FramebufferAttachment &framebufferAttachment, in ReadPixelsFromAttachment() argument
246 gl::Extents extents = framebufferAttachment.getSize(); in ReadPixelsFromAttachment()
247 GLenum binding = framebufferAttachment.getBinding(); in ReadPixelsFromAttachment()
248 gl::InternalFormat format = *framebufferAttachment.getFormat().info; in ReadPixelsFromAttachment()
275 const gl::FramebufferAttachment &framebufferAttachment, in SerializeFramebufferAttachment() argument
278 if (framebufferAttachment.type() == GL_TEXTURE || in SerializeFramebufferAttachment()
279 framebufferAttachment.type() == GL_RENDERBUFFER) in SerializeFramebufferAttachment()
281 json->addScalar("AttachedResourceID", framebufferAttachment.id()); in SerializeFramebufferAttachment()
284 framebufferAttachment.type())); in SerializeFramebufferAttachment()
286 json->addString("Binding", gl::GLenumToString(enumGroup, framebufferAttachment.getBinding())); in SerializeFramebufferAttachment()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
Drenderer11_utils.cpp2593 const gl::FramebufferAttachment *framebufferAttachment) in UsePresentPathFast() argument
2595 if (framebufferAttachment == nullptr) in UsePresentPathFast()
2600 return (framebufferAttachment->type() == GL_FRAMEBUFFER_DEFAULT && in UsePresentPathFast()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DFramebuffer.cpp473 const gl::FramebufferAttachment &framebufferAttachment = in getReadAttachment() local
476 return framebufferAttachment.isAttached() ? &framebufferAttachment : nullptr; in getReadAttachment()