Table of Contents

Class GraphicsResourceLink

Namespace
Stride.Graphics
Assembly
Stride.Graphics.dll

An object linking a Graphics Resource allocated by a GraphicsResourceAllocator and providing allocation information.

public sealed class GraphicsResourceLink
Inheritance
object
GraphicsResourceLink
Extension Methods

Properties

Gets the number of times the Graphics Resource has been accessed since the last recycle policy was run.

public long AccessCountSinceLastRecycle { get; }

Property Value

long

Gets the total number of times the Graphics Resource has been accessed (including Increment and Decrement).

public long AccessTotalCount { get; }

Property Value

long

Gets the last time the Graphics Resource was accessed.

public DateTime LastAccessTime { get; }

Property Value

DateTime

Gets the number of active references to the Graphics Resource.

public int ReferenceCount { get; }

Property Value

int

Gets the allocated Graphics Resource.

public GraphicsResourceBase Resource { get; }

Property Value

GraphicsResourceBase