OpenGL 2D Texture Mapping problem?

First, your image dimensions must be powers of two, not just arbitrary 500x375. Second, the internalformat (third) argument to glTexImage2D should be a symbolic constant, describing the internal format layout, not just "4" as it's deprecated since OpenGL 1.2. Third, your dataP and bufferP storage layout must correspond to the current GL_UNPACK_ALIGNMENT . Fourth, your equilateral quad, on which you're trying to put the texture on, is essentially square, and thus your non-square texture will appear squashed or stretched with such a texture coordinates.

I think I see you issue here. GlViewport defines the viewport size, not the window size. So when you create your window (with glut, sdl, or wgl, or whatever), you have to specify the size.

To get a 1:1 mapping of the glViewport to this window, those two need to match.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions