/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/ |
D | levels.rsh | 26 float3 pixel = convert_float4(in).rgb; 27 pixel = rsMatrixMultiply(&colorMat, pixel); 28 pixel = clamp(pixel, 0.f, 255.f); 29 pixel = (pixel - inBlack) * overInWMinInB; 30 pixel = pixel * outWMinOutB + outBlack; 31 pixel = clamp(pixel, 0.f, 255.f); 32 out.xyz = convert_uchar3(pixel); 38 float4 pixel = convert_float4(in); 39 pixel.rgb = rsMatrixMultiply(&colorMat, pixel.rgb); 40 pixel = clamp(pixel, 0.f, 255.f); [all …]
|
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/ |
D | levels.rsh | 26 float3 pixel = convert_float4(in).rgb; 27 pixel = rsMatrixMultiply(&colorMat, pixel); 28 pixel = clamp(pixel, 0.f, 255.f); 29 pixel = (pixel - inBlack) * overInWMinInB; 30 pixel = pixel * outWMinOutB + outBlack; 31 pixel = clamp(pixel, 0.f, 255.f); 32 out.xyz = convert_uchar3(pixel); 38 float4 pixel = convert_float4(in); 39 pixel.rgb = rsMatrixMultiply(&colorMat, pixel.rgb); 40 pixel = clamp(pixel, 0.f, 255.f); [all …]
|
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/ |
D | levels.rsh | 26 float3 pixel = convert_float4(in).rgb; 27 pixel = rsMatrixMultiply(&colorMat, pixel); 28 pixel = clamp(pixel, 0.f, 255.f); 29 pixel = (pixel - inBlack) * overInWMinInB; 30 pixel = pixel * outWMinOutB + outBlack; 31 pixel = clamp(pixel, 0.f, 255.f); 32 out.xyz = convert_uchar3(pixel); 38 float4 pixel = convert_float4(in); 39 pixel.rgb = rsMatrixMultiply(&colorMat, pixel.rgb); 40 pixel = clamp(pixel, 0.f, 255.f); [all …]
|
/frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/ |
D | levels_f.rsh | 26 float3 pixel = convert_float4(in).rgb; 27 pixel = rsMatrixMultiply(&colorMat, pixel); 28 pixel = clamp(pixel, 0.f, 255.f); 29 pixel = (pixel - inBlack) * overInWMinInB; 30 pixel = pixel * outWMinOutB + outBlack; 31 pixel = clamp(pixel, 0.f, 255.f); 32 out.xyz = convert_uchar3(pixel); 49 float4 pixel; 50 pixel.rgb = rsMatrixMultiply(&colorMat, in.rgb); 51 pixel = clamp(pixel, 0.f, 255.f); [all …]
|
/frameworks/base/tests/touchlag/ |
D | touchlag.cpp | 50 void clearBuffer(Buffer* buf, uint32_t pixel) { in clearBuffer() argument 51 android_memset32(buf->pixels, pixel, buf->s * buf->h * 4); in clearBuffer() 54 void drawTwoPixels(Buffer* buf, uint32_t pixel, ssize_t x, ssize_t y, size_t w) { in drawTwoPixels() argument 58 bits[x] = pixel; in drawTwoPixels() 62 bits[x+W] = pixel; in drawTwoPixels() 67 void drawHLine(Buffer* buf, uint32_t pixel, ssize_t x, ssize_t y, size_t w) { in drawHLine() argument 79 android_memset32(bits, pixel, W*4); in drawHLine() 84 void drawRect(Buffer* buf, uint32_t pixel, ssize_t x, ssize_t y, size_t w, size_t h) { in drawRect() argument 99 android_memset32(bits, pixel, W*4); in drawRect() 105 void drawCircle(Buffer* buf, uint32_t pixel, in drawCircle() argument [all …]
|
/frameworks/base/media/mca/filterpacks/native/imageproc/ |
D | brightness.c | 82 Pixel pixel; in brightness_process() local 84 pixel.value = *(input_ptr++); in brightness_process() 86 const short r = (pixel.rgba[0] * factor) / 255; in brightness_process() 87 const short g = (pixel.rgba[1] * factor) / 255; in brightness_process() 88 const short b = (pixel.rgba[2] * factor) / 255; in brightness_process() 93 | (pixel.rgba[3] << 24); in brightness_process()
|
/frameworks/layoutlib/bridge/src/android/graphics/ |
D | BlendComposite.java | 159 int pixel = srcPixels[x]; in compose() local 160 srcPixel[0] = (pixel >> 16) & 0xFF; in compose() 161 srcPixel[1] = (pixel >> 8) & 0xFF; in compose() 162 srcPixel[2] = (pixel ) & 0xFF; in compose() 163 srcPixel[3] = (pixel >> 24) & 0xFF; in compose() 165 pixel = dstPixels[x]; in compose() 166 dstPixel[0] = (pixel >> 16) & 0xFF; in compose() 167 dstPixel[1] = (pixel >> 8) & 0xFF; in compose() 168 dstPixel[2] = (pixel ) & 0xFF; in compose() 169 dstPixel[3] = (pixel >> 24) & 0xFF; in compose()
|
/frameworks/native/opengl/tests/hwc/ |
D | hwcTestLib.cpp | 578 uint32_t pixel; in hwcTestColor2Pixel() local 579 pixel = htonl((uint32_t) round((((1 << attrib->c1Size) - 1) * color.c1())) in hwcTestColor2Pixel() 580 << ((sizeof(pixel) * BITSPERBYTE) in hwcTestColor2Pixel() 582 pixel |= htonl((uint32_t) round((((1 << attrib->c2Size) - 1) * color.c2())) in hwcTestColor2Pixel() 583 << ((sizeof(pixel) * BITSPERBYTE) in hwcTestColor2Pixel() 585 pixel |= htonl((uint32_t) round((((1 << attrib->c3Size) - 1) * color.c3())) in hwcTestColor2Pixel() 586 << ((sizeof(pixel) * BITSPERBYTE) in hwcTestColor2Pixel() 589 pixel |= htonl((uint32_t) round((((1 << attrib->aSize) - 1) * alpha)) in hwcTestColor2Pixel() 590 << ((sizeof(pixel) * BITSPERBYTE) in hwcTestColor2Pixel() 594 pixel = ntohl(pixel); in hwcTestColor2Pixel() [all …]
|
/frameworks/native/services/surfaceflinger/tests/hwc2/ |
D | Hwc2TestPixelComparator.cpp | 32 uint32_t pixel = 0; in getPixel() local 33 pixel |= r; in getPixel() 34 pixel |= g << 8; in getPixel() 35 pixel |= b << 16; in getPixel() 36 pixel |= a << 24; in getPixel() 37 return pixel; in getPixel()
|
/frameworks/base/packages/SystemUI/res/raw/ |
D | image_wallpaper_fragment_shader.glsl | 18 * Calculates the relative luminance of the pixel. 26 // Getting the luminance for this pixel 43 * That means that remaps black and white image pixel 44 * from a possible values of [0,1] to [per85, 1] (if the pixel is darker than per85, 48 * That means that remaps each image pixel color (rgb) 49 * from a possible values of [0,1] to [lower, 1] (if the pixel color is darker than 'lower', 61 * Fades in the pixel value: 73 // gets the pixel value of the wallpaper for this uv coordinates on screen.
|
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
D | ImageCompare.java | 30 private static double luma(int pixel) { in luma() argument 31 final int R = Color.red(pixel); in luma() 32 final int G = Color.green(pixel); in luma() 33 final int B = Color.blue(pixel); in luma()
|
D | pixel_format_f32.rsh | 4 // FocusPixel is the pixel format in the input image, which serves the 11 // whether or not a pixel is on the current target layer. For pixels that are 12 // active or not active but "close enough" to an active pixel, a matte value is 33 // active = 1: the pixel is on the target layer;
|
D | layered_filter_f32_helper.rsh | 12 // @param x x-coordinate of a pixel in a padded image. 13 // @param y y-coordinate of a pixel in a padded image. 16 // active pixel to (x,y). Sets the closest distance to sharp->matte and sets the 17 // depth of the closest pixel to sharp->dilated_depth. 29 // Initializes the minimum distance from this pixel to the active pixels on 44 // Whether or not this is an active pixel with a smaller distance. 79 // Locates the top left corner of the window surrounding this pixel. 127 // Locates the top left corner of the window surrounding this pixel. 164 // Locates the top left corner of the window surrounding this pixel.
|
D | layered_filter_d1new_helper.rsh | 29 // @param x x-coordinate of a pixel in a padded image. 30 // @param y y-coordinate of a pixel in a padded image. 33 // active pixel to (x,y). Sets the closest distance to sharp->matte and sets the 34 // depth of the closest pixel to sharp->dilated_depth. 48 // Initializes the minimum distance from this pixel to the active pixels on 64 // Whether or not this is an active pixel with a smaller distance. 89 // Initializes the minimum distance from this pixel to the active pixels on 105 // Whether or not this is an active pixel with a smaller distance. 139 // Locates the top left corner of the window surrounding this pixel. 190 // Locates the top left corner index of the window surrounding this pixel. [all …]
|
/frameworks/native/cmds/surfacereplayer/replayer/ |
D | BufferQueueScheduler.cpp | 96 uint8_t* pixel = img + (4 * (y * outBuffer.stride + x)); in fillSurface() local 97 pixel[0] = color.r; in fillSurface() 98 pixel[1] = color.g; in fillSurface() 99 pixel[2] = color.b; in fillSurface() 100 pixel[3] = LAYER_ALPHA; in fillSurface()
|
/frameworks/native/libs/gui/tests/ |
D | GLTest.cpp | 179 GLubyte pixel[4]; in checkPixel() local 181 glReadPixels(x, y, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, pixel); in checkPixel() 190 if (r >= 0 && abs(r - int(pixel[0])) > tolerance) { in checkPixel() 191 msg += String8::format("r(%d isn't %d)", pixel[0], r); in checkPixel() 193 if (g >= 0 && abs(g - int(pixel[1])) > tolerance) { in checkPixel() 197 msg += String8::format("g(%d isn't %d)", pixel[1], g); in checkPixel() 199 if (b >= 0 && abs(b - int(pixel[2])) > tolerance) { in checkPixel() 203 msg += String8::format("b(%d isn't %d)", pixel[2], b); in checkPixel() 205 if (a >= 0 && abs(a - int(pixel[3])) > tolerance) { in checkPixel() 209 msg += String8::format("a(%d isn't %d)", pixel[3], a); in checkPixel()
|
/frameworks/base/media/mca/filterfw/jni/ |
D | jni_native_frame.cpp | 189 const Pixel pixel = *(src_ptr++); in Java_android_filterfw_core_NativeFrame_setNativeBitmap() local 190 *(dst_ptr++) = (pixel.rgba[0] + pixel.rgba[1] + pixel.rgba[2]) / 3; in Java_android_filterfw_core_NativeFrame_setNativeBitmap() 196 const Pixel pixel = *(src_ptr++); in Java_android_filterfw_core_NativeFrame_setNativeBitmap() local 197 *(dst_ptr++) = pixel.rgba[0]; in Java_android_filterfw_core_NativeFrame_setNativeBitmap() 198 *(dst_ptr++) = pixel.rgba[1]; in Java_android_filterfw_core_NativeFrame_setNativeBitmap() 199 *(dst_ptr++) = pixel.rgba[2]; in Java_android_filterfw_core_NativeFrame_setNativeBitmap()
|
/frameworks/base/core/tests/coretests/src/android/hardware/display/ |
D | VirtualDisplayTest.java | 454 int pixel = 0; in scanImage() local 455 pixel |= (buffer.get(offset) & 0xff) << 16; // R in scanImage() 456 pixel |= (buffer.get(offset + 1) & 0xff) << 8; // G in scanImage() 457 pixel |= (buffer.get(offset + 2) & 0xff); // B in scanImage() 458 pixel |= (buffer.get(offset + 3) & 0xff) << 24; // A in scanImage() 459 if (pixel == Color.BLACK || pixel == 0) { in scanImage() 461 } else if (pixel == BLUEISH) { in scanImage() 463 } else if (pixel == GREENISH) { in scanImage() 468 Log.d(TAG, "- Found unexpected color: " + Integer.toHexString(pixel)); in scanImage()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/glwallpaper/ |
D | ImageProcessHelper.java | 144 int pixel = grayscale.getPixel(col, row); in getHistogram() local 145 int y = Color.red(pixel) + Color.green(pixel) + Color.blue(pixel); in getHistogram()
|
/frameworks/native/services/surfaceflinger/sysprop/ |
D | SurfaceFlingerProperties.sysprop | 191 # Returns the default data space and pixel format that SurfaceFlinger 193 # and pixel format for wide color gamut surfaces. 194 # To determine the data space and pixel format, there are a few things 198 # data space and pixel format efficiently; 201 # 3. For better blending, consider using pixel format where the alpha 204 # more bits in pixel format. 217 # pixelFormat is the default pixel format that SurfaceFlinger 218 # expects. If unspecified, the default pixel format is 243 # wcgPixelFormat is the pixel format that SurfaceFlinger expects for 244 # wide color gamut surfaces. If unspecified, the pixel format is
|
/frameworks/opt/setupwizard/library/gingerbread/test/instrumentation/src/com/android/setupwizardlib/items/ |
D | ButtonItemDrawingTest.java | 84 for (int pixel : pixels) { in countPixelsWithColor() 85 if (pixel == color) { in countPixelsWithColor()
|
/frameworks/native/opengl/libs/ETC1/ |
D | etc1.cpp | 545 int pixel = (p[1] << 8) | p[0]; in etc1_encode_image() local 546 *q++ = convert5To8(pixel >> 11); in etc1_encode_image() 547 *q++ = convert6To8(pixel >> 5); in etc1_encode_image() 548 *q++ = convert5To8(pixel); in etc1_encode_image() 601 etc1_uint32 pixel = ((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3); in etc1_decode_image() local 602 *p++ = (etc1_byte) pixel; in etc1_decode_image() 603 *p++ = (etc1_byte) (pixel >> 8); in etc1_decode_image()
|
/frameworks/base/packages/SystemUI/docs/ |
D | clock-plugins.md | 14 target a maximum on-pixel-ratio (OPR) of 5%. Clocks that are composed of 20 burn-in testing is a good starting point to assess the pixel shifting 92 amount of pixel shifting.
|
/frameworks/base/tools/aapt2/compile/ |
D | NinePatch.cpp | 456 uint32_t NinePatch::PackRGBA(const uint8_t* pixel) { in PackRGBA() argument 457 return (pixel[3] << 24) | (pixel[0] << 16) | (pixel[1] << 8) | pixel[2]; in PackRGBA()
|
/frameworks/native/services/surfaceflinger/ |
D | RegionSamplingThread.cpp | 296 uint32_t pixel = rowBase[column]; in sampleArea() local 297 const float r = (pixel & 0xFF) / 255.0f; in sampleArea() 298 const float g = ((pixel >> 8) & 0xFF) / 255.0f; in sampleArea() 299 const float b = ((pixel >> 16) & 0xFF) / 255.0f; in sampleArea()
|