Author |
Message |
deathscith
|
Posted: Thu May 08, 2008 3:42 pm Post subject: how to fullscreen an output from C++? |
|
|
ok as usual, i learned turing in compsci at school my teacher doesnt know much of C++ or C so i turn to here for help. i am making a program in C++ i got a series of programs i am writing in, visual C++ 2005 express edition, since its the only one that i installed on this vista based laptop... bleck. i also have dev C++ on another computer, and visual studios enterprise 6. and well in turing we would use a line at the begining being setscreen ("graphics:max;max") View.Set instead of setscreen works too, but for this program i am working on, i want it to be true full screen, not just maximized. anyone care to help? |
|
|
|
|
![](images/spacer.gif) |
Sponsor Sponsor
![Sponsor Sponsor](templates/subSilver/images/ranks/stars_rank5.gif)
|
|
![](images/spacer.gif) |
Tony
![](http://wiki.compsci.ca/images/f/f4/OniTony.gif)
|
Posted: Thu May 08, 2008 3:57 pm Post subject: RE:how to fullscreen an output from C++? |
|
|
so what's the graphics engine that you are using? OpenGL? DirectX? something else? (which is likely an abstraction layer for either of the former). That detail is probably important. |
Tony's programming blog. DWITE - a programming contest. |
|
|
|
![](images/spacer.gif) |
deathscith
|
Posted: Thu May 08, 2008 5:15 pm Post subject: Re: how to fullscreen an output from C++? |
|
|
riiight graphics engine let me just pull that out... *runs to google* well i got a source to openGL |
|
|
|
|
![](images/spacer.gif) |
deathscith
|
Posted: Thu May 08, 2008 5:29 pm Post subject: Re: how to fullscreen an output from C++? |
|
|
well all this program needs to do, is cover the screen and draw a face, laughing, probably going to make the face out of ovals turing style, if possible |
|
|
|
|
![](images/spacer.gif) |
Tony
![](http://wiki.compsci.ca/images/f/f4/OniTony.gif)
|
Posted: Thu May 08, 2008 5:58 pm Post subject: RE:how to fullscreen an output from C++? |
|
|
well the documentation for setting the screen properties will be right next to the documentation for drawing ovals.
That obviously depends on which library you're using, so that's a good place to start. |
Tony's programming blog. DWITE - a programming contest. |
|
|
|
![](images/spacer.gif) |
deathscith
|
Posted: Thu May 08, 2008 6:46 pm Post subject: RE:how to fullscreen an output from C++? |
|
|
care to explain? |
|
|
|
|
![](images/spacer.gif) |
md
![](http://compsci.ca/v3/uploads/user_avatars/1849317514ed6c4399768d.png)
|
Posted: Thu May 08, 2008 7:23 pm Post subject: RE:how to fullscreen an output from C++? |
|
|
C++ doesn't do graphics. Libraries do graphics. Without knowing which of many libraries you are using to do your graphics there is no way for us to help you.
Furthermore most graphics libraries are very well documented - so you assuming you choose one that's fairly mainstream then your question is most easily answered by looking at the documentation. |
|
|
|
|
![](images/spacer.gif) |
|