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: Ido Ilan

Page 1 of 4 1 2 3 4

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    2,189

    Re: /!\ OpenGL.org may harm my computer?

    I see a DX conspiracy :o
  2. Re: Stencil routed A-buffer (explict_multisample)

    Hi,

    I've recently found this: http://blog.icare3d.org/2010/06/fast-and-accurate-single-pass-buffer.html

    Full source code that uses latest OpenGL 4 to implement A-Buffer efficiently (I get...
  3. Replies
    4
    Views
    895

    Re: Retrieving a list of "clipped" objects

    Hi,

    If I understood correctly you can:
    1. Using OpenGL: You can use two "very near" clipping planes in opposite direction and use feedback to read only clipped vertices.
    2. Use some tree...
  4. Replies
    7
    Views
    1,501

    Re: Doubts about VBO

    1. You can create single large buffer and divide it between the cubes and use an offset in glxxxPtr, you can even use one large array for pos,color,tex and each attribute is an offset in the array....
  5. Re: layered transparent window in front of OpenGL-App

    If I remember correctly I think it an operating system bug, on windows 2000/vista/7 it works but on XP it doesn't.

    Ido
  6. Replies
    2
    Views
    1,994

    Re: Creating a sphere by hand

    Hi,

    Today GPUs are complex machine with both large and efficient pre and post transformation caches, using index arrays with optimized array indexing and positioning could lead to very high vertex...
  7. Replies
    7
    Views
    1,501

    Re: Doubts about VBO

    Hi,

    1. You need to disable the binding if you want to use non buffer rendering by glBindBuffer(0)
    2. You can create as many buffer as you like, each is used for a different cube, or create on...
  8. Replies
    2
    Views
    1,147

    Re: multiple views Flicker

    Hi,

    glClear() is not affected by glViewPort().
    I suggest you move the glClear() before the two viewports are rendered.

    Ido
  9. Re: Stencil Routed K-buffer sample needed in OpenGL

    Hi,

    Thanks,
    I will look into this.

    Do you know of a complete sample?
    Ido
  10. Stencil Routed K-buffer sample needed in OpenGL

    Hi Friends,

    Can anyone please share a sample implementation or code of the stencil routed k-buffer technique implemented in OpenGL and GLSL using the explicit_multisample extension.

    I've...
  11. Replies
    73
    Views
    151,117

    Re: Official Bindless Graphics feedback thread

    Just a comment: A lot of updates recently from NVIDIA, nice to see all the updates and browse developer page (like few years back).

    Reading the spec right now, seems nice. Presentation is well...
  12. Replies
    13
    Views
    7,021

    Re: glTexXX3D upload speed from another thread

    Hi All,

    I wanted to update you for future reference:
    I've implemented the PBO approach, no context sharing in the threads, one unmap, draw, map and another thread uploads. I'm only using one PBO...
  13. Replies
    13
    Views
    7,021

    Re: glTexXX3D upload speed from another thread

    Many thanks for the this great information yooyo. I will try it asap and let you all know how it works.

    Ido
  14. Replies
    13
    Views
    7,021

    Re: glTexXX3D upload speed from another thread

    Hi,
    Thank you all for the help.

    Yooyo - that exactly what I was telling dletozeun. I'm going to try it in the next few days(many tasks at once).
    The weird stuff is even if I use PBO in the same...
  15. Replies
    13
    Views
    7,021

    Re: glTexXX3D upload speed from another thread

    Some update:
    I've divided the texture upload into several cycles. What I've noticed is that only when uploading small chunk(1/10 of the volume) every 50ms I get reasonable result (with 500ms delay)....
  16. Replies
    8
    Views
    1,404

    Re: 3D Model with opaque and non-opaque pixels

    Are you using complex or large models?
    Blending have an impact only when drawing a lot of pixels.
    Ido
  17. Thread: Boolean Help

    by Ido Ilan
    Replies
    3
    Views
    862

    Re: Boolean Help

    Hi,

    What exactly is the problem?
    No texture?, no quad? empty display?

    Ido
  18. Replies
    13
    Views
    7,021

    Re: glTexXX3D upload speed from another thread

    Hi,

    1. My current implementation don't use PBO.
    2. I believe it is a sync problem but it occurs in the drivers as far as I can see.
    3. If i wanted to use PBO for async transfer I must do it in...
  19. Replies
    13
    Views
    7,021

    Re: glTexXX3D upload speed from another thread

    Some weird info:
    Using pbo in the second thread helps a bit. This pbo is mapped, loaded, unmapped and glTexsub(...,0) in the update thread but still give a little better results.

    I will also try...
  20. Replies
    11
    Views
    3,272

    Re: Problems with indexed VBO

    OK, I see.



    You can still use vertex array with index array.
    Just pass pIndexes to glDrawElements instead on null.

    Also does CurMesh[i]->GetIndexCount() return the number of indexes or the...
  21. Replies
    13
    Views
    7,021

    Re: glTexXX3D upload speed from another thread

    No, but I've tried loading a smaller texture several time in the uploader thread with the same effect.

    I can maybe try uploading the texture using several cycles, now it is updated every 300ms - I...
  22. Replies
    11
    Views
    3,272

    Re: Problems with indexed VBO

    Hi,

    1. glBufferData don't know your type for normal, vertex, or index, You must pass the size of your array in bytes. if you have one normal (x,y,z) of type float, the size is sizeof(float) * 3....
  23. Replies
    13
    Views
    7,021

    glTexXX3D upload speed from another thread

    Hi All,

    While trying to improve our volume rendering quality and increase the rendering speed (specially on older GPUs) I have added a gradient texture (instead of computing it in the shader). The...
  24. Replies
    2
    Views
    1,747

    Re: about wglsharelists

    I also remember you need not create anything in the second context before sharing or it will fail.
  25. Replies
    165
    Views
    528,832

    Re: Official feedback on OpenGL 3.1 thread

    I love OpenGL, I started working with DirectX (5-7) and quickly moved to OpenGL because I love Open Standard, loved the ARB discussion that were posted on the site, love the API.
    I know "love" is a...
Results 1 to 25 of 84
Page 1 of 4 1 2 3 4