/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
CrossProcess.java | 31 mIntrinsic = ScriptIntrinsicLUT.create(mRS, Element.U8_4(mRS));
|
UsageIO.java | 41 mMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS));
|
Convolve5x5.java | 67 mIntrinsic = ScriptIntrinsicConvolve5x5.create(mRS, Element.U8_4(mRS));
|
Histogram.java | 32 mHist = ScriptIntrinsicHistogram.create(mRS, Element.U8_4(mRS));
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
ColorMatrix.java | 42 mIntrinsic = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS));
|
CrossProcess.java | 28 mIntrinsic = ScriptIntrinsicLUT.create(mRS, Element.U8_4(mRS));
|
Blur25.java | 67 mIntrinsic = ScriptIntrinsicBlur.create(mRS, Element.U8_4(mRS));
|
Convolve3x3.java | 57 mIntrinsic = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS));
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
ColorMatrix.java | 49 mIntrinsic = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS));
|
CrossProcess.java | 31 mIntrinsic = ScriptIntrinsicLUT.create(mRS, Element.U8_4(mRS));
|
Convolve3x3.java | 64 mIntrinsic = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS));
|
Histogram.java | 38 mHist = ScriptIntrinsicHistogram.create(mRS, Element.U8_4(mRS));
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsic3DLUT.java | 41 * Supported elements types are {@link Element#U8_4} 51 if (!e.isCompatible(Element.U8_4(rs))) {
|
ScriptIntrinsicBlur.java | 44 * {@link Element#U8_4}. 52 if ((!e.isCompatible(Element.U8_4(rs))) && (!e.isCompatible(Element.U8(rs)))) {
|
ScriptIntrinsicBlend.java | 33 * Supported elements types are {@link Element#U8_4} 55 if (!ain.getElement().isCompatible(Element.U8_4(mRS))) { 58 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) {
|
/frameworks/rs/cpp/ |
ScriptIntrinsics.cpp | 37 if (e->isCompatible(Element::U8_4(rs)) == false) { 71 if (e->isCompatible(Element::U8_4(rs)) == false) { 206 if ((e->isCompatible(Element::U8_4(rs)) == false) && 260 !(in->getType()->getElement()->isCompatible(Element::U8_4(mRS))) && 272 !(out->getType()->getElement()->isCompatible(Element::U8_4(mRS))) && 342 !(e->isCompatible(Element::U8_4(rs))) && 383 !(e->isCompatible(Element::U8_4(rs))) && 479 !(ain->getType()->getElement()->isCompatible(Element::U8_4(mRS)))) { 481 "Input allocation to Histogram must be U8 or U8_4"); 497 !(ain->getType()->getElement()->isCompatible(Element::U8_4(mRS)))) [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ScriptGroupTest.java | 45 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); 49 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); 74 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); 78 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); 79 mColorMatrix2 = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); 108 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); 113 mConvolve3x3 = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS)); 114 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); 149 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); 154 mConvolve3x3 = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS)) [all...] |
AllocationCreateAllocationsTest.java | 37 Element e = Element.U8_4(mRS); 94 Type t = Type.createXY(mRS, Element.U8_4(mRS), dX, dY);
|
RsPackColorTo8888Test.java | 70 Allocation mAllocationOut = Allocation.createSized(mRS, Element.U8_4(mRS), INPUTSIZE); 97 Allocation mAllocationOut = Allocation.createSized(mRS, Element.U8_4(mRS), INPUTSIZE);
|
RsUnpackColor8888Test.java | 35 Allocation mAllocationIn = Allocation.createSized(mRS, Element.U8_4(mRS), INPUTSIZE);
|
/cts/tests/camera/src/android/hardware/camera2/cts/rs/ |
BitmapUtils.java | 47 ScriptIntrinsicHistogram hist = ScriptIntrinsicHistogram.create(rs, Element.U8_4(rs));
|
/frameworks/av/media/libstagefright/filters/ |
IntrinsicBlurFilter.cpp | 54 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS);
|
RSFilter.cpp | 63 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS);
|
SaturationFilter.cpp | 54 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS);
|
/frameworks/base/rs/java/android/renderscript/ |
ScriptIntrinsicConvolve3x3.java | 33 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4}, 54 !e.isCompatible(Element.U8_4(rs)) &&
|