X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=SDL_FillRect.html;h=b5820623720be613138ccbcc9c72a24a00f0d4a1;hb=06214f4f6c7612f869c5b76141b1cd927cc23113;hp=f2f04d5ac7967919e263065c4025da259f02b02b;hpb=9b1553b359114596e58e37000f559212ca5bc498;p=sdl2referencejp%2Fsdl2referencejp.git diff --git a/SDL_FillRect.html b/SDL_FillRect.html index f2f04d5..b582062 100644 --- a/SDL_FillRect.html +++ b/SDL_FillRect.html @@ -28,10 +28,14 @@

-SDL_Surface *s = NULL; // ƒT[ƒtƒFƒCƒX‚ðéŒ¾‚·‚é
+/* ƒT[ƒtƒFƒCƒX‚ðéŒ¾‚·‚é */
+SDL_Surface *s = NULL;
 
-s = SDL_CreateRGBSurface(SDL_HWSURFACE, width, height, 32, 0, 0, 0, 0); // ƒT[ƒtƒFƒCƒX‚𐶐¬‚·‚é
-SDL_FillRect(s, NULL, SDL_MapRGB(s->format, 255, 0, 0)) // ƒT[ƒtƒFƒCƒX‚ðÔF‚Å“h‚è‚‚Ԃ·
+/* ƒT[ƒtƒFƒCƒX‚𐶐¬‚·‚é */
+s = SDL_CreateRGBSurface(SDL_HWSURFACE, width, height, 32, 0, 0, 0, 0);
+
+/* ƒT[ƒtƒFƒCƒX‚ðÔF‚Å“h‚è‚‚Ԃ· */
+SDL_FillRect(s, NULL, SDL_MapRGB(s->format, 255, 0, 0));