File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -817,6 +817,8 @@ namespace dxvk {
817
817
inline bool ShouldRecord () { return m_recorder != nullptr ; }
818
818
819
819
inline void ResetState () {
820
+ // Resetting implicitly ends scenes started by BeginScene
821
+ m_bridge->ForceEndScene ();
820
822
// Purge cached objects
821
823
// TODO: Some functions may need to be called here (e.g. SetTexture, etc.)
822
824
// in case Reset can be recorded by state blocks and other things.
Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ namespace dxvk {
24
24
m_device->m_dxsoOptions .shadowFilter = enabled;
25
25
}
26
26
27
+ void D3D9Bridge::ForceEndScene () {
28
+ m_device->m_flags .clr (D3D9DeviceFlag::InScene);
29
+ }
30
+
27
31
HRESULT D3D9Bridge::UpdateTextureFromBuffer (
28
32
IDirect3DSurface9* pDestSurface,
29
33
IDirect3DSurface9* pSrcSurface,
Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ namespace dxvk {
46
46
47
47
virtual void SetShadowBuffersEnabled (bool enabled);
48
48
49
+ virtual void ForceEndScene ();
50
+
49
51
virtual HRESULT UpdateTextureFromBuffer (
50
52
IDirect3DSurface9* pDestSurface,
51
53
IDirect3DSurface9* pSrcSurface,
You can’t perform that action at this time.
0 commit comments