Searched refs:tmpImage (Results 1 – 3 of 3) sorted by relevance
91 GLfloat *tmpImage, *p; in copy_rgba_pixels() local131 tmpImage = malloc(width * height * sizeof(GLfloat) * 4); in copy_rgba_pixels()132 if (!tmpImage) { in copy_rgba_pixels()137 p = tmpImage; in copy_rgba_pixels()143 p = tmpImage; in copy_rgba_pixels()146 tmpImage = NULL; /* silence compiler warnings */ in copy_rgba_pixels()188 free(tmpImage); in copy_rgba_pixels()238 GLfloat *p, *tmpImage, *depth; in copy_depth_pixels() local278 tmpImage = malloc(width * height * sizeof(GLfloat)); in copy_depth_pixels()279 if (!tmpImage) { in copy_depth_pixels()[all …]
952 SkAutoTMalloc<float> tmpImage(tmpSize); in BlurGroundTruth() local953 memset(tmpImage, 0, tmpSize*sizeof(tmpImage[0])); in BlurGroundTruth()958 float *outPixel = tmpImage + (x-pad)*tmpWidth + y + 2*pad; // transposed output in BlurGroundTruth()972 float *srcScanline = tmpImage + y*tmpWidth; in BlurGroundTruth()
1844 …stBlurRow(__global CLPixelType *srcImage, __global CLPixelType *dstImage, __global float *tmpImage,1885 tmpImage[i + y * imageWidth] = sum / ((radius + 1) * (radius + 1));