fix DrawContext

This commit is contained in:
MihailRis 2024-11-19 05:57:02 +03:00
parent 2bc6cbda2e
commit 6a466cf1ec

View File

@ -91,6 +91,7 @@ DrawContext DrawContext::sub(Flushable* flushable) const {
auto ctx = DrawContext(*this);
ctx.parent = this;
ctx.flushable = flushable;
ctx.scissorsCount = 0;
return ctx;
}