summaryrefslogtreecommitdiffhomepage
path: root/src/textures.c
diff options
context:
space:
mode:
authorRay <[email protected]>2019-04-04 13:50:52 +0200
committerRay <[email protected]>2019-04-04 13:50:52 +0200
commita103086443b3d3a3a94ec52ef19ec9be68a0069c (patch)
tree8e7432bcdfc2f527a75c664e56c024c213688d26 /src/textures.c
parent3e1e7d740fd378df03346e309ba187b6f7a20daa (diff)
downloadraylib-a103086443b3d3a3a94ec52ef19ec9be68a0069c.tar.gz
raylib-a103086443b3d3a3a94ec52ef19ec9be68a0069c.zip
Removed trail spaces
Diffstat (limited to 'src/textures.c')
-rw-r--r--src/textures.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/textures.c b/src/textures.c
index 38995f11..cd0bd208 100644
--- a/src/textures.c
+++ b/src/textures.c
@@ -181,7 +181,7 @@ static Image LoadASTC(const char *fileName); // Load ASTC file
Image LoadImage(const char *fileName)
{
Image image = { 0 };
-
+
#if defined(SUPPORT_FILEFORMAT_PNG) || \
defined(SUPPORT_FILEFORMAT_BMP) || \
defined(SUPPORT_FILEFORMAT_TGA) || \
@@ -744,7 +744,7 @@ Image GetTextureData(Texture2D texture)
RLAPI Image GetScreenData(void)
{
Image image = { 0 };
-
+
image.width = GetScreenWidth();
image.height = GetScreenHeight();
image.mipmaps = 1;
@@ -1411,13 +1411,13 @@ void ImageResizeNN(Image *image,int newWidth,int newHeight)
void ImageResizeCanvas(Image *image, int newWidth,int newHeight, int offsetX, int offsetY, Color color)
{
// TODO: Review different scaling situations
-
+
if ((newWidth != image->width) || (newHeight != image->height))
{
if ((newWidth > image->width) && (newHeight > image->height))
{
Image imTemp = GenImageColor(newWidth, newHeight, color);
-
+
Rectangle srcRec = { 0.0f, 0.0f, (float)image->width, (float)image->height };
Rectangle dstRec = { (float)offsetX, (float)offsetY, (float)srcRec.width, (float)srcRec.height };
@@ -1434,23 +1434,23 @@ void ImageResizeCanvas(Image *image, int newWidth,int newHeight, int offsetX, in
else // One side is bigger and the other is smaller
{
Image imTemp = GenImageColor(newWidth, newHeight, color);
-
+
Rectangle srcRec = { 0.0f, 0.0f, (float)image->width, (float)image->height };
Rectangle dstRec = { (float)offsetX, (float)offsetY, (float)newWidth, (float)newHeight };
-
+
if (newWidth < image->width)
{
srcRec.x = offsetX;
srcRec.width = newWidth;
-
+
dstRec.x = 0.0f;
}
-
+
if (newHeight < image->height)
{
srcRec.y = offsetY;
srcRec.height = newHeight;
-
+
dstRec.y = 0.0f;
}