blob: 28b8ee60015b85aa40c40a028c63d4e749544b28 [file] [log] [blame]
Gurchetan Singh73c141e2021-01-21 14:51:19 -08001/*
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
7struct virtgpu_param {
8 uint64_t param;
9 const char *name;
10 uint32_t value;
11};
12
13enum 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};