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

Page 1 of 8 1 2 3 4

Search: Search took 0.13 seconds.

  1. Replies
    4
    Views
    349

    Use glDrawBuffers () to tell which buffers to...

    Use glDrawBuffers () to tell which buffers to write to and not.
  2. Replies
    3
    Views
    1,164

    You can render unique color for each triangle (or...

    You can render unique color for each triangle (or vertex, if you want to select points) in each object. You will need to prepare a vertex attribute which will carry triangle ID color in each object,...
  3. I was perhaps a bit too brief. I did mention...

    I was perhaps a bit too brief. I did mention cmake, and the idea is that you can make cmake to produce VS solution with proper project dependencies. You make all executable projects depend on the...
  4. I was not replying to his post, I was replying to...

    I was not replying to his post, I was replying to the whole thread.



    I agree that libraries exist for a reason. However, I consider that an orthogonal to the build system. If you include...
  5. Replies
    2
    Views
    1,006

    See if you can find multisample EGL config, or...

    See if you can find multisample EGL config, or something similar if your platform does not use EGL.
  6. As it is, this tutorial is way too difficult to...

    As it is, this tutorial is way too difficult to get to build.

    In a tutorial like this - and any project really - building should work out of the box with a single step. In Visual studio this would...
  7. Replies
    1
    Views
    604

    I think you are on the right direction. Here are...

    I think you are on the right direction. Here are some tips:

    You can optimize rendering quads by using a geometry shader.

    You only want to render visible quads. If have cubes next to each other,...
  8. Replies
    4
    Views
    1,330

    Check your stride argument to...

    Check your stride argument to glVertexAttribPointer() call. Stride "specifies the byte offset between consecutive generic vertex attributes".
  9. Replies
    2
    Views
    990

    If you use basic cylinders, there will be a crack...

    If you use basic cylinders, there will be a crack if they are joined at an angle. You can fix this slightly by placing spheres at the joints, however, this is not perfect.

    If you want a perfect...
  10. Replies
    1
    Views
    1,094

    Aliased wide lines in OpenGL have strange width...

    Aliased wide lines in OpenGL have strange width definition. Width is counted as either vertically or horizontally, so if your lines are not completely horizontal or vertical, you probably don't get...
  11. Replies
    18
    Views
    7,736

    Poll: Bump. Could you please try to fix this?

    Bump. Could you please try to fix this?
  12. Replies
    11
    Views
    3,826

    If one generates some extra information during...

    If one generates some extra information during rasterization and uses it during smart filtering, wouldn't that make it legal to call this smart filtering anti-aliasing?
  13. Replies
    18
    Views
    7,736

    Poll: Oh I see now. I was looking at the post your link...

    Oh I see now. I was looking at the post your link took me, the one by PiouPiou, while you probably meant the post by Dan Barlett.

    The latter one uses COLOR=#333333 markup inside the code markup,...
  14. Replies
    18
    Views
    7,736

    Poll: I think that post simply does not use code...

    I think that post simply does not use code markup.

    Could we get the code markup fixed for dark theme, please?
  15. Replies
    18
    Views
    7,736

    Poll: Looks quite good. However, quotes and code blocks...

    Looks quite good. However, quotes and code blocks are unreadable, the show white font on light gray background.
  16. Replies
    18
    Views
    7,736

    Poll: For some people like me this is actually an...

    For some people like me this is actually an accessibility issue and not just look and feel.
  17. Replies
    130
    Views
    28,543

    http://www.opengl.org/discussion_boards/profile.ph...

    http://www.opengl.org/discussion_boards/profile.php?do=editoptions


    says:


    We are sorry, this content is not supported via the mobile style.
  18. Replies
    18
    Views
    7,736

    Poll: Yes please. Before upgrade there was dark...

    Yes please.

    Before upgrade there was dark theme, I used it, and I was happy with it.

    Strange how "Results 1 to 2 of 2" only shows 1 vote..
  19. Replies
    130
    Views
    28,543

    Please make a dark skin / theme available. I...

    Please make a dark skin / theme available. I really need it. Thanks!

    Also, if I switch to the advanced mobile theme on desktop (silly me) I am welcomed with an error page, and it takes a while to...
  20. Replies
    2
    Views
    402

    Re: Obtaining angle of incidence

    I've done this with an ID buffer, where I render unique color for each polygon. Once you know the polygon ID, computing and transforming polygon normal with CPU is easy.

    Alternatively you can...
  21. Replies
    11
    Views
    898

    Re: Setting Up Development My Eviroment

    It can get a bit tricky. In windows, OpenGL function pointers are pixel format specific. By choosing a specific pixel format you can choose which accelerator you use. For each window you can only...
  22. Re: Custom Bilinear filtering w textureGather problem

    In my case, I have not enabled AF, I have AMD, and offset is 1/8192 instead. Could this be related?

    http://www.opengl.org/discussion_boards/ubbthreads.php?ubb=showflat&Number=310817#Post310817
  23. Replies
    5
    Views
    552

    Re: Doubt in transformations

    OpenGL legacy fixed function API maintains the last values for both modelview and projection matrix. When you issue a draw call, it can combine these. But there is no separate model and view...
  24. Re: Regarding performance comparison (R2VB vs TF)

    I don't think either flushes or readpixels should be involved. Why do you have those?
  25. Re: VBO Usage for spherical quadtree-tiled terrain

    I would use one VBO, as there is less state changing. You can use glDrawElementsBaseVertex (when available) to select a base vertex for drawing, no need to adjust pointers.

    How often you update...
Results 1 to 25 of 200
Page 1 of 8 1 2 3 4