Game Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesGame Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old February 16th, 2012, 11:21 AM
ozonozgur ozonozgur is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2012
Posts: 1 ozonozgur User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 33 m 53 sec
Reputation Power: 0
Exclamation Opengl Rectlangle Problem - Need a help

If window’s size change, GLRecti rectlange’s size will scalings of viewport (Rectlange created with glRecti).

How to make constant size GLRecti reclangle in resizable window handle? (for Developing GUI).

And images :
Before resizing window:
http://imageshack.us/photo/my-images/812/001paf.png/

After resizing window:
http://imageshack.us/photo/my-images/14/002pie.png/

But i want this:
http://imageshack.us/photo/my-images/822/003pu.png/


And code:



//RECT r is window size variable.
// lbottom and lright is firs window size.

glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glLoadIdentity();
glOrtho(0, r.right, r.bottom, 0, -1, 1);
glMatrixMode(GL_MODELVIEW);

Code:
// glFrustum(-zoom * 1, zoom * 1, -zoom * 1, zoom * 1,1,-1);
gluPerspective(1, 1, 1, 1);

glEnable(GL_COLOR_LOGIC_OP);
glLogicOp(GL_XOR);
glColor4f(1.0f, 1.0f, 1.0f, 1.0f);


glRecti( 10,10,lright-200,lbottom-200);
glBegin (GL_LINES);
glVertex2i (30,30);
glVertex2i (70,30);
glEnd();
glDisable(GL_COLOR_LOGIC_OP);
glMatrixMode(GL_PROJECTION);
glPopMatrix();
glMatrixMode(GL_MODELVIEW);
SwapBuffers(DeviceContext);


Thanks.

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesGame Development > Opengl Rectlangle Problem - Need a help

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap