Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Search:

Type: Posts; User: eile

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Replies
    10
    Views
    1,922

    No, it doesn't.

    No, it doesn't.
  2. Replies
    2
    Views
    686

    See glXSwapIntervalSGI. If you can guarantee to...

    See glXSwapIntervalSGI. If you can guarantee to call you swapbuffers faster than 16ms, this will give you a steady 60Hz on a 60Hz monitor.
  3. Replies
    6
    Views
    1,337

    @dukey: The bino stereo movie player does this....

    @dukey: The bino stereo movie player does this. The projector has a button to swap left/right for the initial setup, and from thereon you can't miss a frame. Of course you'll have sync-on-retrace on.
  4. Replies
    6
    Views
    1,337

    There are multiple ways in the consumer space....

    There are multiple ways in the consumer space. Splitting your frame left/right or top/bottom is one, HDMI frame packing (really just a 1920x2250 or something framebuffer) another.

    There are also...
  5. Replies
    3
    Views
    1,208

    The gpu association is not needed for on-screen...

    The gpu association is not needed for on-screen windows on AMD cards. The driver automatically selects the GPU which 'has the most pixels' at window creation time. It's only useful for off-screen...
  6. Afaik this is not possible programmatically.

    Afaik this is not possible programmatically.
  7. Replies
    4
    Views
    2,463

    Not sure what you're referring to. Equalizer does...

    Not sure what you're referring to. Equalizer does exist and is under active development. This weekend our server did not survive a reboot (first time in seven years...), we're working on it with the...
  8. Thread: Open Inventor

    by eile
    Replies
    1
    Views
    1,115

    Open Inventor is a scene graph library layered on...

    Open Inventor is a scene graph library layered on top of OpenGL. It provides higher-level semantics for 3D rendering using OpenGL to render.
  9. Replies
    6
    Views
    1,351

    No, I meant exactly as you described in your...

    No, I meant exactly as you described in your previous post. In my understanding this is how it's supposed to work, maybe somebody with more insight on the NVidia driver can comment.
  10. Replies
    6
    Views
    1,351

    Insert a fence, call glFlush and then poll on the...

    Insert a fence, call glFlush and then poll on the completion of the fence.
  11. Replies
    7
    Views
    1,710

    There is quite some misinformation in this...

    There is quite some misinformation in this thread. It highly depends on your OS, and in the case of Windows, on your driver vendor. I've written all that stuff up years ago:...
  12. Replies
    1
    Views
    673

    Re: Open GL thread safe?

    No, and GLUT is not the OpenGL library. It is the OpenGL Utility Toolkit.
  13. Replies
    2
    Views
    830

    Re: Multithreaded OpenGL questions.

    Yes, although the GPU will serialize the execution of the task. Each GL context has its own state and the driver will constantly switch between the two context and reload the state accordingly.
  14. Re: Multiple GPU use and wglShareLists under Windows

    You can use WGL_NV_gpu_affinity to draw to a window directly. Under Windows 7 this was broken, but should work in latest drivers. You have to be careful which dc (window vs. affinity) you use for...
  15. Re: OpenGL Context Management in Multithreaded Environ

    Parallel OpenGL FAQ: http://www.equalizergraphics.com/documentation/parallelOpenGLFAQ.html
  16. Re: Stereoscopic 'off-axis' orthographic projection?!

    Not quite. Toe-in frusta have convergence, but are an approximation of the correct frusta. What I mean are two parallel cuboids which never converge (your first picture without shearing).



    Yes,...
  17. Re: Stereoscopic 'off-axis' orthographic projection?!

    To add to the previous post:

    If you only modify the left/right your ortho frusta do not converge. If you need them to converge, you can add shearing to your MODELVIEW matrix. I recently...
  18. Thread: OGL Stereo Draw

    by eile
    Replies
    9
    Views
    2,787

    Re: OGL Stereo Draw

    No, it does not. When doing quad-buffer stereo, GL_BACK is just an alias for GL_BACK_LEFT. [/QUOTE]

    Are you sure of this? man glDrawBuffer states:

    GL_BACK: Only the back left and back right...
  19. Replies
    11
    Views
    5,359

    Re: Xlib and openGl in multithreading

    Have you thought about doing the CPU-intensive event processing in a second thread, i.e, doing all X/glX stuff in the main thread and dispatch the work to a second thread?
  20. Replies
    11
    Views
    5,359

    Re: Xlib and openGl in multithreading

    man XSelectInput
  21. Replies
    11
    Views
    5,359

    Re: Xlib and openGl in multithreading

    It should work if you either call XInitThreads() or use a separate Display* connection for each thread.

    Alternatively you can use one thread and poll for events using:

    while( XPending( display...
  22. Replies
    3
    Views
    2,348

    Re: Offscreen rendering / X11 / FBOs

    It can definitely be a PBuffer. Afair, pixmaps are not hardware-accelerated.

    Using a window just seems the most robust path, since this is supported everywhere. I had some troubles with PBuffers...
  23. Replies
    3
    Views
    2,348

    Re: Offscreen rendering / X11 / FBOs

    To make your GL context current, you need a X11 display connection and a drawable. Afaik there is no way around that with GLX. I do use a small unmapped window for FBO rendering.

    There might be...
  24. Thread: 2x GPUs on Linux

    by eile
    Replies
    4
    Views
    932

    Re: 2x GPUs on Linux

    Using the right display string



    XOrg works find. Don't enable Xinerama.

    More info: http://www.equalizergraphics.com/documentation/parallelOpenGLFAQ.html#multigpu
  25. Replies
    2
    Views
    867

    Re: Reading packed depth/stencil to main memory

    Don't call glReadBuffer. The bound FBO is your read buffer.
Results 1 to 25 of 59
Page 1 of 3 1 2 3