mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-31 20:27:13 +02:00
29 lines
932 B
C#
29 lines
932 B
C#
using Ryujinx.HLE.HOS.Services.SurfaceFlinger.Types;
|
|
using Ryujinx.HLE.HOS.Services.Time.Clock;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
|
|
{
|
|
class BufferSlot
|
|
{
|
|
public AndroidStrongPointer<GraphicBuffer> GraphicBuffer;
|
|
public BufferState BufferState;
|
|
public bool RequestBufferCalled;
|
|
public ulong FrameNumber;
|
|
public AndroidFence Fence;
|
|
public bool AcquireCalled;
|
|
public bool NeedsCleanupOnRelease;
|
|
public bool AttachedByConsumer;
|
|
public TimeSpanType QueueTime;
|
|
public TimeSpanType PresentationTime;
|
|
public bool IsPreallocated;
|
|
|
|
public BufferSlot()
|
|
{
|
|
GraphicBuffer = new AndroidStrongPointer<GraphicBuffer>();
|
|
BufferState = BufferState.Free;
|
|
QueueTime = TimeSpanType.Zero;
|
|
PresentationTime = TimeSpanType.Zero;
|
|
IsPreallocated = false;
|
|
}
|
|
}
|
|
}
|