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

Page 1 of 8 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    227

    Re: OpenGL and GDI problems on Vista

    - The first suggestion is don't: if you only require a minimal subset of GDI, build your GDI to OpenGL translator, it will get hw accelerated (GDI is on software on Vista) and the world will be a...
  2. Re: Calling OpenGL functions from kernel mode

    Huh? Why would anybody want to do that?
  3. Replies
    34
    Views
    4,024

    Re: Swapbuffers priority

    It's also unfortunate that you keep being in denial when it's a highly skilled professional OpenGL driver developer with many years of experience answering.

    Like I said Windows is not an "embedded...
  4. Replies
    34
    Views
    4,024

    Re: Swapbuffers priority

    Well, frankly speaking, if you are using REALTIME_PRIORITY, you get what you deserve:

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dllproc/base/setthreadpriority.asp
    ...
  5. Re: Call for OpenGL Experts to act as OpenGL Wiki editors

    All this is good, but - and please take this as constructive criticism - why doesn't the OpenGL wiki have anonymous or free login editing like Wikipedia?

    I don't think that having an "elitist"...
  6. Replies
    4
    Views
    615

    Re: OpenGL inside DLL issues

    Originally posted by atreyu:
    Apparently we've been compiling the graphics layer dlls using Multithreaded DLL's.

    I would dare to say that's the right thing to do when you have multiple threads.
    ...
  7. Replies
    4
    Views
    615

    Re: OpenGL inside DLL issues

    I assume you are loading your graphics layer DLL dynamically.

    What driver & card are you having problems with?
    Are you doing things in DllMain of your graphics layer DLL you shouldn't be doing?...
  8. Replies
    8
    Views
    378

    Re: ogl texturing problem

    The problem here is that OpenGL doesn't specify how a polygon is broken into triangles, for a quad with vertices 0123, in some cases you may get triangles 012, 230 and in others you may get 301, 123...
  9. Replies
    23
    Views
    1,228

    Re: Dumping ObjectCode from Shaders??

    The driver can already do that without the need of new extensions, there's no reason why it cannot hash the shaders and persist them on disk.
  10. Re: wglCreateLayerContext implemented on WINDOWS?

    Check if your graphics card supports overlay planes in OpenGL.
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/opengl/ntopnglr_1awk.asp
    ...
  11. Re: OpenGL under Windows XP profesional 64-but edition

    Huh? WinXP 64 is as 'locked' as WinXP 32 is. In both systems you have to install ICDs, they don't come inbox.

    What happens is that on WinXP 32 there's a thin D3D wrapper for quake3-style games....
  12. Re: Any way to share a back buffer across windows in OpenGL?

    I know NVIDIA uses it (UBB is NVIDIA's naming) I believe it used to be a selling point differenciator between Quadro's and geForces (the geForce driver would turn it off).
    I don't think so....
  13. Re: Any way to share a back buffer across windows in OpenGL?

    There's a common optimization that ICDs use to minimize the memory footprint allocated to backbuffers. It's called "unified backbuffer" and what they do is to allocate a single desktop-size...
  14. Re: Why glReadPixels always read alpha value as 255

    Check your alphabits, the colorbits tell you nothing about alpha:

    typedef struct tagPIXELFORMATDESCRIPTOR { // pfd
    WORD nSize;
    WORD nVersion;
    DWORD dwFlags;
    BYTE iPixelType; ...
  15. Replies
    6
    Views
    636

    Re: Displaying a tiled bitmap in OpenGL

    He said he broke a "very large bitmap" into tiles to "get around the OpenGL bitmap size limitation". That sounds exactly like having one big image and tiling it in such a way that each tile is a...
  16. Replies
    6
    Views
    636

    Re: Displaying a tiled bitmap in OpenGL

    CLAMP_TO_EDGE is the wrong mode for tiling if he is using bilinear filtering. He wants to use GL_CLAMP and textures with border, where the border is the neighbour row/column from the neighbour tile.
  17. Thread: Beyond 1.1 ?

    by evanGLizr
    Replies
    3
    Views
    381

    Re: Beyond 1.1 ?

    That is a FAQ .
  18. Replies
    24
    Views
    2,129

    Re: Memory texture

    Try a 4096x1 texture. The maximum texture size is just that, a static maximum (normally limited by the size of the internal calculations of the texture addressing unit of the graphics chip).
    In...
  19. Replies
    6
    Views
    1,526

    Re: Transparent OpenGL Windows..

    Check a previous post on that. Using FBOs or pbuffers instead of glReadPixels is just a variation.
  20. Re: Release Mode Bugs with Visual Studio .Net 2003

    Also, if your floating point operations are going off, try enabling improve floating point consistency with the /Op flag.
  21. Replies
    2
    Views
    217

    Re: Front buffer getting cleared

    In "unextended" WGL the content of the backbuffer is undefined after calling SwapBuffers.

    If glAddSwapRectWIN is supported, you can use the PIXELFORMATDESCRIPTOR flags PFD_SWAP_COPY and...
  22. Replies
    5
    Views
    210

    Re: GL_LINE_STIPPLE causes inaccuracy

    Interesting. That card probably doesn't support stippling in hardware (or if it supports it, it's disabled by the driver and only enabled on the Quadro counterpart).

    That means that the stippled...
  23. Replies
    5
    Views
    669

    Re: TEXTURE_BASE_LEVEL cleverness?

    My guess is that actually both behave the same, both allocate the full mipmap chain disregarding BASE_LEVEL, but because 3Dlabs supports virtual addressing, it only pages in the mipmap levels of the...
  24. Replies
    5
    Views
    669

    Re: TEXTURE_BASE_LEVEL cleverness?

    Hmmm I don't agree with that, the whole point of LOD clamping is deferred texture uploads, not reduced memory usage.

    Otherwise when the LOD clamp changes (and it will change, otherwise you would...
  25. Replies
    3
    Views
    206

    Re: NPOT 3D Textures

    Are you showing the texture magnified or minified?
    Are you using mipmaps in both cases?
    Did you try GL_NEAREST_MIPMAP_NEAREST?
Results 1 to 25 of 183
Page 1 of 8 1 2 3 4