Home
last modified time | relevance | path

Searched refs:dstPixels (Results 1 – 25 of 252) sorted by relevance

1234567891011

/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/mediax/jai/
H A DColorSpaceJAI.java437 roundValues(dstPixels); in CIEXYZToRGBByte()
439 convertToSigned(dstPixels, dstType) ; in CIEXYZToRGBByte()
504 roundValues(dstPixels); in CIEXYZToRGBShort()
571 roundValues(dstPixels); in CIEXYZToRGBInt()
634 roundValues(dstPixels); in CIEXYZToRGBFloat()
697 roundValues(dstPixels); in CIEXYZToRGBDouble()
984 roundValues(dstPixels); in RGBToCIEXYZByte()
1060 roundValues(dstPixels); in RGBToCIEXYZShort()
1136 roundValues(dstPixels); in RGBToCIEXYZInt()
1206 roundValues(dstPixels); in RGBToCIEXYZFloat()
[all …]
H A DIHSColorSpace.java477 double[] dstPixels = null ; in fromRGBByte() local
602 double[] dstPixels = null ; in fromRGBShort() local
688 height, dstPixels) ; in fromRGBShort() local
727 double[] dstPixels = null ; in fromRGBInt() local
812 height, dstPixels) ; in fromRGBInt() local
846 double[] dstPixels = null ; in fromRGBFloat() local
931 height, dstPixels) ; in fromRGBFloat() local
965 double[] dstPixels = null ; in fromRGBDouble() local
1048 height, dstPixels) ; in fromRGBDouble() local
1146 double[] dstPixels = null ; in toRGBByte() local
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/core/
H A DSkConvertPixels.cpp56 void swizzle_and_multiply(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in swizzle_and_multiply() argument
85 proc((uint32_t*) dstPixels, srcPixels, dstInfo.width()); in swizzle_and_multiply()
86 dstPixels = SkTAddOffset<void>(dstPixels, dstRB); in swizzle_and_multiply()
122 static inline void apply_color_xform(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in apply_color_xform() argument
156 SkAssertResult(xform->apply(dstFormat, dstPixels, srcFormat, srcPixels, dstInfo.width(), in apply_color_xform()
158 dstPixels = SkTAddOffset<void>(dstPixels, dstRB); in apply_color_xform()
348 void SkConvertPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in SkConvertPixels() argument
365 swizzle_and_multiply(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB); in SkConvertPixels()
371 apply_color_xform(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, behavior); in SkConvertPixels()
377 convert_to_alpha8((uint8_t*) dstPixels, dstRB, srcInfo, srcPixels, srcRB, ctable); in SkConvertPixels()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/core/
H A DSkConfig8888.cpp228 bool SkPixelInfo::CopyPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in CopyPixels() argument
242 memcpy(dstPixels, srcPixels, bytes); in CopyPixels()
244 dstPixels = (char*)dstPixels + dstRB; in CopyPixels()
254 dstPI.fPixels = dstPixels; in CopyPixels()
284 SkRectMemcpy(dstPixels, dstRB, srcPixels, srcRB, width * srcInfo.bytesPerPixel(), height); in CopyPixels()
294 copy_g8_to_32(dstPixels, dstRB, srcPixels, srcRB, width, height); in CopyPixels()
298 copy_32_to_g8(dstPixels, dstRB, srcPixels, srcRB, srcInfo); in CopyPixels()
303 extract_alpha(dstPixels, dstRB, srcPixels, srcRB, srcInfo, ctable)) { in CopyPixels()
325 SkPMColor16* SK_RESTRICT dstRow = (SkPMColor16*)dstPixels; in CopyPixels()
337 dstPixels = (char*)dstPixels + dstRB; in CopyPixels()
[all …]
/dports/graphics/krita/krita-4.4.8/libs/pigment/
H A DKoBasicHistogramProducers.cpp118 quint8 *dstPixels = new quint8[nPixels * dstPixelSize]; in addRegionToBin() local
122 quint8 *dst = dstPixels; in addRegionToBin()
136 quint8 *dst = dstPixels; in addRegionToBin()
177 quint8 *dstPixels = new quint8[nPixels * dstPixelSize]; in addRegionToBin() local
179 quint8 *dst = dstPixels; in addRegionToBin()
249 quint8 *dstPixels = new quint8[nPixels * dstPixelSize]; in addRegionToBin() local
251 quint8 *dst = dstPixels; in addRegionToBin()
324 quint8 *dstPixels = new quint8[nPixels * dstPixelSize]; in addRegionToBin() local
326 quint8 *dst = dstPixels; in addRegionToBin()
505 quint8 *dst = dstPixels; in addRegionToBin()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/docs/examples/
H A DImage_readPixels.cpp10 std::vector<int32_t> dstPixels; in draw() local
11 dstPixels.resize(height * width * 4); in draw()
15 if (image->readPixels(nullptr, info, &dstPixels.front(), width * 4, x, y)) { in draw()
16 SkPixmap dstPixmap(info, &dstPixels.front(), width * 4); in draw()
H A DPixmap_readPixels_2.cpp14 std::vector<int32_t> dstPixels; in draw() local
15 dstPixels.resize(image->height() * rowBytes); in draw()
16 pixmap.readPixels(info, &dstPixels.front(), rowBytes, offset, 0); in draw()
18 SkPixmap dstmap(info, &dstPixels.front(), rowBytes); in draw()
H A DBitmap_readPixels.cpp21 std::vector<int16_t> dstPixels; in draw() local
22 dstPixels.resize(height * width); in draw()
23 bitmap.readPixels(dstInfo, &dstPixels.front(), width * 2, 0, 0); in draw()
24 SkPixmap dstPixmap(dstInfo, &dstPixels.front(), width * 2); in draw()
H A DPixmap_readPixels.cpp23 std::vector<int32_t> dstPixels; in draw() local
24 dstPixels.resize(height * width * 2); in draw()
26 srcPixmap.readPixels(dstInfo, &dstPixels.front(), width * 2); in draw()
27 SkPixmap dstPixmap(dstInfo, &dstPixels.front(), width * 2); in draw()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height]; in gaussianBlur() local
79 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
82 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
87 byte[] dstPixels = new byte[width * height]; in gaussianBlur()
90 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
93 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
116 private static void blur(int[] srcPixels, int[] dstPixels, in blur() argument
156 dstPixels[index] = ((ca > 255 ? 255 : ca) << 24) | in blur()
178 static void blur(byte[] srcPixels, byte[] dstPixels, in blur() argument
200 dstPixels[index] = (byte) (cp > 255 ? 255 : cp); in blur()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height]; in gaussianBlur() local
79 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
82 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
87 byte[] dstPixels = new byte[width * height]; in gaussianBlur()
90 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
93 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
116 private static void blur(int[] srcPixels, int[] dstPixels, in blur() argument
156 dstPixels[index] = ((ca > 255 ? 255 : ca) << 24) | in blur()
178 static void blur(byte[] srcPixels, byte[] dstPixels, in blur() argument
200 dstPixels[index] = (byte) (cp > 255 ? 255 : cp); in blur()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height]; in gaussianBlur() local
79 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
82 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
87 byte[] dstPixels = new byte[width * height]; in gaussianBlur()
90 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
93 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
116 private static void blur(int[] srcPixels, int[] dstPixels, in blur() argument
156 dstPixels[index] = ((ca > 255 ? 255 : ca) << 24) | in blur()
178 static void blur(byte[] srcPixels, byte[] dstPixels, in blur() argument
200 dstPixels[index] = (byte) (cp > 255 ? 255 : cp); in blur()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height]; in gaussianBlur() local
79 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
82 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
87 byte[] dstPixels = new byte[width * height]; in gaussianBlur()
90 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
93 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
116 private static void blur(int[] srcPixels, int[] dstPixels, in blur() argument
156 dstPixels[index] = ((ca > 255 ? 255 : ca) << 24) | in blur()
178 static void blur(byte[] srcPixels, byte[] dstPixels, in blur() argument
200 dstPixels[index] = (byte) (cp > 255 ? 255 : cp); in blur()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height]; in gaussianBlur() local
79 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
82 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
87 byte[] dstPixels = new byte[width * height]; in gaussianBlur()
90 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
93 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
116 private static void blur(int[] srcPixels, int[] dstPixels, in blur() argument
156 dstPixels[index] = ((ca > 255 ? 255 : ca) << 24) | in blur()
178 static void blur(byte[] srcPixels, byte[] dstPixels, in blur() argument
200 dstPixels[index] = (byte) (cp > 255 ? 255 : cp); in blur()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height]; in gaussianBlur() local
79 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
82 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
87 byte[] dstPixels = new byte[width * height]; in gaussianBlur()
90 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
93 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
116 private static void blur(int[] srcPixels, int[] dstPixels, in blur() argument
156 dstPixels[index] = ((ca > 255 ? 255 : ca) << 24) | in blur()
178 static void blur(byte[] srcPixels, byte[] dstPixels, in blur() argument
200 dstPixels[index] = (byte) (cp > 255 ? 255 : cp); in blur()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height]; in gaussianBlur() local
79 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
82 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
87 byte[] dstPixels = new byte[width * height]; in gaussianBlur()
90 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
93 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
116 private static void blur(int[] srcPixels, int[] dstPixels, in blur() argument
156 dstPixels[index] = ((ca > 255 ? 255 : ca) << 24) | in blur()
178 static void blur(byte[] srcPixels, byte[] dstPixels, in blur() argument
200 dstPixels[index] = (byte) (cp > 255 ? 255 : cp); in blur()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height]; in gaussianBlur() local
79 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
82 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
87 byte[] dstPixels = new byte[width * height]; in gaussianBlur()
90 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
93 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
116 private static void blur(int[] srcPixels, int[] dstPixels, in blur() argument
156 dstPixels[index] = ((ca > 255 ? 255 : ca) << 24) | in blur()
178 static void blur(byte[] srcPixels, byte[] dstPixels, in blur() argument
200 dstPixels[index] = (byte) (cp > 255 ? 255 : cp); in blur()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height]; in gaussianBlur() local
79 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
82 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
87 byte[] dstPixels = new byte[width * height]; in gaussianBlur()
90 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
93 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
116 private static void blur(int[] srcPixels, int[] dstPixels, in blur() argument
156 dstPixels[index] = ((ca > 255 ? 255 : ca) << 24) | in blur()
178 static void blur(byte[] srcPixels, byte[] dstPixels, in blur() argument
200 dstPixels[index] = (byte) (cp > 255 ? 255 : cp); in blur()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DEffectUtils.java76 int[] dstPixels = new int[width * height]; in gaussianBlur() local
79 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
82 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
87 byte[] dstPixels = new byte[width * height]; in gaussianBlur()
90 blur(srcPixels, dstPixels, width, height, kernel, radius); in gaussianBlur()
93 blur(dstPixels, srcPixels, height, width, kernel, radius); in gaussianBlur()
116 private static void blur(int[] srcPixels, int[] dstPixels, in blur() argument
156 dstPixels[index] = ((ca > 255 ? 255 : ca) << 24) | in blur()
178 static void blur(byte[] srcPixels, byte[] dstPixels, in blur() argument
200 dstPixels[index] = (byte) (cp > 255 ? 255 : cp); in blur()
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/core/
H A DSkConvertPixels.cpp17 static bool rect_memcpy(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in rect_memcpy() argument
29 SkRectMemcpy(dstPixels, dstRB, in rect_memcpy()
34 static bool swizzle_or_premul(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in swizzle_or_premul() argument
63 fn((uint32_t*)dstPixels, (const uint32_t*)srcPixels, dstInfo.width()); in swizzle_or_premul()
64 dstPixels = SkTAddOffset<void>(dstPixels, dstRB); in swizzle_or_premul()
220 void SkConvertPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in SkConvertPixels() argument
229 if (fn(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps)) { in SkConvertPixels()
233 convert_with_pipeline(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps); in SkConvertPixels()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/core/
H A DSkConvertPixels.cpp17 static bool rect_memcpy(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in rect_memcpy() argument
29 SkRectMemcpy(dstPixels, dstRB, in rect_memcpy()
34 static bool swizzle_or_premul(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in swizzle_or_premul() argument
63 fn((uint32_t*)dstPixels, (const uint32_t*)srcPixels, dstInfo.width()); in swizzle_or_premul()
64 dstPixels = SkTAddOffset<void>(dstPixels, dstRB); in swizzle_or_premul()
220 void SkConvertPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in SkConvertPixels() argument
229 if (fn(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps)) { in SkConvertPixels()
233 convert_with_pipeline(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps); in SkConvertPixels()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/core/
H A DSkConvertPixels.cpp17 static bool rect_memcpy(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in rect_memcpy() argument
29 SkRectMemcpy(dstPixels, dstRB, in rect_memcpy()
34 static bool swizzle_or_premul(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in swizzle_or_premul() argument
63 fn((uint32_t*)dstPixels, (const uint32_t*)srcPixels, dstInfo.width()); in swizzle_or_premul()
64 dstPixels = SkTAddOffset<void>(dstPixels, dstRB); in swizzle_or_premul()
222 void SkConvertPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in SkConvertPixels() argument
231 if (fn(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps)) { in SkConvertPixels()
235 convert_with_pipeline(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps); in SkConvertPixels()
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/core/
H A DSkConvertPixels.cpp17 static bool rect_memcpy(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in rect_memcpy() argument
29 SkRectMemcpy(dstPixels, dstRB, in rect_memcpy()
34 static bool swizzle_or_premul(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in swizzle_or_premul() argument
63 fn((uint32_t*)dstPixels, (const uint32_t*)srcPixels, dstInfo.width()); in swizzle_or_premul()
64 dstPixels = SkTAddOffset<void>(dstPixels, dstRB); in swizzle_or_premul()
220 void SkConvertPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in SkConvertPixels() argument
229 if (fn(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps)) { in SkConvertPixels()
233 convert_with_pipeline(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps); in SkConvertPixels()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/core/
H A DSkConvertPixels.cpp17 static bool rect_memcpy(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in rect_memcpy() argument
29 SkRectMemcpy(dstPixels, dstRB, in rect_memcpy()
34 static bool swizzle_or_premul(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in swizzle_or_premul() argument
63 fn((uint32_t*)dstPixels, (const uint32_t*)srcPixels, dstInfo.width()); in swizzle_or_premul()
64 dstPixels = SkTAddOffset<void>(dstPixels, dstRB); in swizzle_or_premul()
220 void SkConvertPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in SkConvertPixels() argument
229 if (fn(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps)) { in SkConvertPixels()
233 convert_with_pipeline(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps); in SkConvertPixels()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/core/
H A DSkConvertPixels.cpp17 static bool rect_memcpy(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in rect_memcpy() argument
29 SkRectMemcpy(dstPixels, dstRB, in rect_memcpy()
34 static bool swizzle_or_premul(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in swizzle_or_premul() argument
63 fn((uint32_t*)dstPixels, (const uint32_t*)srcPixels, dstInfo.width()); in swizzle_or_premul()
64 dstPixels = SkTAddOffset<void>(dstPixels, dstRB); in swizzle_or_premul()
222 void SkConvertPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRB, in SkConvertPixels() argument
231 if (fn(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps)) { in SkConvertPixels()
235 convert_with_pipeline(dstInfo, dstPixels, dstRB, srcInfo, srcPixels, srcRB, steps); in SkConvertPixels()

1234567891011