mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-29 10:09:49 +08:00
19 lines
350 B
C#
19 lines
350 B
C#
using System.ComponentModel;
|
||
|
||
namespace Fischless.GameCapture;
|
||
|
||
public enum CaptureModes
|
||
{
|
||
// [Description("BitBlt(稳定)")]
|
||
// BitBlt,
|
||
|
||
[Description("BitBlt")]
|
||
BitBlt,
|
||
|
||
[Description("WindowsGraphicsCapture")]
|
||
WindowsGraphicsCapture,
|
||
|
||
[Description("DwmGetDxSharedSurface")]
|
||
DwmGetDxSharedSurface
|
||
}
|