Could anybody tell me where I can find a simple c++ graphics library for
microsoft visual C++? I just want a simple graphics library that will
let me open a graphics window, close it and draw pixles in that window.
Thank you very much for your time.
-Shawn Ligocki
void CGraphTestView::OnDraw(CDC* pDC)
{
pDC->SetMapMode(MM_TEXT);
pDC->SetPixel(10,10,0x00FF00);
pDC->SetPixel(50,50,0xFF0000);
pDC->SetPixel(100,100,0x0000FF);
}
Draws a green, red, and blue pixel
"Shawn Ligocki" <slig...@home.com> wrote in message
news:39DF72F7...@home.com...