summaryrefslogtreecommitdiff
path: root/stream-servers/render_api.cpp
diff options
context:
space:
mode:
authorLingfeng Yang <lfy@google.com>2020-10-29 08:52:13 -0700
committerLingfeng Yang <lfy@google.com>2020-10-29 08:52:13 -0700
commitee4aea3ef44ae88b2e048f3b0d63f070e5b28926 (patch)
tree93655a59aeeade1438033b1b71300419be7616a2 /stream-servers/render_api.cpp
parent187b9d36a6d18c4dfb46a7a079354d1e0a20213c (diff)
downloadvulkan-cereal-ee4aea3ef44ae88b2e048f3b0d63f070e5b28926.tar.gz
Start building libOpenglRender and add more host support files
Bug: 171711491 Change-Id: Ie1a6ca9cc5310e5ee2a72ae558450bcb4f2b9263
Diffstat (limited to 'stream-servers/render_api.cpp')
-rw-r--r--stream-servers/render_api.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/stream-servers/render_api.cpp b/stream-servers/render_api.cpp
new file mode 100644
index 00000000..b437a0e1
--- /dev/null
+++ b/stream-servers/render_api.cpp
@@ -0,0 +1,51 @@
+/*
+* Copyright (C) 2011-2015 The Android Open Source Project
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+#include "OpenglRender/render_api.h"
+
+#include "emugl/common/OpenGLDispatchLoader.h"
+#include "ErrorLog.h"
+#include "OpenGLESDispatch/DispatchTables.h"
+#include "RenderLibImpl.h"
+
+#include <memory>
+
+RENDER_APICALL emugl::RenderLibPtr RENDER_APIENTRY initLibrary() {
+ //
+ // Load EGL Plugin
+ //
+ if (!emugl::LazyLoadedEGLDispatch::get()) {
+ // Failed to load EGL
+ printf("Failed to init_egl_dispatch\n");
+ return nullptr;
+ }
+
+ //
+ // Load GLES Plugin
+ //
+ if (!emugl::LazyLoadedGLESv1Dispatch::get()) {
+ // Failed to load GLES
+ ERR("Failed to gles1_dispatch_init\n");
+ return nullptr;
+ }
+
+ /* failure to init the GLES2 dispatch table is not fatal */
+ if (!emugl::LazyLoadedGLESv2Dispatch::get()) {
+ ERR("Failed to gles2_dispatch_init\n");
+ return nullptr;
+ }
+
+ return emugl::RenderLibPtr(new emugl::RenderLibImpl());
+}