blob: 9f26c14849bae86de3cfd30ea790b43bb9687aec [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#ifndef ANDROID_GUI_GRAPHICS_ENV_H
18#define ANDROID_GUI_GRAPHICS_ENV_H 1
19
20#include <string>
21
22namespace android {
23
24class GraphicsEnv {
25public:
26 static GraphicsEnv& getInstance();
27
28 // Set a search path for loading graphics drivers. The path is a list of
29 // directories separated by ':'. A directory can be contained in a zip file
30 // (drivers must be stored uncompressed and page aligned); such elements
31 // in the search path must have a '!' after the zip filename, e.g.
32 // /data/app/com.example.driver/base.apk!/lib/arm64-v8a
33 void setDriverPath(const std::string path);
34
35private:
36 GraphicsEnv() = default;
37 std::string mDriverPath;
38};
39
40} // namespace android
41
42#endif // ANDROID_GUI_GRAPHICS_ENV_H