Skip to content
Snippets Groups Projects
Select Git revision
  • a19c33cd8ae7e1d43a69b56a046ac0449328e037
  • 2024ss default
  • 2023ss
  • 2022ss
  • 2021ss protected
5 results

dwarf-ak-06.red

Blame
  • 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 */