Gez
Why don't I have a custom title by now?!
Posts: 7046
Registered: 07-07 |
That's a pretty oriented issue of looking at it.
A software renderer means that all the computations made to draw the images you see on the screen are done by the CPU, using algorithms developed by the programmers. A hardware renderer (OpenGL or Direct3D) means that instead the game only transmits primitive informations to the GPU (not the CPU) and most of the rendering work is done by your graphic chipset. To draw a cube, the software renderer will compute what should be displayed on each pixel of the screen; whereas the hardware renderer will just tell the graphic card that there's a cube of such dimension at such place and let it do the rest.
While OpenGL does support all kinds of filtering, you don't have to use any of them. See the option menus.
To put GZDoom in software mode, open the console and type vid_renderer 0 inside. Too put it in OpenGL mode, type vid_renderer 1 instead. You then have to quit and restart for the change to take effect.
|