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: Matt Zamborsky

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    20
    Views
    13,772

    Re: I demand someone run with this idea !!

    It must look amazing on big screen, indeed I will try it definitelly next year on our stereo back projector in lab. We have also normal motion tracking system but its not wirelles and cost a little...
  2. Re: What's the fewest number of bits possible in a color-renderable texture?

    What about using for example 16bit integer format and storing multiple data in one pixel instead of only three values per RGB(say 16x3). I dont exactly know what you are trying to do so it might not...
  3. Replies
    8
    Views
    812

    Re: Dynamic palette (color lut)

    if you can try to use some kind of SIMD when transforming the texture on CPU(like SSE, MMX,...). Depends on machine what you are running.
  4. Re: How can I reproduce this code in shader?

    you right, it's much better sollution :) , but the restrictions are the same :(
  5. Re: How can I reproduce this code in shader?

    what about send 3 streams of vertices down the vertex pipeline, where only the first stream represents the real vertex position and the second+third represent the other vertices of triangle. Then in...
  6. Replies
    6
    Views
    655

    Re: FBO's and floating point

    only blending is supported. you must do your own filtering in pixel shader.
    But I am not realy sure if the blending is supported in OpenGL, it can be the same as antialiasing of floating point...
  7. Replies
    12
    Views
    478

    Re: GL_ATI_memory_export

    I think it's an extension in develop. See the enumerants values. All in range of 0x6000 and 0x611B. Now look at the beginning of glAti.h there is a warning:

    /*
    ** IMPORTANT:
    **
    ** All...
  8. Replies
    12
    Views
    478

    Re: GL_ATI_memory_export

    yes, R500 should be xbox 360, but I tried to get function address of glExportStreamATI and I got a real one, so it's supported in SW or HW, i don't know because don't know how to use this ext.
  9. Replies
    12
    Views
    478

    GL_ATI_memory_export

    Has anybody ever heard of GL_ATI_memory_export? It should be supported on R5xx HW and as I tried, it really is. On the other hand, it isn't in the extension list of my Radeon x1900 with Catalyst...
  10. Re: Export values from Fragmentshader to Vertexshader/Mainprogram

    when you need values from fragment shader in vertex shader, just set-up a render target(texture which you will render in), render whatever you want, bind this render target as texture and sample it...
  11. Replies
    23
    Views
    2,824

    Re: CG rather than raw GLSL

    CG can be also compiled to GLSL in version 1.5, which is still beta.
  12. Re: Render to texture: difference between ATI and nVidia?

    you are using clip planes right? so there is a difference in using clip planes in GLSL.
  13. Replies
    8
    Views
    479

    Re: Normals and GL_TRIANGLE_STRIP

    Normals won't be interpolated across the polygon, only the resulting color, which will be computed per vertex(Normal dot ligtvector). What you mean is per pixel lighting, for this kind of lighting,...
  14. Replies
    6
    Views
    709

    Re: Normals and GL_TRIANGLE_STRIP

    Normals won't be interpolated across the polygon, only the resulting color, which will be computed per vertex(Normal dot ligtvector). What you mean is per pixel lighting, for this kind of lighting,...
  15. Replies
    4
    Views
    125

    Re: FBO+DEPTH_STENCIL+81.xx = trouble?

    I olny tried depth stencil texture and it worked as expected:

    glGenTextures(1,&m_idDepthStencil);
    glBindTexture(GL_TEXTURE_2D,m_idDepthStencil);
    glTexParameteri(GL_TEXTURE_2D,...
  16. ForceWare 8310 + GLSL and half type

    I am heavily using half in fragment programs due to better performance on GF FX cards. Everything was fine, when I used 7x.xx driver, but now I find out that using half lead the card to use NEAREST...
  17. Re: Dynamic cubemap through PBuffers - garbage output on all but one face above 16x16!

    NVIDIA supports FBO with stencil buffer in >81.xx drivers.
  18. Re: Number of varying variables on NVidia?

    I think the 10 useable interpolators include the color and secondary color. So use them. It's very well know, I think, that color and secondary color are interpolated on float basis instead on fixed...
  19. Replies
    6
    Views
    369

    Re: Problem with HDR textures.

    Does the GF6800 support 32-bit float filtering? I thought only 16-bit is supported.
  20. Re: Feedback on the FBO specification needed!

    I'm thinking about, for what there will be WGL/GLX/... in the future? When we have EXT_packed_depth_stencil, EXT_framebuffer_multi_sample,
    EXT_framebuffer_blit, we dont need OS specific code at...
  21. Replies
    9
    Views
    199

    Re: GL_EXTX_packed_depth_stencil

    I worked hard this day and I am now able to use stencil buffer with FBO :)

    Here is small manual:

    1. Create Rendertarget with format GL_DEPTH_STENCIL_NV, I thing it will be the same as...
  22. Replies
    10
    Views
    1,035

    Re: GL_FRAMEBUFFER_UNSUPPORTED

    I think you have specified Anisotropic filtering in driver panel. Set it to appliaction controled and all will be allright.
  23. Replies
    9
    Views
    199

    Re: GL_EXTX_packed_depth_stencil

    And now I realized that GL_EXT_texture_sRGB is here too.
  24. Replies
    9
    Views
    199

    GL_EXTX_packed_depth_stencil

    I just downloaded new forcware 81.20 and in extension string is this GL_EXTX_packed_depth_stencil. Is it that, what we are waiting for? FBO with stencil buffer?
  25. Re: Feedback on the FBO specification needed!

    1. yes for shadow mapping
    2. Nearly everything
    3. Nothing except #4 and #5
    4. need support for rendering to 1-component color texture
    5. depth/stencil texture attachment
    6. When the #4 and #5...
Results 1 to 25 of 109
Page 1 of 5 1 2 3 4