mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-15 07:43:20 +08:00
19 lines
351 B
C#
19 lines
351 B
C#
using System.ComponentModel;
|
|
|
|
namespace Fischless.GameCapture;
|
|
|
|
public enum CaptureModes
|
|
{
|
|
[Description("BitBlt(稳定)")]
|
|
BitBltOld,
|
|
|
|
[Description("BitBlt(极速)")]
|
|
BitBlt,
|
|
|
|
[Description("WindowsGraphicsCapture")]
|
|
WindowsGraphicsCapture,
|
|
|
|
[Description("DwmGetDxSharedSurface")]
|
|
DwmGetDxSharedSurface
|
|
}
|