HomeSort by relevance Sort by last modified time
    Searched defs:dither (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_rs.h 53 uint32_t dither[2]; member in struct:rs_state
  /system/core/libpixelflinger/
buffer.cpp 39 int sh, int sl, int dh, int dl, int ch, int cl, int dither);
167 int dither = -1; local
169 dither = c->ditherMatrix[ (x & GGL_DITHER_MASK) +
196 v = downshift_component(v, u, pixelSize, 0, h, l, 0, 0, dither);
327 int dither)
336 if (dither>=0) {
339 if (shift >= 0) v += (dither >> shift) << sl;
340 else v += (dither << (-shift)) << sl;
344 // -> this is not really needed if we don't dither
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPaint.java 31 private boolean dither; field in class:ShadowPaint
206 public void setDither(boolean dither) {
207 this.dither = dither;
212 return dither;
  /external/dng_sdk/source/
dng_utils.cpp 422 static dng_dither dither; local
424 return dither;
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPaint.java 34 private boolean dither; field in class:ShadowPaint
65 this.dither = otherShadowPaint.dither;
255 public void setDither(boolean dither) {
256 this.dither = dither;
261 return dither;
  /external/webp/src/utils/
quant_levels_dec_utils.c 139 const uint8_t* const dither = kOrderedDither[p->row_ % DSIZE]; local
148 dst[x] = clip_8b(c + dither[x % DSIZE]);
  /external/libjpeg-turbo/
jquant1.c 58 * We use a standard 16x16 ordered dither array. The basic concept of ordered
62 * "dither" value to the input pixel and then round the result to the nearest
63 * output value. The dither value is equivalent to (0.5 - threshold) times
66 * worse, since the dither may be too much or too little at a given point.
68 * The normal calculation would be to form pixel value + dither, range-limit
74 #define ODITHER_SIZE 16 /* dimension of dither matrix */
83 /* Bayer's order-4 dither array. Generated by the code given in
159 int row_index; /* cur row's vertical index in dither matrix */
160 ODITHER_MATRIX_PTR odither[MAX_Q_COMPS]; /* one dither array per component */
342 /* For ordered dither, we pad the color index tables by MAXJSAMPLE i
526 int *dither; \/* points to active row of dither matrix *\/ local
    [all...]
  /external/webp/src/dec/
frame_dec.c 341 // TODO(skal): should we specially dither more for uv_quant_ < 0?
362 // Convert to range: [-2,2] for dither=50, [-4,4] for dither=100
364 uint8_t dither[64]; local
367 dither[i] = VP8RandomBits2(rg, VP8_DITHER_AMP_BITS + 1, amp);
369 VP8DitherCombine8x8(dither, dst, bps);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 224 IGLProperty dither = new GLBooleanProperty(GLStateType.DITHER, Boolean.TRUE); local
228 depthTest, depthFunc, blend, dither);
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.h 316 reg_t dither; member in struct:android::GGLAssembler::fragment_parts_t
397 void downshift(pixel_t& d, int component, component_t s, const reg_t& dither);
  /external/ImageMagick/MagickCore/
image.h 270 dither; /* dithering on/off */ member in struct:_Image
423 dither, /* dither enable-disable */ member in struct:_ImageInfo
  /external/ImageMagick/coders/
msl.c 3592 dither; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_state.c 353 uint32_t dither = 0; /* R300_RB3D_DITHER_CTL: 0x4e50 */ local
461 * out and never dither.
465 if (state->dither) {
466 dither = R300_RB3D_DITHER_CTL_DITHER_MODE_LUT |
493 OUT_CB_REG(R300_RB3D_DITHER_CTL, dither);
505 OUT_CB_REG(R300_RB3D_DITHER_CTL, dither);
515 OUT_CB_REG(R300_RB3D_DITHER_CTL, dither);
525 OUT_CB_REG(R300_RB3D_DITHER_CTL, dither);
    [all...]
  /external/mesa3d/src/gallium/include/pipe/
p_state.h 325 unsigned dither:1; member in struct:pipe_blend_state
  /libcore/benchmarks/src/benchmarks/regression/
R.java 1537 public static final int dither = 0; field in class:R
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/sdk/28/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_28/
android.jar 

Completed in 422 milliseconds

1 2 3 4