1 // Copyright (C) 2024 The Android Open Source Project
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 
17 #include <cstdint>
18 #include <string>
19 
20 #include "virtgpu_kumquat_ffi.h"
21 
22 namespace gfxstream {
23 namespace tests {
24 
25 class KumquatInstance {
26    public:
27     KumquatInstance();
28     ~KumquatInstance();
29 
30     void SetUp(bool withGl, bool withVk, std::string features);
31     void Snapshot();
32     void Restore();
33 
34    private:
35     pid_t mKumquatPid = 0;
36     struct virtgpu_kumquat* mVirtGpu = nullptr;
37 };
38 
39 }  // namespace tests
40 }  // namespace gfxstream
41