Adding Status bar and Toolbar to MFC Dialog Boxes

Tweet

We have seen the toolbars and status bars with SDI or MDI Windows. It’s very rare to see Toolbars with Dialog boxes. The following MSDN sample explains How to add status bar and Toolbars to Dialog Boxes. The article itself explained how it’s been implemented. So you can simply check with the Sample sources provided with . . . → Read More: Adding Status bar and Toolbar to MFC Dialog Boxes

Duplicating an OpenGL Texture

Tweet

Suppose if you need to duplicate an OpenGL texture. How you will manage it?

Poor Programmer’s Method

In this way you will be just loading a texture, and duplicate mainly with the help of glGetTexImage and glTexImage APIs. This is method is extremely low performing and will not work with the textures . . . → Read More: Duplicating an OpenGL Texture