зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1502152 - Skia m71 GL glue fixes. r=rhunt
This commit is contained in:
Родитель
e99e2fefa4
Коммит
79907ee5d8
|
@ -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()
|
||||
|
|
Загрузка…
Ссылка в новой задаче