Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-03-23 14:51:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-03-23 14:52:33 +0300
commitb8a6cd0140cae6d4da1d17577f60dc7b854fdff1 (patch)
tree0791fbe37027c9545870d624540dc422c9c05ca5 /source/blender/gpu
parentc48ebb44ae15b1238a6d86e98fee6cd1ff0cba73 (diff)
Cleanup: comments, style
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/intern/gpu_extensions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c
index b4ffc978d11..c6b95caa6f7 100644
--- a/source/blender/gpu/intern/gpu_extensions.c
+++ b/source/blender/gpu/intern/gpu_extensions.c
@@ -365,7 +365,7 @@ static unsigned char *GPU_texture_convert_pixels(int length, const float *fpixel
p = pixels = MEM_callocN(sizeof(unsigned char)*len, "GPUTexturePixels");
for (a=0; a<len; a++, p++, fp++)
- *p = FTOCHAR((*fp));
+ *p = FTOCHAR(*fp);
return pixels;
}