Selaa lähdekoodia

Improved BeginScissorMode()

Now rectangle coordinates refer to upper-left corner instead of bottom-left
pull/703/head
Ray 6 vuotta sitten
vanhempi
commit
af33e3848e
1 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  1. +2
    -1
      src/rlgl.h

+ 2
- 1
src/rlgl.h Näytä tiedosto

@ -3283,12 +3283,13 @@ void EndBlendMode(void)
}
// Begin scissor mode (define screen area for following drawing)
// NOTE: Scissor rec refers to bottom-left corner, we change it to upper-left
void BeginScissorMode(int x, int y, int width, int height)
{
rlglDraw(); // Force drawing elements
glEnable(GL_SCISSOR_TEST);
glScissor(x, y, width, height);
glScissor(x, GetScreenHeight() - (y + height), width, height);
rlClearScreenBuffers(); // Clear current scissor area
}

Ladataan…
Peruuta
Tallenna