[]
Gets data from the GPU asynchronously.
public DataStream GetData(Asynchronous data)
Public Function GetData(data As Asynchronous) As DataStream
| 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
Public Function GetData(Of T As Structure)(data As Asynchronous) As T
| 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
Public Function GetData(Of T As Structure)(data As Asynchronous, ByRef result As T) As Boolean
| 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)
Public Function GetData(data As Asynchronous, flags As AsynchronousFlags) As DataStream
| 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
Public Function GetData(Of T As Structure)(data As Asynchronous, flags As AsynchronousFlags) As T
| 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
Public Function GetData(Of T As Structure)(data As Asynchronous, flags As AsynchronousFlags, ByRef result As T) As Boolean
| 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 |