Skip to content
Snippets Groups Projects
Select Git revision
  • b7feb37c71e38a2a25780357d72babe2e41a3a36
  • master default protected
2 results

MainApp.class

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