
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>
20 lines
404 B
C++
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
|