Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
egl_context.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2017 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
13
14#include <EGL/egl.h>
15#include <GLES2/gl2.h>
16
17#include <sstream>
18
19// create_direct_context implementation for EGL.
21 std::ostringstream& driverinfo,
22 std::unique_ptr<sk_gpu_test::GLTestContext>* glContext) {
24 if (!glContext) {
25 return nullptr;
26 }
27 (*glContext)->makeCurrent();
28 sk_sp<GrDirectContext> result = (*glContext)->makeContext(GrContextOptions());
29 if (!result) {
30 glContext->reset();
31 return nullptr;
32 }
33
34 driverinfo << "GL Version: " << glGetString(GL_VERSION) << "\n";
35 driverinfo << "GL Vendor: " << glGetString(GL_VENDOR) << "\n";
36 driverinfo << "GL Renderer: " << glGetString(GL_RENDERER) << "\n";
37 driverinfo << "GL Extensions: " << glGetString(GL_EXTENSIONS) << "\n";
38
39 return result;
40}
@ kGLES_GrGLStandard
Definition GrGLTypes.h:22
void reset(T *ptr=nullptr)
Definition SkRefCnt.h:310
sk_sp< GrDirectContext > create_direct_context(std::ostringstream &driverinfo, std::unique_ptr< sk_gpu_test::GLTestContext > *glContext)
GAsyncResult * result
GLTestContext * CreatePlatformGLTestContext(GrGLStandard forcedGpuAPI, GLTestContext *shareContext)