http://www.perlmonks.org?node_id=859682


in reply to Re: multiple textures on a cube (opengl example)
in thread multiple textures on a cube (opengl example)

hello
you need the six images to texture the six sides of the cube: just download the rared file contains perl file with the six images from the link in my first post.
also do not forget to install opengl and opengl image as described in the post.
  • Comment on Re^2: multiple textures on a cube (opengl example)

Replies are listed 'Best First'.
Re^3: multiple textures on a cube (opengl example)
by Anonymous Monk on Mar 21, 2011 at 19:41 UTC
    I downloaded the six images and they exist in the same directory as the code. I also ran the ppm installs you listed for opengl and opengl image. I still get the same error as before. Any ideas?

      The default engine does not support these jpg images, on Linux at least...

      The easiest method without code change is to use the ImageMagick 'convert' cli utility, and convert the .jpg to .tga format.

      After conversion this works and is a good demo/starting point for understanding a bit of the opengl stuff.