Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProjetZZ1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marc BERET
ProjetZZ1
Commits
1f6f071e
Commit
1f6f071e
authored
2 years ago
by
antoinemeyer5
Browse files
Options
Downloads
Patches
Plain Diff
init. exercice x fenetre : code de base donne par le sujet
parent
b9d03665
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
travail_individuel/Meyer/x_fenetre/main.c
+41
-0
41 additions, 0 deletions
travail_individuel/Meyer/x_fenetre/main.c
travail_individuel/Meyer/x_fenetre/makefile
+11
-0
11 additions, 0 deletions
travail_individuel/Meyer/x_fenetre/makefile
with
52 additions
and
0 deletions
travail_individuel/Meyer/x_fenetre/main.c
0 → 100644
+
41
−
0
View file @
1f6f071e
#include
<SDL2/SDL.h>
#include
<stdio.h>
int
main
(
int
argc
,
char
**
argv
)
{
(
void
)
argc
;
(
void
)
argv
;
SDL_Window
*
window
=
NULL
;
/* Initialisation de la SDL + gestion de l'échec possible */
if
(
SDL_Init
(
SDL_INIT_VIDEO
)
!=
0
)
{
SDL_Log
(
"Error : SDL initialisation - %s
\n
"
,
SDL_GetError
());
// l'initialisation de la SDL a échoué
exit
(
EXIT_FAILURE
);
}
/* Création de la fenêtre */
window
=
SDL_CreateWindow
(
"Rocket"
,
0
,
0
,
// coin haut gauche en haut gauche de l'écran
400
,
300
,
// largeur = 400, hauteur = 300
SDL_WINDOW_RESIZABLE
);
// redimensionnable
if
(
window
==
NULL
)
{
SDL_Log
(
"Error : SDL window 1 creation - %s
\n
"
,
SDL_GetError
());
// échec de la création de la fenêtre
SDL_Quit
();
// On referme la SDL
exit
(
EXIT_FAILURE
);
}
/* Normalement, on devrait ici remplir les fenêtres... */
SDL_Delay
(
2000
);
// Pause exprimée en ms
/* et on referme tout ce qu'on a ouvert en ordre inverse de la création */
SDL_DestroyWindow
(
window
);
// la fenêtre
SDL_Quit
();
// la SDL
return
0
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
travail_individuel/Meyer/x_fenetre/makefile
0 → 100644
+
11
−
0
View file @
1f6f071e
CC
=
gcc
main
:
main.o
$(
CC
)
-o
main main.o
-lm
-lSDL2
@
echo
"=> Lancer le programme avec ./main"
main.o
:
main.c
$(
CC
)
-c
main.c
-g
-Wall
-Wextra
clean
:
rm
-rf
main
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment