Files
third_party_mesa3d/src/gfxstream/guest/platform/kumquat/VirtGpuKumquatStub.cpp
Gurchetan Singh b834e151d4 gfxstream: re-license files
Re-license files to MIT, by popular demand.  These files are have
an origin in AOSP.

Reviewed-by: Aaron Ruby <aruby@blackberry.com>
Acked-by: Yonggang Luo <luoyonggang@gmail.com>
Acked-by: Adam Jackson <ajax@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27246>
2024-09-19 20:06:04 +00:00

20 lines
404 B
C++

/*
* Copyright 2022 Google
* SPDX-License-Identifier: MIT
*/
#include "Sync.h"
#include "VirtGpu.h"
#include "util/log.h"
VirtGpuDevice* kumquatCreateVirtGpuDevice(enum VirtGpuCapset capset, int32_t descriptor) {
mesa_loge("Using stub implementation of kumquat");
return nullptr;
}
namespace gfxstream {
SyncHelper* kumquatCreateSyncHelper() { return nullptr; }
} // namespace gfxstream