mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-07 15:41:58 -07:00
And now fix the placeholder
This commit is contained in:
@@ -200,7 +200,7 @@ void CHyprOpenGLImpl::clear(const CColor& color) {
|
|||||||
void CHyprOpenGLImpl::scissor(const wlr_box* pBox) {
|
void CHyprOpenGLImpl::scissor(const wlr_box* pBox) {
|
||||||
RASSERT(m_RenderData.pMonitor, "Tried to scissor without begin()!");
|
RASSERT(m_RenderData.pMonitor, "Tried to scissor without begin()!");
|
||||||
|
|
||||||
if (!pBox || true) {
|
if (!pBox) {
|
||||||
glDisable(GL_SCISSOR_TEST);
|
glDisable(GL_SCISSOR_TEST);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -212,7 +212,7 @@ void CHyprOpenGLImpl::scissor(const wlr_box* pBox) {
|
|||||||
void CHyprOpenGLImpl::scissor(const pixman_box32* pBox) {
|
void CHyprOpenGLImpl::scissor(const pixman_box32* pBox) {
|
||||||
RASSERT(m_RenderData.pMonitor, "Tried to scissor without begin()!");
|
RASSERT(m_RenderData.pMonitor, "Tried to scissor without begin()!");
|
||||||
|
|
||||||
if (!pBox || true) {
|
if (!pBox) {
|
||||||
glDisable(GL_SCISSOR_TEST);
|
glDisable(GL_SCISSOR_TEST);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user