Searched refs:bytes_per_pixel (Results 1 – 13 of 13) sorted by relevance
/AliOS-Things-master/components/SDL2/src/test/ |
A D | SDL_test_imageBlitBlend.c | 587 SDLTest_imageBlitBlendAdd.bytes_per_pixel * 8, in SDLTest_ImageBlitBlendAdd() 588 SDLTest_imageBlitBlendAdd.width * SDLTest_imageBlitBlendAdd.bytes_per_pixel, in SDLTest_ImageBlitBlendAdd() 1117 SDLTest_imageBlitBlend.bytes_per_pixel * 8, in SDLTest_ImageBlitBlend() 1118 SDLTest_imageBlitBlend.width * SDLTest_imageBlitBlend.bytes_per_pixel, in SDLTest_ImageBlitBlend() 1547 SDLTest_imageBlitBlendMod.bytes_per_pixel * 8, in SDLTest_ImageBlitBlendMod() 1548 SDLTest_imageBlitBlendMod.width * SDLTest_imageBlitBlendMod.bytes_per_pixel, in SDLTest_ImageBlitBlendMod() 2360 SDLTest_imageBlitBlendNone.bytes_per_pixel * 8, in SDLTest_ImageBlitBlendNone() 2361 SDLTest_imageBlitBlendNone.width * SDLTest_imageBlitBlendNone.bytes_per_pixel, in SDLTest_ImageBlitBlendNone() 2828 SDLTest_imageBlitBlendAll.bytes_per_pixel * 8, in SDLTest_ImageBlitBlendAll() 2829 SDLTest_imageBlitBlendAll.width * SDLTest_imageBlitBlendAll.bytes_per_pixel, in SDLTest_ImageBlitBlendAll()
|
A D | SDL_test_imageBlit.c | 547 SDLTest_imageBlit.bytes_per_pixel * 8, in SDLTest_ImageBlit() 548 SDLTest_imageBlit.width * SDLTest_imageBlit.bytes_per_pixel, in SDLTest_ImageBlit() 1030 SDLTest_imageBlitColor.bytes_per_pixel * 8, in SDLTest_ImageBlitColor() 1031 SDLTest_imageBlitColor.width * SDLTest_imageBlitColor.bytes_per_pixel, in SDLTest_ImageBlitColor() 1542 SDLTest_imageBlitAlpha.bytes_per_pixel * 8, in SDLTest_ImageBlitAlpha() 1543 SDLTest_imageBlitAlpha.width * SDLTest_imageBlitAlpha.bytes_per_pixel, in SDLTest_ImageBlitAlpha()
|
A D | SDL_test_imageFace.c | 230 SDLTest_imageFace.bytes_per_pixel * 8, in SDLTest_ImageFace() 231 SDLTest_imageFace.width * SDLTest_imageFace.bytes_per_pixel, in SDLTest_ImageFace()
|
A D | SDL_test_imagePrimitives.c | 497 SDLTest_imagePrimitives.bytes_per_pixel * 8, in SDLTest_ImagePrimitives() 498 SDLTest_imagePrimitives.width * SDLTest_imagePrimitives.bytes_per_pixel, in SDLTest_ImagePrimitives()
|
A D | SDL_test_imagePrimitivesBlend.c | 679 SDLTest_imagePrimitivesBlend.bytes_per_pixel * 8, in SDLTest_ImagePrimitivesBlend() 680 SDLTest_imagePrimitivesBlend.width * SDLTest_imagePrimitivesBlend.bytes_per_pixel, in SDLTest_ImagePrimitivesBlend()
|
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_test_images.h | 53 unsigned int bytes_per_pixel; /* 3:RGB, 4:RGBA */ member
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/tools/ |
A D | tiff2rgba.c | 452 int bytes_per_pixel; in cvt_whole_image() local 457 bytes_per_pixel = 3; in cvt_whole_image() 462 bytes_per_pixel = 4; in cvt_whole_image() 471 bytes_per_pixel * rows_to_write * width ) == -1 ) in cvt_whole_image()
|
A D | tiffcrop.c | 799 shift_width = bytes_per_pixel; in readContigTilesIntoBuffer() 980 int shift_width, bytes_per_pixel; in readSeparateTilesIntoBuffer() local 1061 shift_width = bytes_per_pixel; in readSeparateTilesIntoBuffer() 3547 shift_width = bytes_per_pixel; in extractContigSamplesToBuffer() 3622 shift_width = bytes_per_pixel; in extractContigSamplesToTileBuffer() 4801 shift_width = bytes_per_pixel; in readSeparateStripsIntoBuffer() 6319 shift_width = bytes_per_pixel; in extractCompositeRegions() 6568 shift_width = bytes_per_pixel; in extractSeparateRegion() 8404 shift_width = bytes_per_pixel; in rotateImage() 9009 _TIFFmemcpy (src + col_offset, dst - col_offset - bytes_per_pixel, bytes_per_pixel); in reverseSamplesBytes() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/ |
A D | example.c | 962 if (height > PNG_SIZE_MAX / (width * bytes_per_pixel)) 965 png_byte image[height * width * bytes_per_pixel]; 973 row_pointers[k] = image + k * width * bytes_per_pixel;
|
A D | pngwrite.c | 640 int bytes_per_pixel; in png_do_write_intrapixel() local 648 bytes_per_pixel = 3; in png_do_write_intrapixel() 651 bytes_per_pixel = 4; in png_do_write_intrapixel() 656 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel) in png_do_write_intrapixel() 670 bytes_per_pixel = 6; in png_do_write_intrapixel() 673 bytes_per_pixel = 8; in png_do_write_intrapixel() 678 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel) in png_do_write_intrapixel()
|
A D | pngread.c | 328 int bytes_per_pixel; in png_do_read_intrapixel() local 337 bytes_per_pixel = 3; in png_do_read_intrapixel() 340 bytes_per_pixel = 4; in png_do_read_intrapixel() 345 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel) in png_do_read_intrapixel() 357 bytes_per_pixel = 6; in png_do_read_intrapixel() 360 bytes_per_pixel = 8; in png_do_read_intrapixel() 365 for (i = 0, rp = row; i < row_width; i++, rp += bytes_per_pixel) in png_do_read_intrapixel()
|
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/imageio/ |
A D | wicdec.c | 62 int bytes_per_pixel; member 342 stride = (int64_t)importer->bytes_per_pixel * width * sizeof(*rgb); in ReadPictureWithWIC()
|
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_video.c | 168 int bytes_per_pixel; member 350 data->bytes_per_pixel = SDL_BYTESPERPIXEL(*format); in SDL_CreateWindowTexture() 351 data->pitch = (((window->w * data->bytes_per_pixel) + 3) & ~3); in SDL_CreateWindowTexture() 387 rect.x * data->bytes_per_pixel); in SDL_UpdateWindowTexture()
|
Completed in 52 milliseconds