mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-05-11 06:28:24 +02:00
CodeSpell
This commit is contained in:
committed by
Özkan Sezer
parent
8b53b77058
commit
d870911202
@@ -192,7 +192,7 @@ static void RenderClearBackground(void)
|
||||
SDL_SetRenderDrawColor(renderer, 128, 128, 128, 255);
|
||||
SDL_RenderClear(renderer);
|
||||
|
||||
/* Check the renderered pixels */
|
||||
/* Check the rendered pixels */
|
||||
SDL_Color c;
|
||||
if (!ReadPixel(0, 0, &c)) {
|
||||
return;
|
||||
@@ -220,7 +220,7 @@ static void RenderDrawBackground(void)
|
||||
SDL_SetRenderDrawColor(renderer, 128, 128, 128, 255);
|
||||
SDL_RenderFillRect(renderer, NULL);
|
||||
|
||||
/* Check the renderered pixels */
|
||||
/* Check the rendered pixels */
|
||||
SDL_Color c;
|
||||
if (!ReadPixel(0, 0, &c)) {
|
||||
return;
|
||||
@@ -269,7 +269,7 @@ static void RenderTextureBackground(void)
|
||||
SDL_RenderTexture(renderer, texture, NULL, NULL);
|
||||
SDL_DestroyTexture(texture);
|
||||
|
||||
/* Check the renderered pixels */
|
||||
/* Check the rendered pixels */
|
||||
SDL_Color c;
|
||||
if (!ReadPixel(0, 0, &c)) {
|
||||
return;
|
||||
@@ -307,7 +307,7 @@ static void RenderTargetBackground(void)
|
||||
SDL_RenderTexture(renderer, target, NULL, NULL);
|
||||
SDL_DestroyTexture(target);
|
||||
|
||||
/* Check the renderered pixels */
|
||||
/* Check the rendered pixels */
|
||||
SDL_Color c;
|
||||
if (!ReadPixel(0, 0, &c)) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user