http://cubic.org/~submissive/sourcerer/hermite.htm#ma5.1
Type: Posts; User: JWeaver
http://cubic.org/~submissive/sourcerer/hermite.htm#ma5.1
Is the glListBase function valid to use inside of a display list? I can't find anywhere that says it can't be used when nesting display lists but it doesn't seem to work. Any ideas?
James
Try using 1 OpenGL context shared amoung all of the views.
For multiple contexts, I had a similar problem when calling wglMakeCurrent before deleteing the context in OnDestroy. Graphics would...
I needed to invert the transposed modelview matrix.
James
I am trying to implement GL_EYE_LINEAR texgen in a vertex program. For each s, t, q, and r, I am replacing:
glTexGenfv(GL_S, GL_EYE_PLANE, p);
with (cMatrix is modelview matrix inverted):
...
jwatte
Sounds like the only difference from what your suggesting and what I am doing is where the box filter is done. I save a tga at 2x size and use Photoshop to scale it down. Doing the scale...
Rendering to a texture, may be worth investigating for antialiasing a window. It would not suit my needs as I need to render offscreen at a high resolution for print. This adds the need for tiling...
Thanks for the suggestions. I will use those optimizations but nLevel is right it just gives wrong results.
I am using the latest official drivers.
James
The approach I use for rendering high resolution images is rendering the scene as tiles <= size of the viewport. You can render a very large image like this using no extensions. Jittering works...
I have a mipmapped RGB texture and I want to get the color of the smallest mipmap. The following works on NVidia and in software mode but not on an 8500. For example, I should get 157,147,128 but I...
I am making a simple water stream and I would like to disturb an environment map on it as the water vertices move. What would be the best way to do this on a Geforce3?
Should I use a vertex...
I ran into a problem when I switched to this flag that I had to move my create GL context to a little later in the creation cycle so that the DC was created. Your problem may be similar.
I am not familiar with Delphi. Are panels just dialogs? If so, yes you can get it to work. Windows 98 is real picky about that CS_OWNDC. Sounds like they are all sharing the same DC which is what...
Checking the pixel format or vendor string will only test for 100% software opengl. If it is not a generic format, who knows what the vendor implemented in hardware or software. Still it is useful...
For Win32 apps, I usually query the pixel format after SetPixelFormat with DescribePixelFormat. I use the following to catch software mode:
if ((pfd.dwFlags & PFD_GENERIC_FORMAT) > 0)
{
...
Make sure that you are using the CS_OWNDC class style for your window.
James