Skip to content

Commit f974535

Browse files
committed
[d3d8] EndScene on Reset
Should fix #111
1 parent 553e96f commit f974535

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/d3d8/d3d8_device.h

+2
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,8 @@ namespace dxvk {
817817
inline bool ShouldRecord() { return m_recorder != nullptr; }
818818

819819
inline void ResetState() {
820+
// Resetting implicitly ends scenes started by BeginScene
821+
m_bridge->ForceEndScene();
820822
// Purge cached objects
821823
// TODO: Some functions may need to be called here (e.g. SetTexture, etc.)
822824
// in case Reset can be recorded by state blocks and other things.

src/d3d9/d3d9_bridge.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ namespace dxvk {
2424
m_device->m_dxsoOptions.shadowFilter = enabled;
2525
}
2626

27+
void D3D9Bridge::ForceEndScene() {
28+
m_device->m_flags.clr(D3D9DeviceFlag::InScene);
29+
}
30+
2731
HRESULT D3D9Bridge::UpdateTextureFromBuffer(
2832
IDirect3DSurface9* pDestSurface,
2933
IDirect3DSurface9* pSrcSurface,

src/d3d9/d3d9_bridge.h

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ namespace dxvk {
4646

4747
virtual void SetShadowBuffersEnabled(bool enabled);
4848

49+
virtual void ForceEndScene();
50+
4951
virtual HRESULT UpdateTextureFromBuffer(
5052
IDirect3DSurface9* pDestSurface,
5153
IDirect3DSurface9* pSrcSurface,

0 commit comments

Comments
 (0)