blob: 1a70a9da5b9d95938a725cb24d229620b37ee5b7 [file] [log] [blame]
/*
* Copyright 2024 Google LLC
* SPDX-License-Identifier: MIT
*/
#include "gfxstream/guest/GfxStreamGralloc.h"
#include "util/detect_os.h"
#if DETECT_OS_ANDROID
#include <string>
#include "GrallocGoldfish.h"
#include "GrallocMinigbm.h"
#include "android-base/properties.h"
namespace gfxstream {
Gralloc* createPlatformGralloc(int32_t descriptor) {
const std::string value = android::base::GetProperty("ro.hardware.gralloc", "");
if (value == "minigbm") {
auto gralloc = new MinigbmGralloc(descriptor);
return gralloc;
}
return new GoldfishGralloc();
}
} // namespace gfxstream
#endif