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

noreturn-1.c

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