Fixed bug 2190 - test/testdrawchessboard.c line endings Joseph Carter test/testdrawchessboard.c checks out of hg with DOS line endings on non-dos systems. Fixed via: perl -pi -e 's/\r//g' test/testdrawchessboard.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
diff --git a/test/testdrawchessboard.c b/test/testdrawchessboard.c
index 567d3fb..f203f58 100644
--- a/test/testdrawchessboard.c
+++ b/test/testdrawchessboard.c
@@ -1,110 +1,110 @@
-/*
- Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
-
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any damages
- arising from the use of this software.
-
- Permission is granted to anyone to use this software for any purpose,
- including commercial applications, and to alter it and redistribute it
- freely.
-
- This file is created by : Nitin Jain (nitin.j4@samsung.com)
-*/
-
-/* Sample program: Draw a Chess Board by using SDL_CreateSoftwareRenderer API */
-
-#include <stdlib.h>
-#include <stdio.h>
-
-#include "SDL.h"
-
-void
-DrawChessBoard(SDL_Renderer * renderer)
-{
- int row = 0,coloum = 0,x = 0;
- SDL_Rect rect, darea;
-
- /* Get the Size of drawing surface */
- SDL_RenderGetViewport(renderer, &darea);
-
- for(row; row < 8; row++)
- {
- coloum = row%2;
- x = x + coloum;
- for(coloum; coloum < 4+(row%2); coloum++)
- {
- SDL_SetRenderDrawColor(renderer, 0, 0, 0, 0);
-
- rect.w = darea.w/8;
- rect.h = darea.h/8;
- rect.x = x * rect.w;
- rect.y = row * rect.h;
- x = x + 2;
- SDL_RenderFillRect(renderer, &rect);
- }
- x=0;
- }
-}
-
-int
-main(int argc, char *argv[])
-{
- SDL_Window *window;
- SDL_Surface *surface;
- SDL_Renderer *renderer;
-
+/*
+ Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely.
+
+ This file is created by : Nitin Jain (nitin.j4@samsung.com)
+*/
+
+/* Sample program: Draw a Chess Board by using SDL_CreateSoftwareRenderer API */
+
+#include <stdlib.h>
+#include <stdio.h>
+
+#include "SDL.h"
+
+void
+DrawChessBoard(SDL_Renderer * renderer)
+{
+ int row = 0,coloum = 0,x = 0;
+ SDL_Rect rect, darea;
+
+ /* Get the Size of drawing surface */
+ SDL_RenderGetViewport(renderer, &darea);
+
+ for(row; row < 8; row++)
+ {
+ coloum = row%2;
+ x = x + coloum;
+ for(coloum; coloum < 4+(row%2); coloum++)
+ {
+ SDL_SetRenderDrawColor(renderer, 0, 0, 0, 0);
+
+ rect.w = darea.w/8;
+ rect.h = darea.h/8;
+ rect.x = x * rect.w;
+ rect.y = row * rect.h;
+ x = x + 2;
+ SDL_RenderFillRect(renderer, &rect);
+ }
+ x=0;
+ }
+}
+
+int
+main(int argc, char *argv[])
+{
+ SDL_Window *window;
+ SDL_Surface *surface;
+ SDL_Renderer *renderer;
+
/* Enable standard application logging */
- SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
-
- /* Initialize SDL */
- if(SDL_Init(SDL_INIT_VIDEO) != 0)
- {
- SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_Init fail : %s\n", SDL_GetError());
- return 1;
- }
-
-
- /* Create window and renderer for given surface */
- window = SDL_CreateWindow("Chess Board", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 480, SDL_WINDOW_SHOWN);
- if(!window)
- {
- SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Window creation fail : %s\n",SDL_GetError());
- return 1;
- }
- surface = SDL_GetWindowSurface(window);
- renderer = SDL_CreateSoftwareRenderer(surface);
- if(!renderer)
- {
- SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Render creation for surface fail : %s\n",SDL_GetError());
- return 1;
- }
-
- /* Clear the rendering surface with the specified color */
- SDL_SetRenderDrawColor(renderer, 0xFF, 0xFF, 0xFF, 0);
- SDL_RenderClear(renderer);
-
-
- /* Draw the Image on rendering surface */
- while(1)
- {
- SDL_Event e;
- if (SDL_PollEvent(&e)) {
- if (e.type == SDL_QUIT)
- break;
-
- if(e.key.keysym.sym == SDLK_ESCAPE)
- break;
- }
-
- DrawChessBoard(renderer);
-
- /* Got everything on rendering surface,
- now Update the drawing image on window screen */
- SDL_UpdateWindowSurface(window);
-
- }
-
- return 0;
-}
-
+ SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
+
+ /* Initialize SDL */
+ if(SDL_Init(SDL_INIT_VIDEO) != 0)
+ {
+ SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL_Init fail : %s\n", SDL_GetError());
+ return 1;
+ }
+
+
+ /* Create window and renderer for given surface */
+ window = SDL_CreateWindow("Chess Board", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 640, 480, SDL_WINDOW_SHOWN);
+ if(!window)
+ {
+ SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Window creation fail : %s\n",SDL_GetError());
+ return 1;
+ }
+ surface = SDL_GetWindowSurface(window);
+ renderer = SDL_CreateSoftwareRenderer(surface);
+ if(!renderer)
+ {
+ SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Render creation for surface fail : %s\n",SDL_GetError());
+ return 1;
+ }
+
+ /* Clear the rendering surface with the specified color */
+ SDL_SetRenderDrawColor(renderer, 0xFF, 0xFF, 0xFF, 0);
+ SDL_RenderClear(renderer);
+
+
+ /* Draw the Image on rendering surface */
+ while(1)
+ {
+ SDL_Event e;
+ if (SDL_PollEvent(&e)) {
+ if (e.type == SDL_QUIT)
+ break;
+
+ if(e.key.keysym.sym == SDLK_ESCAPE)
+ break;
+ }
+
+ DrawChessBoard(renderer);
+
+ /* Got everything on rendering surface,
+ now Update the drawing image on window screen */
+ SDL_UpdateWindowSurface(window);
+
+ }
+
+ return 0;
+}
+