Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed iPhone demos
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 17, 2009
1 parent d63e3f3 commit f9125ec
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
3 changes: 2 additions & 1 deletion XCodeiPhoneOS/Demos/src/happy.c
Expand Up @@ -58,7 +58,8 @@ render(void)
dstRect.h = HAPPY_FACE_SIZE;

/* fill background in with black */
SDL_RenderFill(0, 0, 0, 255, NULL);
SDL_SetRenderDrawColor(0, 0, 0, 255);
SDL_RenderFill(NULL);

/*
loop through all the happy faces:
Expand Down
7 changes: 4 additions & 3 deletions XCodeiPhoneOS/Demos/src/keyboard.c
Expand Up @@ -174,8 +174,8 @@ void
drawBlank(int x, int y)
{
SDL_Rect rect = { x, y, GLYPH_SIZE_SCREEN, GLYPH_SIZE_SCREEN };
SDL_RenderFill(bg_color.r, bg_color.g, bg_color.b, bg_color.unused,
&rect);
SDL_SetRenderDrawColor(bg_color.r, bg_color.g, bg_color.b, bg_color.unused);
SDL_RenderFill(&rect);
}

/* moves backwards one character, erasing the last one put down */
Expand Down Expand Up @@ -254,7 +254,8 @@ main(int argc, char *argv[])
loadFont();

/* draw the background, we'll just paint over it */
SDL_RenderFill(bg_color.r, bg_color.g, bg_color.b, bg_color.unused, NULL);
SDL_SetRenderDrawColor(bg_color.r, bg_color.g, bg_color.b, bg_color.unused);
SDL_RenderFill(NULL);
SDL_RenderPresent();

int done = 0;
Expand Down
7 changes: 4 additions & 3 deletions XCodeiPhoneOS/Demos/src/mixer.c
Expand Up @@ -167,13 +167,14 @@ void
render(void)
{
int i;
SDL_RenderFill(50, 50, 50, 255, NULL); /* draw background (gray) */
SDL_SetRenderDrawColor(50, 50, 50, 255);
SDL_RenderFill(NULL); /* draw background (gray) */
/* draw the drum buttons */
for (i = 0; i < NUM_DRUMS; i++) {
SDL_Color color =
buttons[i].isPressed ? buttons[i].downColor : buttons[i].upColor;
SDL_RenderFill(color.r, color.g, color.b, color.unused,
&buttons[i].rect);
SDL_SetRenderDrawColor(color.r, color.g, color.b, color.unused);
SDL_RenderFill(&buttons[i].rect);
}
/* update the screen */
SDL_RenderPresent();
Expand Down
6 changes: 4 additions & 2 deletions XCodeiPhoneOS/Demos/src/rectangles.c
Expand Up @@ -26,7 +26,8 @@ render(void)
b = randomInt(50, 255);

/* Fill the rectangle in the color */
SDL_RenderFill(r, g, b, 255, &rect);
SDL_SetRenderDrawColor(r, g, b, 255);
SDL_RenderFill(&rect);

/* update screen */
SDL_RenderPresent();
Expand Down Expand Up @@ -61,7 +62,8 @@ main(int argc, char *argv[])
}

/* Fill screen with black */
SDL_RenderFill(0, 0, 0, 0, NULL);
SDL_SetRenderDrawColor(0, 0, 0, 255);
SDL_RenderFill(NULL);

/* Enter render loop, waiting for user to quit */
done = 0;
Expand Down
3 changes: 2 additions & 1 deletion XCodeiPhoneOS/Demos/src/touch.c
Expand Up @@ -95,7 +95,8 @@ main(int argc, char *argv[])
initializeTexture();

/* fill canvass initially with all black */
SDL_RenderFill(0, 0, 0, 255, NULL);
SDL_SetRenderDrawColor(0, 0, 0, 255);
SDL_RenderFill(NULL);
SDL_RenderPresent();

done = 0;
Expand Down

0 comments on commit f9125ec

Please sign in to comment.