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

Page 1 of 15 1 2 3 4

Search: Search took 0.02 seconds.

  1. Re: Lighting glitch - yet another fishtank question.

    You should try it on a 'real' graphics card and see for yourself. I have learned that it is not very wise to trust Intel when it comes to OpenGL.
  2. Replies
    9
    Views
    4,002

    Re: Deferred rendering skybox troubles

    Yes I have. But since I cleared before my depth pass my engine issued a glDrawBuffers(GL_BACK) right before clearing. And clearing later did not help, because I disabled color writing and did not...
  3. Replies
    9
    Views
    4,002

    Re: Deferred rendering skybox troubles

    Color and depth are ok. Color shows an all black texture and depth an all white one (verified with GIMP that it really is only a single color).
    Position and normal are corrupted. So my question is...
  4. Replies
    9
    Views
    4,002

    Re: Deferred rendering skybox troubles

    This is correct. The problem is with the fragments that are not touched in the geometry pass.

    No. Perhaps I did not make myself clear. I do only draw the cylinder once (well actually three times...
  5. Replies
    9
    Views
    4,002

    Re: Deferred rendering skybox troubles

    This I tried before posting here. Doesn't change anything. I assume it is because of the 'corrupt' depth buffer.


    Yes, I know. This is why I am looking for help. The curves are what I called...
  6. Replies
    9
    Views
    4,002

    Deferred rendering skybox troubles

    Hi all,

    as the subject states I have problems with my deferred renderer and skyboxes. The problem is that my geometry bleeds into the areas where the skybox is drawn.
    ...
  7. Re: VBO optimization: bandwidth & culling granular

    It looks like you are missing something, because that is exactly what deferred shading gives you. In the geometry pass you fill your FBO (G-Buffer) with all the necessary information...
  8. Replies
    6
    Views
    914

    Re: Different types of Vertex Arrays

    This is a really strange question. I don't understand it at all. AFAIK there are only VA and CVA (compiled vertex arrays).
    Perhaps it is just (very) badly worded and they want to know about pre...
  9. Thread: Models

    by satan
    Replies
    2
    Views
    1,001

    Re: Models

    http://www.lib3ds.org/
  10. Re: new to open GL - drawing 2d chart with GLUT and C

    I don't think so.


    Yes, for OpenGL beginners.


    For you a good place to start would be the link I gave you. Much to read but it will help you enormously in the long run. You will learn why...
  11. Replies
    4
    Views
    2,018

    Re: query grahpics memory stats

    cat /var/log/Xorg.0.log|grep -i nvidia|grep memory:

    This gives you the total amount of memory as the driver reports it. As you see this is only for NVIDIA cards, I don't know anything about ATI....
  12. Re: new to open GL - drawing 2d chart with GLUT and C

    Option 1:
    Learn to do it without OpenGL and come back if you have any OpenGL related problems. A general C forum sounds like a good place to start.

    Option 2:
    Send me money and I will do it for...
  13. Replies
    7
    Views
    4,283

    Re: GLSL Suitable for fluid physics?

    IMHO yes. You could take a look at CUDA, perhaps it is better suited as it is not a graphics API designed to get input data and to output images.
  14. Replies
    2
    Views
    974

    Re: FBO texture rendering trouble

    Yes, with OpenSG. No, with OpenGL and real FBOs.
    Give card, driver version, OS and code.
  15. Thread: Is it just me?

    by satan
    Replies
    8
    Views
    1,543

    Re: Is it just me?

    For me C/C++ always causes a lot of trouble (no matter if OpenGL is involved or not) and I know C/C++ for years and even earn my money with it. :)
    OpenGL on Windows is a major PITA, too.
    But after...
  16. Re: urgent help : no texture , no graphics then wht?

    Disable everything that has to do with texturing. It is important to debug in small steps. First make sure that you are able to correctly render the model before looking into texturing. To achieve...
  17. Replies
    4
    Views
    1,376

    Re: threading gtk and openGL

    AFAIK OpenGL commands must be issued in the same thread that created the context. So if your gtk signal handler work in their own thread it is supposed to not work.
  18. Replies
    4
    Views
    1,376

    Re: threading gtk and openGL

    Yes. So just drop GLUT. Any reason why you do not use a GTK OpenGL widget?
  19. Replies
    8
    Views
    3,405

    Re: Vector and polygon intersection

    1) Yes.

    2) Yes, but the center of the bounding sphere is not necessarily the same as the center of your object. You can also use multiple spheres to get a better fit or use bounding boxes....
  20. Re: how to use user interface in rotation of a sphere

    Here is some D code for you:

    // Hello World in D

    import std.stdio;

    void main()
    {
    writefln("Hello World!");
    }
  21. Replies
    4
    Views
    2,072

    Re: How to build a terrain in OpenGL?

    http://www.google.com/search?hl=en&q=fra...q=&oq=undefined

    Couldn't resist.
  22. Thread: Loading screen

    by satan
    Replies
    8
    Views
    3,582

    Re: Loading screen

    This is ugly. Why not create context, draw some nice OpenGL stuff and then load all the resources?
  23. Thread: Loading screen

    by satan
    Replies
    8
    Views
    3,582

    Re: Loading screen

    Sorry, this question is too advanced for me. Perhaps you better post in the highly advanced forum.
  24. Replies
    7
    Views
    1,741

    Re: whats wrong with gluLookAt?

    AFAICS you are resetting your modelview matrix in your draw function, overwriting gluLookat's changes to it.
  25. Replies
    17
    Views
    6,329

    Re: How can I zoom Text

    Instead of using perspective you can just scale the text, of course.
Results 1 to 25 of 374
Page 1 of 15 1 2 3 4