// Copyright (C) 2026 SharpEmu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later namespace SharpEmu.ShaderCompiler; /// /// Guest draw patterns the decoder recognizes from known shader programs. Guest-domain, /// backend-neutral — it previously lived inside the Vulkan presenter, which is exactly /// the kind of placement this project exists to prevent. /// public enum GuestDrawKind { None, FullscreenBarycentric, }