Gurchetan Singh | 73c141e | 2021-01-21 14:51:19 -0800 | [diff] [blame] | 1 | /* |
2 | * Copyright 2021 The Chromium OS Authors. All rights reserved. | ||||
3 | * Use of this source code is governed by a BSD-style license that can be | ||||
4 | * found in the LICENSE file. | ||||
5 | */ | ||||
6 | |||||
7 | struct virtgpu_param { | ||||
8 | uint64_t param; | ||||
9 | const char *name; | ||||
10 | uint32_t value; | ||||
11 | }; | ||||
12 | |||||
13 | enum virtgpu_param_id { | ||||
14 | param_3d, | ||||
15 | param_capset_fix, | ||||
16 | param_resource_blob, | ||||
17 | param_host_visible, | ||||
18 | param_cross_device, | ||||
19 | param_context_init, | ||||
20 | param_supported_capset_ids, | ||||
21 | param_max, | ||||
22 | }; |