HomeSort by relevance Sort by last modified time
    Searched defs:rgba (Results 26 - 50 of 93) sorted by null

12 3 4

  /external/opencv3/modules/java/generator/src/java/
android+JavaCameraView.java 303 public Mat rgba() { method in class:JavaCameraView.JavaCameraFrame
android+CameraBridgeViewBase.java 49 protected int mPreviewFormat = RGBA;
57 public static final int RGBA = 1;
156 case RGBA:
157 result = mOldStyleListener.onCameraFrame(inputFrame.rgba());
163 Log.e(TAG, "Invalid frame format! Only RGBA and Gray Scale are supported!");
173 private int mPreviewFormat = RGBA;
184 * This method returns RGBA Mat with frame
186 public Mat rgba(); method in interface:CameraBridgeViewBase.CvCameraViewFrame
395 modified = frame.rgba();
  /external/skia/src/opts/
SkSwizzler_opts.h 199 uint8x8x4_t rgba = vld4_u8((const uint8_t*) src); local
201 uint8x8_t a = rgba.val[3],
202 b = rgba.val[2],
203 g = rgba.val[1],
204 r = rgba.val[0];
213 rgba.val[2] = r;
214 rgba.val[1] = g;
215 rgba.val[0] = b;
217 rgba.val[2] = b;
218 rgba.val[1] = g
244 uint8x16x4_t rgba = vld4q_u8((const uint8_t*) src); local
258 uint8x8x4_t rgba = vld4_u8((const uint8_t*) src); local
281 uint8x16x4_t rgba; local
304 uint8x8x4_t rgba; local
342 uint8x16x4_t rgba; local
360 uint8x8x4_t rgba; local
391 uint8x16x4_t rgba; local
414 uint8x8x4_t rgba; local
581 __m128i rgba = _mm_loadu_si128((const __m128i*) src); local
613 __m128i rgba = _mm_or_si128(_mm_shuffle_epi8(rgb, expand), alphaMask); local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
BitmapFontCache.java 151 int rgba = NumberUtils.floatToIntColor(c); local
152 rgba = (rgba & 0x00FFFFFF) | alphaBits;
153 newColor = NumberUtils.intToFloatColor(rgba);
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug.c 615 float *rgba; local
620 rgba = MALLOC(transfer->box.width *
624 if(!rgba)
629 rgba);
633 rgba, transfer->box.width);
635 FREE(rgba);
643 float *rgba, unsigned stride)
650 if(!rgba)
680 float *ptr = rgba + (stride * y * 4);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_texture.c 642 GLfloat *rgba; local
644 rgba = (GLfloat *) malloc(width * 4 * sizeof(GLfloat));
645 if (!rgba) {
658 /* get float[4] rgba row from surface */
660 pformat, rgba);
662 _mesa_pack_rgba_span_float(ctx, width, (GLfloat (*)[4]) rgba, format,
666 free(rgba);
696 * Note that we only expect RGBA formats (no Z/depth formats).
790 /* RGBA format */
804 /* get float/RGBA image from framebuffer *
    [all...]
  /external/opencv3/3rdparty/libwebp/webp/
decode.h 48 // Decodes WebP images pointed to by 'data' and returns RGBA samples, along
135 // RGBA-4444 and RGB-565 colorspaces are represented by following byte-order:
136 // RGBA-4444: [r3 r2 r1 r0 g3 g2 g1 g0], [b3 b2 b1 b0 a3 a2 a1 a0], ...
140 // RGBA-4444: [b3 b2 b1 b0 a3 a2 a1 a0], [r3 r2 r1 r0 g3 g2 g1 g0], ...
177 struct WebPRGBABuffer { // view as RGBA
178 uint8_t* rgba; // pointer to RGBA samples member in struct:WebPRGBABuffer
180 size_t size; // total size of the *rgba buffer.
199 WebPRGBABuffer RGBA;
270 // stride of output_buffer.u.RGBA or output_buffer.u.YUVA, provided they remai
    [all...]
  /external/opencv3/modules/imgproc/test/
test_cvtyuv.cpp 301 Vec4b rgba = rgb.at<Vec4b>(row, col); local
302 return RGB(rgba[0], rgba[1], rgba[2]);
312 Vec4b rgba = rgb.at<Vec4b>(row, col); local
313 return RGB(rgba[2], rgba[1], rgba[0]);
  /external/opencv3/samples/android/image-manipulations/src/org/opencv/samples/imagemanipulations/
ImageManipulationsActivity.java 132 mItemPreviewRGBA = menu.add("Preview RGBA");
202 Mat rgba = inputFrame.rgba(); local
203 Size sizeRgba = rgba.size();
227 Imgproc.calcHist(Arrays.asList(rgba), mChannels[c], mMat0, hist, mHistSize, mRanges);
234 Imgproc.line(rgba, mP1, mP2, mColorsRGB[c], thikness);
238 Imgproc.cvtColor(rgba, mIntermediateMat, Imgproc.COLOR_RGB2HSV_FULL);
247 Imgproc.line(rgba, mP1, mP2, mWhilte, thikness);
257 Imgproc.line(rgba, mP1, mP2, mColorsHue[h], thikness);
262 rgbaInnerWindow = rgba.submat(top, top + height, left, left + width)
    [all...]
  /external/skia/src/effects/
SkPerlinNoiseShader.cpp 424 U8CPU rgba[4]; local
426 rgba[channel] = SkScalarFloorToInt(255 *
429 return SkPreMultiplyARGB(rgba[3], rgba[0], rgba[1], rgba[2]);
632 // This is the math to convert the two 16bit integer packed into rgba 8 bit input into a
    [all...]
  /external/webp/include/webp/
decode.h 48 // Decodes WebP images pointed to by 'data' and returns RGBA samples, along
138 // RGBA-4444 and RGB-565 colorspaces are represented by following byte-order:
139 // RGBA-4444: [r3 r2 r1 r0 g3 g2 g1 g0], [b3 b2 b1 b0 a3 a2 a1 a0], ...
143 // RGBA-4444: [b3 b2 b1 b0 a3 a2 a1 a0], [r3 r2 r1 r0 g3 g2 g1 g0], ...
180 struct WebPRGBABuffer { // view as RGBA
181 uint8_t* rgba; // pointer to RGBA samples member in struct:WebPRGBABuffer
183 size_t size; // total size of the *rgba buffer.
202 WebPRGBABuffer RGBA;
273 // stride of output_buffer.u.RGBA or output_buffer.u.YUVA, provided they remai
    [all...]
  /external/webp/src/webp/
decode.h 48 // Decodes WebP images pointed to by 'data' and returns RGBA samples, along
138 // RGBA-4444 and RGB-565 colorspaces are represented by following byte-order:
139 // RGBA-4444: [r3 r2 r1 r0 g3 g2 g1 g0], [b3 b2 b1 b0 a3 a2 a1 a0], ...
143 // RGBA-4444: [b3 b2 b1 b0 a3 a2 a1 a0], [r3 r2 r1 r0 g3 g2 g1 g0], ...
180 struct WebPRGBABuffer { // view as RGBA
181 uint8_t* rgba; // pointer to RGBA samples member in struct:WebPRGBABuffer
183 size_t size; // total size of the *rgba buffer.
202 WebPRGBABuffer RGBA;
273 // stride of output_buffer.u.RGBA or output_buffer.u.YUVA, provided they remai
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 545 int rgba = ImageUtils.getColor(value); local
547 return ImageUtils.intToRgb(rgba);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ImageProcessingTest.java 268 byte[] rgba = func[type].filter(src[i], src[i + 1], src[i + 2], src[i + 3],
270 dst[i] = rgba[0];
271 dst[i + 1] = rgba[1];
272 dst[i + 2] = rgba[2];
273 dst[i + 3] = rgba[3];
285 byte[] rgba = new byte[4]; field in class:ImageProcessingTest.BlendFunc
302 rgba[0] = (byte) ir;
303 rgba[1] = (byte) ig;
304 rgba[2] = (byte) ib;
305 rgba[3] = (byte) ia
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress_fxt1.c 55 GLint i, GLint j, GLubyte *rgba);
126 /* convert image to RGBA/GLubyte */
164 GLubyte rgba[4]; local
166 fxt1_decode_1(texImage->Map, texImage->RowStride, i, j, rgba);
167 texel[RCOMP] = UBYTE_TO_FLOAT(rgba[RCOMP]);
168 texel[GCOMP] = UBYTE_TO_FLOAT(rgba[GCOMP]);
169 texel[BCOMP] = UBYTE_TO_FLOAT(rgba[BCOMP]);
170 texel[ACOMP] = UBYTE_TO_FLOAT(rgba[ACOMP]);
179 GLubyte rgba[4]; local
181 fxt1_decode_1(texImage->Map, texImage->RowStride, i, j, rgba);
    [all...]
  /external/webp/src/dsp/
lossless_sse2.c 262 const __m128i rgba = _mm_unpacklo_epi8(rgba1, rgba0); // barg0...barg7 local
264 const __m128i rgba = _mm_unpacklo_epi8(rgba0, rgba1); // rgba0...rgba7 local
266 _mm_storeu_si128(out++, rgba);
301 const __m128i rgba = _mm_unpacklo_epi8(gb1, rg1); // rggb0...rggb7 local
303 const __m128i rgba = _mm_unpacklo_epi8(rg1, gb1); // bgrb0...bgrb7 local
305 _mm_storeu_si128(out++, rgba);
  /external/webrtc/webrtc/base/
x11windowpicker.cc 316 uint8_t* rgba = ArgbToRgba(&data_ptr[2], 0, 0, w, h, w, h, true); local
320 return rgba;
585 uint32_t rgba; local
587 rgba = (argb << 8) | (argb >> 24);
588 *p = rgba >> 24;
590 *p = (rgba >> 16) & 0xff;
592 *p = (rgba >> 8) & 0xff;
594 *p = has_alpha ? rgba & 0xFF : 0xFF;
  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreeType.java 618 int rgba = Color.rgba8888(color); local
630 dstRow[x + ii] = rgba;
639 int rgb = rgba & 0xffffff00;
640 int a = rgba & 0xff;
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_exec.c 1729 float rgba[TGSI_NUM_CHANNELS][TGSI_QUAD_SIZE]; local
2003 float rgba[TGSI_NUM_CHANNELS][TGSI_QUAD_SIZE]; local
    [all...]
  /external/opencv3/3rdparty/libwebp/dec/
vp8l.c 406 int rgba_stride, uint8_t* const rgba) {
411 uint8_t* const dst = rgba + num_lines_out * rgba_stride;
662 if (output->colorspace < MODE_YUV) { // convert to RGBA
663 const WebPRGBABuffer* const buf = &output->u.RGBA;
664 uint8_t* const rgba = buf->rgba + dec->last_out_row_ * buf->stride; local
667 rgba, buf->stride) :
669 io->mb_w, io->mb_h, rgba, buf->stride);
    [all...]
  /external/webp/src/dec/
vp8l.c 524 int rgba_stride, uint8_t* const rgba) {
529 uint8_t* const dst = rgba + num_lines_out * rgba_stride;
744 const int in_stride = io->width * sizeof(uint32_t); // in unit of RGBA
749 if (WebPIsRGBMode(output->colorspace)) { // convert to RGBA
750 const WebPRGBABuffer* const buf = &output->u.RGBA;
751 uint8_t* const rgba = buf->rgba + dec->last_out_row_ * buf->stride; local
754 rgba, buf->stride) :
756 io->mb_w, io->mb_h, rgba, buf->stride);
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/24.5.0/
ddmlib-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/25.0.0-alpha1/
ddmlib-25.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/25.0.0-alpha3/
ddmlib-25.0.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/25.2.0/
ddmlib-25.2.0.jar 

Completed in 1067 milliseconds

12 3 4