HomeSort by relevance Sort by last modified time
    Searched full:premultiplied (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /external/autotest/client/deps/webgl_perf/files/
webgl-performance-0.0.2.tar.bz2 
  /external/skia/include/client/android/
SkPixelXorXfermode.h 14 This transformation does not follow premultiplied conventions, therefore
  /external/skia/src/core/
SkPM4f.h 14 * The float values are 0...1 premultiplied
  /prebuilts/go/darwin-x86/src/image/color/
color.go 8 // Color can convert itself to alpha-premultiplied 16-bits per channel RGBA.
11 // RGBA returns the alpha-premultiplied red, green, blue and alpha values
16 // An alpha-premultiplied color component c has been scaled by alpha (a),
21 // RGBA represents a traditional 32-bit alpha-premultiplied color, having 8
24 // An alpha-premultiplied color component C has been scaled by alpha (A), so
42 // RGBA64 represents a 64-bit alpha-premultiplied color, having 16 bits for
45 // An alpha-premultiplied color component C has been scaled by alpha (A), so
55 // NRGBA represents a non-alpha-premultiplied 32-bit color.
78 // NRGBA64 represents a non-alpha-premultiplied 64-bit color,
203 // Since Color.RGBA returns a alpha-premultiplied color, we should have r <= a && g <= a && b <= a
    [all...]
  /prebuilts/go/linux-x86/src/image/color/
color.go 8 // Color can convert itself to alpha-premultiplied 16-bits per channel RGBA.
11 // RGBA returns the alpha-premultiplied red, green, blue and alpha values
16 // An alpha-premultiplied color component c has been scaled by alpha (a),
21 // RGBA represents a traditional 32-bit alpha-premultiplied color, having 8
24 // An alpha-premultiplied color component C has been scaled by alpha (A), so
42 // RGBA64 represents a 64-bit alpha-premultiplied color, having 16 bits for
45 // An alpha-premultiplied color component C has been scaled by alpha (A), so
55 // NRGBA represents a non-alpha-premultiplied 32-bit color.
78 // NRGBA64 represents a non-alpha-premultiplied 64-bit color,
203 // Since Color.RGBA returns a alpha-premultiplied color, we should have r <= a && g <= a && b <= a
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapPixels.java 40 // access the red component from a premultiplied color
42 // access the red component from a premultiplied color
44 // access the red component from a premultiplied color
46 // access the red component from a premultiplied color
50 * This takes components that are already in premultiplied form, and
71 * Turn a color int into a premultiplied device color
  /external/skia/samplecode/
SampleUnpremul.cpp 31 * premultiplied equivalent.
103 // Name, size of the file, and whether or not it is premultiplied.
106 (fPremul ? "premultiplied" : "unpremultiplied"));
115 header.printf("Press '%c' to toggle premultiplied decode.", fTogglePremulChar);
121 // A premultiplied bitmap cannot currently be drawn.
124 // to premultiplied:
  /external/libgdx/backends/gdx-backends-gwt/src/com/google/gwt/webgl/client/
WebGLContextAttributes.java 73 /** Default: true. If the value is true the page compositor will assume the drawing buffer contains colors with premultiplied
74 * alpha. If the value is false the page compositor will assume that colors in the drawing buffer are not premultiplied. This
75 * flag is ignored if the alpha flag is false. See Premultiplied Alpha for more information on the effects of the
  /external/skia/include/effects/
SkTableColorFilter.h 23 * colors are premultiplied, they are temporarily unpremultiplied, then
  /external/skia/tests/
GpuColorFilterTest.cpp 60 // Note: below, SkColors are non-premultiplied, where as GrColors are premultiplied.
ARGBImageEncoderTest.cpp 26 // kHeight rows, each with kWidth pixels, premultiplied ARGB for each pixel
  /external/mesa3d/src/gallium/state_trackers/vega/
vg_translate.h 35 * (the premultiplied ones) so currently it won't work */
  /external/skia/include/core/
SkColorTable.h 20 SkColorTable holds an array SkPMColors (premultiplied 32-bit colors) used by
SkColor.h 22 /** 32 bit ARGB color value, not premultiplied. The color components are always in
142 /** 32 bit ARGB color value, premultiplied. The byte order for this value is
157 /** Define a function pointer type for combining two premultiplied colors
SkColorFilter.h 133 * The fragment processor receives a premultiplied input color and produces a premultiplied
  /frameworks/native/services/surfaceflinger/RenderEngine/
Description.h 40 // whether textures are premultiplied
  /external/skia/include/gpu/
GrColor.h 21 * premultiplied or not depends on the context in which it is being used.
74 * Since premultiplied means that alpha >= color, we construct a color with
83 * Assert in debug builds that a GrColor is premultiplied.
  /external/skia/src/effects/
SkLumaColorFilter.cpp 26 * While LuminanceToAlpha is defined to operate on un-premultiplied
  /external/opencv3/modules/java/generator/src/java/
android+Utils.java 86 * @param unPremultiplyAlpha is a flag, that determines, whether the bitmap needs to be converted from alpha premultiplied format (like Android keeps 'ARGB_8888' ones) to regular one; this flag is ignored for 'RGB_565' bitmaps.
116 * @param premultiplyAlpha is a flag, that determines, whether the Mat needs to be converted to alpha premultiplied format (like Android keeps 'ARGB_8888' bitmaps); the flag is ignored for 'RGB_565' bitmaps.
  /external/skia/src/gpu/
SkGrPriv.h 59 should expect an unpremul input color and produce a premultiplied output color. There is
78 the expectation is that the primitive color will be premultiplied, though it really should be
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameImage2D.java 54 * that the colors are premultiplied with the alpha channel. If you wish to have
55 * non-premultiplied colors, you must pass the Frame through an
  /prebuilts/go/darwin-x86/src/image/
image_test.go 92 c := cm.Convert(color.RGBA64{0x1234, 0x1234, 0x1234, 0x1234}) // Premultiplied alpha.
106 m.Set(1, 2, color.NRGBA64{0xffff, 0xffff, 0xffff, 0x1357}) // Non-premultiplied alpha.
  /prebuilts/go/linux-x86/src/image/
image_test.go 92 c := cm.Convert(color.RGBA64{0x1234, 0x1234, 0x1234, 0x1234}) // Premultiplied alpha.
106 m.Set(1, 2, color.NRGBA64{0xffff, 0xffff, 0xffff, 0x1357}) // Non-premultiplied alpha.
  /external/deqp/doc/testspecs/GLES31/
functional.blend_equation_advanced.txt 35 + Non-premultiplied / invalid color inputs
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
ImagePanel.java 83 JButton defaultPremultButton = new JButton("Default (Premultiplied Alpha)");

Completed in 2481 milliseconds

1 2 3 4 5 6