Home
last modified time | relevance | path

Searched refs:color_image (Results 1 – 4 of 4) sorted by relevance

/external/ImageMagick/MagickCore/
Dvisual-effects.c742 *color_image; in ColorMatrixImage() local
778 color_image=CloneImage(image,0,0,MagickTrue,exception); in ColorMatrixImage()
779 if (color_image == (Image *) NULL) in ColorMatrixImage()
781 if (SetImageStorageClass(color_image,DirectClass,exception) == MagickFalse) in ColorMatrixImage()
783 color_image=DestroyImage(color_image); in ColorMatrixImage()
816 color_view=AcquireAuthenticCacheView(color_image,exception); in ColorMatrixImage()
819 magick_number_threads(image,color_image,image->rows,1) in ColorMatrixImage()
838 q=GetCacheViewAuthenticPixels(color_view,0,y,color_image->columns,1, in ColorMatrixImage()
878 SetPixelViaPixelInfo(color_image,&pixel,q); in ColorMatrixImage()
880 q+=GetPixelChannels(color_image); in ColorMatrixImage()
[all …]
/external/ImageMagick/coders/
Dpng.c4407 DestroyJNG(unsigned char *chunk,Image **color_image, in DestroyJNG() argument
4422 if (color_image && *color_image) in DestroyJNG()
4424 DestroyImageList(*color_image); in DestroyJNG()
4425 *color_image = (Image *)NULL; in DestroyJNG()
4438 *color_image, in ReadOneJNGImage() local
4495 color_image=(Image *) NULL; in ReadOneJNGImage()
4560 DestroyJNG(NULL,&color_image,&color_image_info, in ReadOneJNGImage()
4566 DestroyJNG(NULL,&color_image,&color_image_info, in ReadOneJNGImage()
4581 DestroyJNG(NULL,&color_image,&color_image_info, in ReadOneJNGImage()
4612 DestroyJNG(chunk,&color_image,&color_image_info, in ReadOneJNGImage()
[all …]
/external/vulkan-validation-layers/tests/
Dvklayertests_command.cpp3153 VkImageObj color_image(m_device), ds_image(m_device), depth_image(m_device); in TEST_F() local
3154color_image.Init(128, 128, 1, VK_FORMAT_R32_SFLOAT, VK_IMAGE_USAGE_TRANSFER_SRC_BIT | VK_IMAGE_USA… in TEST_F()
3159 ASSERT_TRUE(color_image.initialized()); in TEST_F()
3203 …vkCmdCopyImage(m_commandBuffer->handle(), color_image.handle(), VK_IMAGE_LAYOUT_GENERAL, color_ima… in TEST_F()
3213 …vkCmdCopyImage(m_commandBuffer->handle(), color_image.handle(), VK_IMAGE_LAYOUT_GENERAL, color_ima… in TEST_F()
3223 …vkCmdCopyImage(m_commandBuffer->handle(), color_image.handle(), VK_IMAGE_LAYOUT_GENERAL, color_ima… in TEST_F()
3232 …vkCmdCopyImage(m_commandBuffer->handle(), color_image.handle(), VK_IMAGE_LAYOUT_GENERAL, color_ima… in TEST_F()
3243 …vkCmdCopyImage(m_commandBuffer->handle(), color_image.handle(), VK_IMAGE_LAYOUT_GENERAL, depth_ima… in TEST_F()
3253 …vkCmdCopyImage(m_commandBuffer->handle(), color_image.handle(), VK_IMAGE_LAYOUT_GENERAL, depth_ima… in TEST_F()
3712 vk_testing::Image color_image; in TEST_F() local
[all …]
/external/ImageMagick/MagickWand/
Dmagick-image.c1830 *color_image; in MagickColorMatrixImage() local
1840 color_image=ColorMatrixImage(wand->images,color_matrix,wand->exception); in MagickColorMatrixImage()
1841 if (color_image == (Image *) NULL) in MagickColorMatrixImage()
1843 ReplaceImageInList(&wand->images,color_image); in MagickColorMatrixImage()