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

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds; generated 37 minute(s) ago.

  1. Replies
    1
    Views
    219

    What the specification says is that the type is...

    What the specification says is that the type is signed but the values assign to that type can't be negative... Yes GLsizei is a int which I agree is a strange idea.
  2. Replies
    23
    Views
    2,250

    I haven't read the entire thread so sorry if I am...

    I haven't read the entire thread so sorry if I am off topic but I wonder whether the issue isn't that you expect too much of conditional rendering.

    With conditional rendering, only Draw and Clear...
  3. Replies
    2
    Views
    604

    It's similar but not exactly the same.

    It's similar but not exactly the same.
  4. Replies
    2
    Views
    604

    textureGather sampling artifacts.

    Hi,

    I am trying to use textureGather to build a custom shadow filter but I am running into sampling artifacts that I presume are due to precision issues (both on AMD and NVIDIA).

    The following...
  5. Replies
    0
    Views
    780

    OpenGL drivers database

    There is a great online database here: http://delphigl.de/glcapsviewer/listreports.php but I fell it needs more submissions to keep it update.

    Would you mind guys to contribute to this database?...
  6. That might be unfortunate but the GLSL...

    That might be unfortunate but the GLSL specifications define both. As GLM is trying its best to follow GLSL specification, the library is following this convention as well.

    If you include...
  7. Replies
    1
    Views
    709

    I am afraid that this is not supported...

    I am afraid that this is not supported...
  8. Replies
    13
    Views
    10,077

    There are many constants available in GLM now:...

    There are many constants available in GLM now: http://glm.g-truc.net/api-0.9.4/a00145.html
  9. Replies
    26
    Views
    6,161

    Sounds like your dream care true:...

    Sounds like your dream care true: http://www.opengl.org/registry/specs/INTEL/map_texture.txt
  10. Replies
    95
    Views
    55,392

    Sticky: Could the stride parameter be a variable which...

    Could the stride parameter be a variable which content would be fetched from a register file?
  11. Replies
    95
    Views
    55,392

    Sticky: First the stride parameter needs to be a binding...

    First the stride parameter needs to be a binding parameter. It allows to reusing the same vertex formats but data that is dispatched into various number of buffer. Typically we can expect cases where...
  12. Replies
    95
    Views
    55,392

    Sticky: OpenGL 4.3 review available:...

    OpenGL 4.3 review available: http://www.g-truc.net/doc/OpenGL4.3review.pdf :)
  13. Hi, I forgot whether I suggested it already or...

    Hi,

    I forgot whether I suggested it already or not but a feature that I would love to see in GLIntercept is an overloaded version of glValidateProgram and glValidateProgramPipeline adding tests...
  14. My little finger is telling me that internal AMD...

    My little finger is telling me that internal AMD drivers already have fixes for what you reported :p

    Keep reporting your bugs because chances are that nobody reported this issue before.

    Here is...
  15. Very nice! I should probably consider adding this...

    Very nice! I should probably consider adding this to GLM. I create a ticket for that https://github.com/Groovounet/glm/issues/11.

    Thanks!
  16. Replies
    22
    Views
    6,755

    lol, +1 on the popcorns.

    lol, +1 on the popcorns.
  17. Replies
    18
    Views
    7,746

    Poll: I'll say yes as far as we keep a light theme too.

    I'll say yes as far as we keep a light theme too.
  18. Is there really still people using OpenGL with a...

    Is there really still people using OpenGL with a client and a server not being the same computer?
  19. Replies
    3
    Views
    1,523

    Re: GLM order of transforms

    glm::translate is equivalent to creating a translation matrix and multiplying this matrix by the one passed in parameter except that this operation is optimized.
  20. Replies
    3
    Views
    1,523

    Re: GLM order of transforms

    "pvm = projectionMatrix*viewMatrix*modelmatrix;"

    You created a MVP matrix, not a PVM one... if this matter.
  21. Replies
    2
    Views
    1,134

    Re: GLM question: transpose a vector?

    If you are working with a matrix then:

    mat4 m;
    vec4 v;
    ...

    v * m is the transposed version of m * v and this is following the GLSL specification.

    Furthermore, this code is properly...
  22. Replies
    1
    Views
    1,737

    MacOS X 10.8, OpenGL support?

    Hi guys,

    MacOS X 10.8 announced today, any info on the OpenGL version support? 3.3, 4.0?
  23. Replies
    3
    Views
    1,448

    Re: [GLM] Operator overload

    Because it's not possible to do in C++ without explicitly define the operator for each type.

    The problem here is cast. You can do:
    vec3 vhalf = (vec_v+vec_l) / 2.0f;
  24. Re: Suggestions/feedbac for the Unofficial OpenGL SDK.

    Erm so your reason is because immediate mode is easier?
    I disagree strongly but that's hope to you.


    [/QUOTE]

    There are some good points and I agree with you. GLI does actually much more but...
  25. Re: Suggestions/feedbac for the Unofficial OpenGL SDK.

    An immediate-mode replacement is nice but what's the use of it? It's convenient to draw a triangle but it doesn't really scale beyond this triangle. A mesh library is really interesting but it would...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4