Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
199 views

Minimal Windowless OpenGL Context Initialization

How can I initialize a windowless ogl context with the minimal amount of code? I've read here that you can use wglCreateContextAttribsARB to create windowless context, however it doesn't explain how? ...
2
votes
1answer
229 views

changing GLUT calls to work with MFC/C++

I have a program that uses GLUT for its OpenGL rendering. Now I need it to be inside of a MFC project so that it can work with another program component. I've followed this tutorial: ...
1
vote
1answer
272 views

Setting up OpenGL/Cuda interop in Windows

I am writing a DLL that needs to do some work in Cuda 3.2 and some work in OpenGL. OpenGL will render some grayscale images that my Cuda code needs to read in and modify, and then give back to OpenGL ...
1
vote
2answers
2k views

How to properly setup OpenGL scene for visualizing single objects

I need to write a simple visualizer for my mesh toolkit. The objects I'm working with is always located inside [-1,1]^3 box (inclusive), so I need to ensure that object will be entirely visible by ...
0
votes
1answer
41 views

Printing a non-english language in WGL

I want to print out words in languages other then english (such as russian and german) while using WGL. I use the same technique that was described in ...
0
votes
1answer
504 views

WGL: No double buffering + multi sampling = FAIL?

I usually create a pixel format using wglChoosePixelFormatARB() with these arguments (among others): WGL_DOUBLE_BUFFER_ARB = GL_TRUE WGL_SAMPLE_BUFFERS_ARB = GL_TRUE WGL_SAMPLES_ARB = 4 i.e. doubke ...