how i can paint a pixel on screen, without use WINAPI. can I use ring0 to draw a pixel
Posted on 2006-07-19 07:40:32 by echipvn
Using the Windows API (whether GDI, DirectX or OpenGL) is the only realistic way to draw graphics while under windows. Doing it from ring0 offers no real benefits (except, perhaps, if you're writing a kernelmode debugger), and it's too much bother anyway, if you want it to be stable and work on a multitude of graphics cards.
Posted on 2006-07-19 08:52:55 by f0dder
Thankyou vary must, f0dder!
Posted on 2006-07-19 19:02:30 by echipvn