mirror of https://github.com/buggins/dlangui.git
fix clipping for OpenGL buffers
This commit is contained in:
parent
098c061e0d
commit
ab44c4611c
|
@ -42,6 +42,7 @@ class GLDrawBuf : DrawBuf {
|
|||
_dx = dx;
|
||||
_dy = dy;
|
||||
_framebuffer = framebuffer;
|
||||
resetClipping();
|
||||
}
|
||||
|
||||
/// returns current width
|
||||
|
@ -51,6 +52,7 @@ class GLDrawBuf : DrawBuf {
|
|||
|
||||
/// reserved for hardware-accelerated drawing - begins drawing batch
|
||||
override void beforeDrawing() {
|
||||
resetClipping();
|
||||
_alpha = 0;
|
||||
if (_scene !is null) {
|
||||
_scene.reset();
|
||||
|
|
Loading…
Reference in New Issue