blob: 99b74bf8fed10c20d88d99080ef6a3ba79a62765 [file] [log] [blame]
Jesse Hall90b25ed2016-12-12 12:56:46 -08001/*
2 * Copyright 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//#define LOG_NDEBUG 1
18#define LOG_TAG "GraphicsEnv"
19#include <gui/GraphicsEnv.h>
20
21#include <log/log.h>
22
23namespace android {
24
25/*static*/ GraphicsEnv& GraphicsEnv::getInstance() {
26 static GraphicsEnv env;
27 return env;
28}
29
30void GraphicsEnv::setDriverPath(const std::string path) {
31 if (!mDriverPath.empty()) {
32 ALOGV("ignoring attempt to change driver path from '%s' to '%s'",
33 mDriverPath.c_str(), path.c_str());
34 return;
35 }
36 ALOGV("setting driver path to '%s'", path.c_str());
37 mDriverPath = path;
38}
39
40} // namespace android