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: AlexH

Search: Search took 0.00 seconds.

  1. Replies
    0
    Views
    926

    FBO performance problem on NVidia

    Hello all,

    We encountered a serious performance problem with FBOs on NVidia hardware (tested on 8800GT, 8800GTX and 9800GT, WinXP 32 SP3). The issue seems to have suddenly appeared around driver...
  2. Re: Should Microsoft enable OpenGL to run as an ICD under Windows Vista's Aeroglass

    Absolutely nothing. As far as I see it, the story is a complete over-reaction, and contains a lot of technical misunderstandings and misinterpretations.

    First, MS will in fact ship Windows...
  3. Replies
    30
    Views
    4,791

    Re: Lots of small textures or fewer large textures?

    I doubt that patent issues are of major interest for the original poster, this sounds more like a hobbyist or learning project than anything he actually wants to distribute (I might be wrong, of...
  4. Thread: inverse matrix

    by AlexH
    Replies
    2
    Views
    413

    Re: inverse matrix

    This worked well for me, and is reasonably simple :



    Oh yes: and if your matrix is guaranteed to only encode a rotation in the upper 3x3 part, you could of course use a simple transpose....
  5. Replies
    6
    Views
    235

    Re: Performance issues w/ VBO on nvidia

    Cass, thanks a lot, that was exactly the information I was looking for.

    Yes, I was in fact using a single large mapped and partitioned VBO, legacy from a quick'n'dirty VAR to VBO conversion....
  6. Replies
    6
    Views
    235

    Re: Performance issues w/ VBO on nvidia

    Thanks for your reply.


    Well, the idea with mapping was to avoid the redundant copy glBufferDataARB & co will introduce. The data is compressed in main memory, and is sequentially decompressed...
  7. Replies
    6
    Views
    235

    Re: Performance issues w/ VBO on nvidia

    Anyone ?
  8. Replies
    6
    Views
    235

    Performance issues w/ VBO on nvidia

    I have encountered a serious problem with the ARB_vertex_buffer_object extension on nVidia hardware. Specs are as follows: GF4 Ti4600 AGPx4, 53.03 drivers on Win2k, VIA KT600, Athlon XP 2800.

    The...
  9. Replies
    7
    Views
    473

    Re: Detail texturing on the GPU ?

    OK, the emissive colour thing did it. Thanks for pointing that out !

    I have to do some performance tests, though. I wrote a quick vertex program to do the effect, and this one is extremely fast on...
  10. Replies
    7
    Views
    473

    Re: Detail texturing on the GPU ?

    > Ambient won't work anyway because it's independant of distance.

    Well, the specs say that attenuation is done on all 3 components of the light, including ambient.

    > As for normals, just...
  11. Replies
    7
    Views
    473

    Re: Detail texturing on the GPU ?

    Thanks for your suggestions.

    Nutty, I tried this interesting idea, though with the small modification, that I have an 'attenuation mipmap' only on the alpha channel. I use this one to blend...
  12. Replies
    7
    Views
    473

    Detail texturing on the GPU ?

    Hello,

    I'm currently doing some vertex based detail texturing for my terrain engine. Basically, I'm blending the textures on unit 0 and 1 using vertex alpha. The equation is c = CTex0 *...
  13. Replies
    17
    Views
    1,508

    Re: Nvidia, stencil buffers and 16bpp

    > Is there any reason to use 16bit framebuffer anymore?

    Some customers want that option, no matter what.

    - Alex
  14. Replies
    17
    Views
    1,508

    Re: Nvidia, stencil buffers and 16bpp

    Are you sure about that ? We run some tests of our current title on a range of nVidia cards a few weeks ago. GeForce3 seemed to perform fine in 16 bit colour depth, but the other didn't.
    ...
  15. Thread: Terrain engine

    by AlexH
    Replies
    6
    Views
    558

    Re: Terrain engine

    I don't think an octree would be a good idea for a general terrain renderer.

    Octrees are a good choice for geometry with a bounding volume approaching the 1:1:1 ratio measured along the x,y and z...
  16. Re: drastic fps drop on highest detail mip w GF3.

    It doesn't need to be very much. If framerate drops at 119.5 Hz instead of 120, vsync will already sync you on 60 Hz. The small difference can come from the additional transfer overhead due to the...
  17. Thread: Alpha correction

    by AlexH
    Replies
    10
    Views
    1,220

    Re: Alpha correction

    Yes, and this is why I recommended *natural* mergesort. This is a non-recursive variant of mergesort, that performs O(n) on already sorted lists, with a worst case behaviour of O(n log2 n) on...
  18. Thread: Alpha correction

    by AlexH
    Replies
    10
    Views
    1,220

    Re: Alpha correction

    And AFAIK, that would be natural mergesort.

    - Alex
  19. Replies
    9
    Views
    158

    Re: Tex combine problem

    Thanks, I will try that out. The error term looks a bit weird to me, I'm afraid it will have a rather large impact on the expected result. It probably depends on the characteristics of the textures...
  20. Replies
    9
    Views
    158

    Re: Tex combine problem

    Yes, the ARB_texture_env_crossbar is very interesting, I think I could get the exact equation using it. I never heard about it before, since I'm developing on a GeForce, and as you said, nVidia...
  21. Replies
    9
    Views
    158

    Re: Tex combine problem

    Yes, right. That's why I thought that an advanced tex combine extension could circumvent the problem of this old OpenGL limitation. Apparently newer manufacturer specific extension can do that (see...
  22. Replies
    9
    Views
    158

    Tex combine problem

    Hi

    I have a small problem getting the blending mode I want using ARB/EXT_texture_env_combine and multi-texturing.

    I would like to get this TexEnv function: Cv = Cf * (Ct0 + Ct1)

    In other...
Results 1 to 22 of 22