mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 00:48:44 +01:00
[dxvk] Introduce endFrame method
This commit is contained in:
parent
ab0c15ea54
commit
5610b3a742
@ -100,6 +100,11 @@ namespace dxvk {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void DxvkContext::endFrame() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void DxvkContext::flushCommandList() {
|
void DxvkContext::flushCommandList() {
|
||||||
m_device->submitCommandList(
|
m_device->submitCommandList(
|
||||||
this->endRecording(),
|
this->endRecording(),
|
||||||
|
@ -49,6 +49,14 @@ namespace dxvk {
|
|||||||
*/
|
*/
|
||||||
Rc<DxvkCommandList> endRecording();
|
Rc<DxvkCommandList> endRecording();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Ends frame
|
||||||
|
*
|
||||||
|
* Must be called once per frame before the
|
||||||
|
* final call to \ref endRecording.
|
||||||
|
*/
|
||||||
|
void endFrame();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Flushes command buffer
|
* \brief Flushes command buffer
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user