1 /* 2 * Copyright 2022 Google 3 * SPDX-License-Identifier: MIT 4 */ 5 6 #include "Sync.h" 7 #include "VirtGpu.h" 8 #include "util/log.h" 9 kumquatCreateVirtGpuDevice(enum VirtGpuCapset capset,int32_t descriptor)10VirtGpuDevice* kumquatCreateVirtGpuDevice(enum VirtGpuCapset capset, int32_t descriptor) { 11 mesa_loge("Using stub implementation of kumquat"); 12 return nullptr; 13 } 14 15 namespace gfxstream { 16 kumquatCreateSyncHelper()17SyncHelper* kumquatCreateSyncHelper() { return nullptr; } 18 19 } // namespace gfxstream 20