Clipping Text

Started by
0 comments, last by mishka 22 years, 2 months ago
Hi everybody!!! OpenGL is greate!!! I repeat it again and again. I have a problemm, maybe you know to solve it: I want to put some text in my app. I know how to scroll the text from bottom of the screen to the top, but how can I put it in the some part of the screen and still be able scroll it. I use glScissor(x,y,w,h) function and this works nice but I can''t render,pick, rotate in anothe part of the window. How can I clip(border) my text and render in othes parts of the window in the same time. Dos glPushMatrix/glPopMatrix help???
lapko
Advertisement
I suggest that you use scissor only for drawing the text :

glEnable(GL_SCISSOR_TEST);
/* draw your text here */
glDisable(GL_SCISSOR_TEST);

This topic is closed to new replies.

Advertisement