Bug 1502152 - Skia m71 GL glue fixes. r=rhunt

This commit is contained in:
Lee Salzman 2018-10-30 22:17:35 -04:00
Родитель e99e2fefa4
Коммит 79907ee5d8
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -148,8 +148,8 @@ static GrGLInterface* CreateGrGLInterfaceFromGLContext(GLContext* context)
i->fStandard = kGL_GrGLStandard;
}
GrGLFunction<GrGLGetStringProc> getString = WrapGL(context, &glGetString_mozilla);
GrGLFunction<GrGLGetIntegervProc> getIntegerv = WrapGL(context, &GLContext::fGetIntegerv);
GrGLFunction<GrGLGetStringFn> getString = WrapGL(context, &glGetString_mozilla);
GrGLFunction<GrGLGetIntegervFn> getIntegerv = WrapGL(context, &GLContext::fGetIntegerv);
GrGLExtensions extensions;
if (!extensions.init(i->fStandard, getString, nullptr, getIntegerv)) {
@ -311,7 +311,7 @@ SkiaGLGlue::SkiaGLGlue(GLContext* context)
: mGLContext(context)
{
mGrGLInterface.reset(CreateGrGLInterfaceFromGLContext(mGLContext));
mGrContext.reset(GrContext::Create(kOpenGL_GrBackend, (GrBackendContext)mGrGLInterface.get()));
mGrContext = GrContext::MakeGL(mGrGLInterface);
}
SkiaGLGlue::~SkiaGLGlue()