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

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    2,581

    Re: PBO - glBufferSubData(): offset questions

    Dark Photon, thank you! :)
  2. Replies
    5
    Views
    2,581

    Re: PBO - glBufferSubData(): offset questions

    No, it is not for video display.

    Has nobody an idea or explanation? :(
  3. Replies
    5
    Views
    2,581

    PBO - glBufferSubData(): offset questions

    Hi,

    I am using a PBO to update a texture. Each frame one line is updated. The documentation for glBufferSubData says:


    I am always setting the offset to 0:


    size_t offset = 0;...
  4. Replies
    1
    Views
    1,070

    Re: id Software File Format(s)

    Just read the complete file into a memory buffer (or memory map it directly. Then take a simple tokenizer and rush through the data.

    If you dont want to write this yourself, grab the Quake 3...
  5. Replies
    24
    Views
    38,233

    Re: glGetXXX cost 15 millisecond! Why?

    It sounds like you are using Vertical Synchronisation.



    So how would you create mipmaps then?
  6. Re: OT: Spherical Harmonics Coefficients from light-probe HDR file

    PRT is "Precomputed Radiance Transfer". It uses Spherical Harmonic Lighting. Do you know the paper from Robin Green?
  7. Re: OT: Spherical Harmonics Coefficients from light-probe HDR file

    You treat each pixel in the skybox as a single directional light. For a HDR-cubemap you need an additional scale value.


    /// Calculate the sh coefficients for the given HDR image
    CoefficientType...
  8. Replies
    14
    Views
    2,070

    Re: GLSL and Texture Coordinates Problem

    I talked to the author with the GLIntercept log and he found an error in his code :-(
    However, the AO code is working. Now I can add the environment map (hopefully this works better :rolleyes: )...
  9. Replies
    14
    Views
    2,070

    Re: GLSL and Texture Coordinates Problem

    It works now when I put the values into color instead of texture coordinate.

    Works:

    varying float accessibility;
    varying vec3 bentNormal;

    void main()
    {
    gl_Position = ftransform();
  10. Replies
    14
    Views
    2,070

    Re: GLSL and Texture Coordinates Problem

    This is not possible, I don't have access to the underlying renderer :(

    I tried this but the problem stays the same.
  11. Replies
    14
    Views
    2,070

    GLSL and Texture Coordinates Problem

    Hi,

    I have a application which calculates Ambient Occlusion and the bent normal. I set these values as a vec4 (bent normal x,y,z and w is accessibility) into texture coordinate set 0 with...
  12. Re: Computing the tangent space in the fragment shader

    There is an article about tangent calcution in Vertex Programs in ShaderX5 (or 4?). Maybe you want to try this instead. But it seems it is the same method in a vertex program (haven't read the...
  13. Thread: Map Editor

    by lodder
    Replies
    10
    Views
    643

    Re: Map Editor

    We are using GtkRadiant (OSS) with the great q3map2 or some custom editors. You can find tutorials about loading Quake3 maps/files at http://www.vicampus.com
  14. Replies
    5
    Views
    207

    Re: Geforce 8800 series and OpenGL

    Yeah, put the OpenGL Extension string online =)
  15. Replies
    7
    Views
    197

    Re: Performance on Linux

    That is a good sign, that you haven't installed any graphics card drivers and the application is using software rendering...
    Try this on a console window from inside your XServer and post the...
  16. Replies
    17
    Views
    1,325

    Re: How good are the latest ATI linux drivers?

    Maybe Doom3? :D
    And the latest Quake4 (and Doom3) take advantage of MultiCore CPUs, too!
  17. Replies
    17
    Views
    1,325

    Re: How good are the latest ATI linux drivers?

    I can't believe that :-/
    Is the speed of ATI's Mac OS (X?) drivers the same as with windows? Maybe you could compare with the Quake4 Demo. If you don't have Windows, try to make some runs with the...
  18. Replies
    17
    Views
    1,325

    Re: How good are the latest ATI linux drivers?

    For me they are very stable since years and different graphics cards! But I can't compare to recent NVidia drivers/cards, as the last one I had was a Gf2 MX ;)
    I can't understand why they produce...
  19. Replies
    17
    Views
    1,325

    Re: How good are the latest ATI linux drivers?

    Hi,

    do yourself a favour and get an Nvidia card for Linux. The only exception is when you have a very old card, like 8500/9100/9200. These are well supported by OSS-drivers. For newer cards...
  20. Replies
    2
    Views
    1,224

    Re: C++ 3D model loaders

    http://nehe.gamedev.net

    This site has tutorials about loading models, materials and everything else :)
  21. Replies
    23
    Views
    4,726

    Re: Carmack's MegaTextures

    There was a thread about this recently at gamedev: http://www.gamedev.net/community/forums/topic.asp?topic_id=390751
  22. Replies
    1
    Views
    571

    Re: "Walking" with gluLookAt()

    Nehe has several documents:

    Camera class and tutorial

    Loading and moving through a 3D world
  23. Replies
    4
    Views
    191

    Re: R2VB and AA with FBOs on ATI cards - when?

    Ok, thanks :)
    And what about the multisampling-for-FBO extension?

    Are there any plans to support this feature with an extra extension?
  24. Replies
    4
    Views
    191

    R2VB and AA with FBOs on ATI cards - when?

    Hi,

    I have seen Humus' new "Infinite Terrain" Demo, which utilises Render2VertexBuffer. A moment ago I saw the new ATI SDK, which has a lot of new samples with R2VB. I have searched the extension...
  25. Re: How do I render the Depth Buffer using FBOs?

    This is from the EXT_fbo spec, you might want to read it:
    Again, from the EXT_fbo spec:
Results 1 to 25 of 34
Page 1 of 2 1 2