Bug 1793526 - Remove IsCurrent checks in webgl code. r=gfx-reviewers,lsalzman

Webgl uses mImplicitMakeCurrent these days, so don't worry about it
directly.

Differential Revision: https://phabricator.services.mozilla.com/D188524
This commit is contained in:
Kelsey Gilbert 2023-09-19 22:04:17 +00:00
Родитель 0c71a203fc
Коммит 5dfdf0bcda
2 изменённых файлов: 0 добавлений и 3 удалений

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

@ -1061,7 +1061,6 @@ static bool ValidateReadPixelsFormatAndType(
////
MOZ_ASSERT(gl->IsCurrent());
const auto implPI = webgl->ValidImplementationColorReadPI(srcUsage);
if (pi == implPI) return true;

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

@ -24,8 +24,6 @@ static GLenum DepthFormatForDepthStencilEmu(gl::GLContext* gl) {
}
static GLuint DoCreateRenderbuffer(gl::GLContext* gl) {
MOZ_ASSERT(gl->IsCurrent());
GLuint ret = 0;
gl->fGenRenderbuffers(1, &ret);
return ret;