Skip to content
Snippets Groups Projects
Select Git revision
  • d2b1d93df7d5c6dd4f995fe3c38ca18a7f3f3e9f
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

textured-spheres.h

Blame
  • Forked from Peter Gerwinski / hp
    74 commits behind the upstream repository.
    textured-spheres.h 290 B
    #ifndef TEXTURED_SPHERES_H
    #define TEXTURED_SPHERES_H
    
    #include <GL/gl.h>
    #include <GL/glu.h>
    
    extern void init_texture (char *image_filename, GLuint *texture);
    extern void draw_textured_sphere (GLuint texture, GLdouble radius, GLint slices, GLint stacks);
    
    #endif /* TEXTURED_SPHERES_H */