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_create_guest_handle, 22 param_resource_sync, 23 param_guest_vram, 24 param_max, 25 }; 26