Search Results

1
vote
3answers
318 views

Offscreen rendering to a texture in a win32 service

I'm trying to write a C++ windows service that can render to a texture. I've got the code working as a regular console app, but when run as a service wglGetProcAddress() returns NULL. …
3
votes
8answers
425 views

Polygon math

Given a list of points that form a simple 2d polygon oriented in 3d space and a normal for that polygon, what is a good way to determine which points are specific 'corner' points? For examp …
2
votes

C++ OpenGL application as a web service

I had a similar project/question, that although it wasn't a web service, it required Open …