Hi! I'm using PSPGL,and I want to texture a wall - to build it I use GL_QUADS,but as we all know, GL_QUADS is mapped to GL_TRIANGLE_FAN - when I treat it like normal gl_quad it's just blurred,no real texture at all.So my question is - how can I texture GL_TRIANGLE_FAN so it will look normally? Thx.
Ok,solved,it was my fault - first of all,bmp loaded for texture had to be 24bit(without alpha channel),and in BGR color format(I used irfanview to convert my textures to this format).Other that that everything is working just fine :D