Bug 1592044 - Add MozFramebuffer::HasDepth() and HasStencil(). r=jgilbert

Differential Revision: https://phabricator.services.mozilla.com/D55040

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Markus Stange 2019-12-18 20:33:53 +00:00
Родитель 8058ebbc5b
Коммит 978cf2b7f0
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -49,6 +49,8 @@ class MozFramebuffer final {
if (mColorTarget == LOCAL_GL_RENDERBUFFER) return 0;
return mColorName;
}
bool HasDepth() const { return mDepthRB; }
bool HasStencil() const { return mStencilRB; }
};
} // namespace gl