blob: f54fe7825a7825983e7049906d81f67617340995 [file]
/*
* Copyright 2026 Rive
*/
#pragma once
namespace rive::gpu
{
enum class ShaderCompilationMode
{
allowAsynchronous,
alwaysSynchronous,
onlyUbershaders,
// The default mode is to allow asynchronous compilation where available.
standard = allowAsynchronous,
};
} // namespace rive::gpu