-
How to get the VRAM size.
hi,
How can I have the memory size of the installed video card?
..and does it have any info how to manage video memory when using opengl?
Phil
-
Re: How to get the VRAM size.
OpenGL does not have any particular way of telling you this. However, some OpenGL drivers have put such information in the GL_RENDERER or GL_VERSION string.
-
Re: How to get the VRAM size.
Keep loading textures and test if they are
resident, until you run out?
-
Re: How to get the VRAM size.
In theory, you should not have to know the size of video memory, since there are so many issues involved in video memory management that apps getting involved will just cause trouble.
I doubt you actually just want to know the size of video memory. What are you really trying to do?
[If you _really_ need to know the size of video memory, and nothing more (so, for example, you could print out how much there is somewhere), you can query with DirectDraw. However, I caution you against using this number for anything.]
- Matt
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules