3d - opengl: Trouble setting up viewport and glortho -


i trying setup opengl views texture rendering. following advice on forum, set viewport , ortho matrix follows:

first try compute screen width , height can use while maintaining aspect ratio of image:

void resize(int w, int h) {     float target_aspect_ratio = image_width / image_height;     width = w;     height = (int)(width / target_aspect_ratio + 0.5f);     if (height > h) {         height = h;         width = (int)(height * target_aspect_ratio + 0.5f);     }             off_x = (w - width)/2.f;     off_y = (h - height)/2;     // want center image. have these offsets      glviewport(off_x, off_y, width, height);     glmatrixmode(gl_projection);     glloadidentity();     glortho(0, width, 0, height, 0.0f, 1.0f); 

now when want render texture do:

void paint() {     // texture binding etc.     gltexcoord2f(0, 0); glvertex2f(0, 0);      gltexcoord2f(1, 0); glvertex2f(width, 0);     gltexcoord2f(1, 1); glvertex2f(width, height);     gltexcoord2f(0, 1); glvertex2f(0, height); } 

however, not show image expected. not maintain aspect ratio size screen. glviewport has no effect , can verify function gets called every time window resized.

update:

it strange. if these calls have no effect. did as:

_off_x = _off_y = 0; _width = 500; _height = 500; 

so expected viewport lower left box of screen image being drawn before using whole screen viewport.

update 2:

ok, if call

glviewport(_off_x, _off_y, _width, _height); glmatrixmode(gl_projection); glloadidentity(); glortho(0, _width, 0, _height, 0, 1); 

in paint events, works expected! however, thought enough put in resize event handler.

before start drawing, need switch matrix mode gl_modelview. don't need set projection matrix inside render function @ each frame.

glmatrixmode(gl_modelview); glloadidentity(); 

here detailed analysis wrote glmatrixmode() function modes : opengl glmatrixmode(gl_projection) vs glmatrixmode(gl_modelview)


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -