[]
Gets data from the GPU asynchronously.
public DataStream GetData(Asynchronous data)
Type | Name | Description |
---|---|---|
Asynchronous | data | The asynchronous data provider. |
Type | Description |
---|---|
DataStream | The data retrieved from the GPU. |
Gets data from the GPU asynchronously.
public T GetData<T>(Asynchronous data) where T : struct
Type | Name | Description |
---|---|---|
Asynchronous | data | The asynchronous data provider. |
Type | Description |
---|---|
T | The data retrieved from the GPU. |
Name | Description |
---|---|
T |
Gets data from the GPU asynchronously.
public bool GetData<T>(Asynchronous data, out T result) where T : struct
Type | Name | Description |
---|---|---|
Asynchronous | data | The asynchronous data provider. |
T | result | The data retrieved from the GPU. |
Type | Description |
---|---|
bool | True if result contains valid data, false otherwise. |
Name | Description |
---|---|
T |
Gets data from the GPU asynchronously.
public DataStream GetData(Asynchronous data, AsynchronousFlags flags)
Type | Name | Description |
---|---|---|
Asynchronous | data | The asynchronous data provider. |
AsynchronousFlags | flags | Flags specifying how the command should operate. |
Type | Description |
---|---|
DataStream | The data retrieved from the GPU. |
Gets data from the GPU asynchronously.
public T GetData<T>(Asynchronous data, AsynchronousFlags flags) where T : struct
Type | Name | Description |
---|---|---|
Asynchronous | data | The asynchronous data provider. |
AsynchronousFlags | flags | Flags specifying how the command should operate. |
Type | Description |
---|---|
T | The data retrieved from the GPU. |
Name | Description |
---|---|
T |
Gets data from the GPU asynchronously.
public bool GetData<T>(Asynchronous data, AsynchronousFlags flags, out T result) where T : struct
Type | Name | Description |
---|---|---|
Asynchronous | data | The asynchronous data provider. |
AsynchronousFlags | flags | Flags specifying how the command should operate. |
T | result | The data retrieved from the GPU. |
Type | Description |
---|---|
bool | True if result contains valid data, false otherwise. |
Name | Description |
---|---|
T |