Reputation: 7748
Imagine a situation where:
glClear()
, if I assume the backbuffer is in the same state as I left it two swapBuffers()
ago. Can I rely on this assumption?
Upvotes: 4
Views: 641
Reputation: 162164
The backbuffer contents are undefined after a buffer swap.
Can I rely on this assumption?
No
Upvotes: 4