bobzakaria La vie est belle | salut bonjours hello ....
je vien de me lancer dans la programmation 2D & 3D, avec openGL & SDL et j'utilise dev-cpp.
mon probleme c'est que a chaque fois que je trouve un exemple dans un site (merci à google), et si je veux la compiler, ça ne marche pas !!!!! voilà l'exmple :::
Code :
- #include <SDL/SDL.h>
- #include <GL/gl.h>
- #include <GL/glu.h>
- int main(int argc, char *argv[])
- {
- SDL_Init(SDL_INIT_VIDEO);
- SDL_WM_SetCaption("Mon premier programme OpenGL !",NULL);
- SDL_SetVideoMode(640, 480, 32, SDL_OPENGL);
- bool continuer = true;
- SDL_Event event;
- while (continuer)
- {
- SDL_WaitEvent(&event);
- switch(event.type)
- {
- case SDL_QUIT:
- continuer = false;
- }
- glClear(GL_COLOR_BUFFER_BIT);
- glBegin(GL_TRIANGLES);
- glColor3ub(255,0,0);
- glVertex2d(-0.75,-0.75);
- glColor3ub(0,255,0);
- glVertex2d(0,0.75);
- glColor3ub(0,0,255);
- glVertex2d(0.75,-0.75);
- glEnd();
- glFlush();
- SDL_GL_SwapBuffers();
- }
- SDL_Quit();
- return 0;
- }
|
et ça m'affiche
si quelqu'un peut m'aider avec une façon special
je ni débutant dans la programmation ni professionel !!
Message édité par bobzakaria le 29-08-2006 à 21:54:51 ---------------
Le temps suit son cours ...
|