Review formating

This commit is contained in:
Ray
2023-12-23 14:07:45 +01:00
parent 706f74bce0
commit e039a221a3
4 changed files with 92 additions and 90 deletions

View File

@@ -4787,8 +4787,8 @@ static Image LoadImageFromCgltfImage(cgltf_image *cgltfImage, const char *texPat
void *data = NULL;
cgltf_options options = { 0 };
options.file.read = LoadFileGLTFCallback;
options.file.release = ReleaseFileGLTFCallback;
options.file.read = LoadFileGLTFCallback;
options.file.release = ReleaseFileGLTFCallback;
cgltf_result result = cgltf_load_buffer_base64(&options, outSize, cgltfImage->uri + i + 1, &data);
if (result == cgltf_result_success)

View File

@@ -1967,7 +1967,7 @@ void ImageBlurGaussian(Image *image, int blurSize) {
avgG += pixelsCopy1[row*image->width + i].y;
avgB += pixelsCopy1[row*image->width + i].z;
avgAlpha += pixelsCopy1[row*image->width + i].w;
}
}
for (int x = 0; x < image->width; x++)
{