1
vote
1answer
31 views

GLUT - what is imageloader.h and how can I get the correct one?

I'm currently learning the basic of how to map a texture in GLUT from this source: http://www.dreamincode.net/forums/topic/253361-texture-mapping-and-glutsolidsphere/ and I wonder what is that ...
0
votes
2answers
110 views

Image loading causes slow processing in OpenGL

I am currently working on a project which needs to load image. I am using SOIL library to load JPEG image. I have to move the ball in the projection area. The movement of the ball works fine without ...
0
votes
1answer
177 views

How to texture Opengl glut objects (C++)

I have already tried and succeeded loading a texture from a bmp file, and drawing quads and triangles with texture. However i need to apply the loaded texture to an object drawn with ...
0
votes
0answers
91 views

SOIL Texture atlas is wrongly displayed, why?

My code should read a image using soil library and using function renderTekstura should render a part of tekstura(as an atlas). Unfortunatelly, when I am going to display 32x32image which begins in ...
-1
votes
1answer
82 views

image with openGL, SOIL [duplicate]

Possible Duplicate: Image loading using openGL, SOIL while running the source code below, it displays just a wite quad without an image. I tried to open an image called: foto. I placed the ...
1
vote
1answer
354 views

Image loading using openGL, SOIL

I tried a lot of examples for loading and displaying images in openGL using SOIL. while running the source code below, it displays just a wite quad without an image. I tried to open an image called: ...
0
votes
2answers
649 views

Loading images in openGL

I'm currently learning how to load and use images in openGL. I tried many examples of several tutorials. Many of the tutorials use a function: LoadBMP or something. This function was not declared by ...
0
votes
1answer
79 views

Using textures and lighting at the same time

I am trying to map a 1D texture on a solid teapot, it works fine I would to add the lights. When I call glMaterialfv, the colour of the material overrides the colour of the texture.So in this trivial ...
1
vote
1answer
121 views

Multiple Texturing Using GLUT

I have a code that should render two spheres, each with a different texture, but it doesn't work, even though the build succeeds. It says: .Stack around the variable 'textureId' was corrupted. The ...
1
vote
2answers
73 views

Texture with unwanted colour

I'm trying to learn how to use textures in OpenGL.I don't have freeimage installed so I had to create the bitmap with a for loop. What I'm trying to do is to simply take a texture with all red points, ...
0
votes
0answers
74 views

Add texture around a point

I am working on N-body problem and I display the motion of the particles in 3D with GLUT. I would like to know how I could add a texture on each point. It could be for example a sphere around each ...
0
votes
3answers
2k views

How to load a bmp on GLUT to use it as a texture?

I've been searching all around for a simple solution to add sprites to my OpenGl GLUT simple moon lander game in c++ and it appears I must use bmp's since they're easiest to load and use them as ...
0
votes
3answers
132 views

Keeping original colors

I'm trying to place a texture (with alpha) on another texture in OpenGL. I do it without any problems, but it's not as I wanted: my nearest image's color is strongly affected by background image ...
1
vote
1answer
474 views

Texture Won't Appear - GLUT OpenGL

I'm having problems trying to load textures in an OpenGL GLUT project using classes. Here's some code that includes the texturing stuff: Declaring a Textured Model from a subclass of a model class. ...
0
votes
1answer
627 views

OpenGL resizing a Texture/Quad

I'm implementing a pan/zoom viewer for jpegs. I show one image at a time mapped to a texture, then on a key press, swap between images. My problem is that although the image does change, the size of ...
0
votes
2answers
318 views

OpenGl - gluShpere sits on its side how can i rotate it up right?

This is my sphere but this is not all the code GLUquadric *earth = gluNewQuadric(); gluSphere( earth, 35.0, 36, 30); The above sphere has a texture of the earth but it is tilted on its side how can ...
0
votes
1answer
741 views

OpenGl - texture on glutSolidSphere does not show

i have managed to load texture // Load texture glPixelStorei(GL_UNPACK_ALIGNMENT, 1); pBytes = gltLoadTGA("../earth.tga", &iWidth, &iHeight, &iComponents, &eFormat); ...
-2
votes
1answer
413 views

OpenGl - texture glutSolidSphere? [closed]

I'm trying to do a simple thing in OpenGL to texture an annoying sphere but when i include this line of code it gets confused like a phat kid dating a super model #include "imageloader.h" It ...
0
votes
0answers
253 views

OpenGL - Loading a texture using SDL

I'm trying to load a texture using SDL but when I try the following code, it says that SDL_Surface and img=SDL_LoadTGA are undefined: SDL_Surface* img=SDL_LoadTGA(filename); Do I need to include ...
0
votes
1answer
730 views

OpenGl - texture glutSolidSphere?

How can I apply a texture to a glutSolidSphere? this what i have tried but it doesn't work: GLuint textureid; glGenTextures(1, &textureid); glBindTexture(GL_TEXTURE_2D, textureid); ...
0
votes
1answer
161 views

OpenGL multi-texturing error: can't access every texture in samplers

I'm trying to send two textures to a fragment shader but it doesn't seem to work. Only one texture can be accessed from the sampler in the shader. Here is what I'm doing in my code ...
1
vote
1answer
363 views

OpenGLUT: Texture for a sphere: what's the correct way to do it?

I need to give texture to an sphere: but I want to learn a good way to do it: I read methods which seem not to take advantage of the glut, they only use gl features. Maybe I am trying something ...
1
vote
2answers
604 views

GLUT Creating a binary / RAW image file

I have question about creating a binary / raw image file. I've made an image in photoshop and now I want to load that in a C program. I followed this tutorial ...
2
votes
1answer
642 views

Why is my openGL texture only covering half of my quad? Source included

Here is my code. I'm attempting to draw a simple quadrilateral, and place a checkerboard pattern on both sides of it. I want to allow the user to rotate around this piece with the mouse. Everything ...
7
votes
3answers
21k views

How to apply texture to glutSolidCube

I can find tutorials about mapping textures to polygons specifying vertices etc. but nothing regarding how to apply a texture to a cube (or other stuff) drawn with glut (glutSolidCube). I am doing ...