the title sums things up.
i have a sphere with a cube map applied, lets say i can see object X on the cube map. Now if i move around to the opposite side of my sphere, the object X follows me around to the other side!
this is how i bind my cube map texture:
am i missing something?Code :glActiveTextureARB(GL_TEXTURE0_ARB + texUnit); glBindTexture(GL_TEXTURE_CUBE_MAP, texture); glEnable(GL_TEXTURE_CUBE_MAP); glTexGeni(GL_S, GL_TEXTURE_GEN_MODE, GL_REFLECTION_MAP); // GL_NORMAL_MAP GL_REFLECTION_MAP glTexGeni(GL_T, GL_TEXTURE_GEN_MODE, GL_REFLECTION_MAP); // GL_NORMAL_MAP glTexGeni(GL_R, GL_TEXTURE_GEN_MODE, GL_REFLECTION_MAP); // GL_NORMAL_MAP glEnable(GL_TEXTURE_GEN_S); glEnable(GL_TEXTURE_GEN_T); glEnable(GL_TEXTURE_GEN_R); glEnable(GL_NORMALIZE);



