Home
last modified time | relevance | path

Searched refs:mBlend (Results 1 – 8 of 8) sorted by relevance

/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
DBlend.java32 private ScriptIntrinsicBlend mBlend; field in Blend
59 mBlend = ScriptIntrinsicBlend.create(mRS, Element.U8_4(mRS)); in createTest()
124 mBlend.forEachSrc(image1, image2); in runTest()
127 mBlend.forEachDst(image1, image2); in runTest()
130 mBlend.forEachSrcOver(image1, image2); in runTest()
133 mBlend.forEachDstOver(image1, image2); in runTest()
136 mBlend.forEachSrcIn(image1, image2); in runTest()
139 mBlend.forEachDstIn(image1, image2); in runTest()
142 mBlend.forEachSrcOut(image1, image2); in runTest()
145 mBlend.forEachDstOut(image1, image2); in runTest()
[all …]
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
DBlend.java39 private ScriptIntrinsicBlend mBlend; field in Blend
66 mBlend = ScriptIntrinsicBlend.create(mRS, Element.U8_4(mRS)); in createTest()
131 mBlend.forEachSrc(image1, image2); in runTest()
134 mBlend.forEachDst(image1, image2); in runTest()
137 mBlend.forEachSrcOver(image1, image2); in runTest()
140 mBlend.forEachDstOver(image1, image2); in runTest()
143 mBlend.forEachSrcIn(image1, image2); in runTest()
146 mBlend.forEachDstIn(image1, image2); in runTest()
149 mBlend.forEachSrcOut(image1, image2); in runTest()
152 mBlend.forEachDstOut(image1, image2); in runTest()
[all …]
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
DBlend.java39 private ScriptIntrinsicBlend mBlend; field in Blend
66 mBlend = ScriptIntrinsicBlend.create(mRS, Element.U8_4(mRS)); in createTest()
132 mBlend.forEachSrc(image1, image2); in runTest()
135 mBlend.forEachDst(image1, image2); in runTest()
138 mBlend.forEachSrcOver(image1, image2); in runTest()
141 mBlend.forEachDstOver(image1, image2); in runTest()
144 mBlend.forEachSrcIn(image1, image2); in runTest()
147 mBlend.forEachDstIn(image1, image2); in runTest()
150 mBlend.forEachSrcOut(image1, image2); in runTest()
153 mBlend.forEachDstOut(image1, image2); in runTest()
[all …]
/frameworks/base/libs/hwui/
DVkLayer.h35 , mBlend(blend) {} in VkLayer()
53 mBlend = blend; in setBlend()
57 return mBlend; in isBlend()
73 bool mBlend; variable
DDeferredLayerUpdater.h64 if (blend != mBlend) { in setBlend()
65 mBlend = blend; in setBlend()
118 bool mBlend = false; variable
DDeferredLayerUpdater.cpp31 , mBlend(false) in DeferredLayerUpdater()
76 mLayer = mCreateLayerFn(mRenderState, mWidth, mHeight, mColorFilter, mAlpha, mMode, mBlend); in apply()
163 mLayer->setBlend(mBlend); in updateLayer()
/frameworks/base/libs/hwui/renderstate/
DRenderState.cpp42 LOG_ALWAYS_FATAL_IF(mBlend || mMeshState || mScissor || mStencil, in ~RenderState()
47 LOG_ALWAYS_FATAL_IF(mBlend || mMeshState || mScissor || mStencil, in onGLContextCreated()
51 mBlend = new Blend(); in onGLContextCreated()
82 delete mBlend; in onGLContextDestroyed()
83 mBlend = nullptr; in onGLContextDestroyed()
96 LOG_ALWAYS_FATAL_IF(mBlend || mMeshState || mScissor || mStencil, in onVkContextCreated()
DRenderState.h111 Blend& blend() { return *mBlend; } in blend()
134 Blend* mBlend = nullptr; variable