SFML community forums
Help => General => Topic started by: ravenheart on January 15, 2010, 11:02:55 am
-
Hello, i wanted to create a billard-ball with a texture,
thats the code:
GLUquadricObj* quadric;
sf::Image img;
img.LoadFromFile("10ball.jpg");
img.Bind();
while (App.IsOpened())
{
// Process events
sf::Event Event;
while (App.GetEvent(Event))
{
}
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
quadric = gluNewQuadric();
//gluQuadricNormals(quadric, GLU_SMOOTH);
gluQuadricTexture(quadric, GL_TRUE);
gluSphere(quadric, 30.0, 1000, 500);
App.Display();
}
but i can see the border of the texture.
Someone told me that cube-mapping might help.
I didnt really find out how i could do this, can someone help me?
It seems that Bind() decides the way it is mapped, what is standard and how can i change it?
-
but i can see the border of the texture.
What does that mean? Can you show a screenshot?
-
here u can see a screenshot, i hope u can understand my problem now
http://mstg.bplaced.net/Bildschirmfoto1.png
-
Call img.SetSmooth(false);
But you shouldn't use a sf::Image directly for 3D, SFML's textures are optimized for 2D rendering (they have no mipmaps, etc.).
-
o yeah that worked,
but what should i use instead of sf::Image?
the only alternative i found was
AUX_RGBImageRec
but it sounds quite difficult.
What is the standard for 3d?
-
I mean, use sf::Image for loading the image file, but then create your own OpenGL texture and fill it with the image's pixels.
This way you can setup your OpenGL texture properly for a 3D usage.
Take a look at the OpenGL sample from the SFML SDK, this is exactly what it does.
-
Thank u, i finally found the example =)