Home
last modified time | relevance | path

Searched refs:ditherEnable (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
Dprogram_store.rs4 rs_program_store ditherEnable;
77 _RS_ASSERT(rsgProgramStoreGetDepthFunc(ditherEnable) == RS_DEPTH_FUNC_ALWAYS);
78 _RS_ASSERT(rsgProgramStoreIsDepthMaskEnabled(ditherEnable) == false);
79 _RS_ASSERT(rsgProgramStoreIsColorMaskRedEnabled(ditherEnable) == false);
80 _RS_ASSERT(rsgProgramStoreIsColorMaskGreenEnabled(ditherEnable) == false);
81 _RS_ASSERT(rsgProgramStoreIsColorMaskBlueEnabled(ditherEnable) == false);
82 _RS_ASSERT(rsgProgramStoreIsColorMaskAlphaEnabled( ditherEnable) == false);
83 _RS_ASSERT(rsgProgramStoreIsDitherEnabled(ditherEnable) == true);
84 _RS_ASSERT(rsgProgramStoreGetBlendSrcFunc(ditherEnable) == RS_BLEND_SRC_ZERO);
85 _RS_ASSERT(rsgProgramStoreGetBlendDstFunc(ditherEnable) == RS_BLEND_DST_ZERO);
DUT_program_store.java30 ProgramStore ditherEnable; field in UT_program_store
57 ditherEnable = b.setDitherEnabled(true).create(); in initializeGlobals()
85 s.set_ditherEnable(ditherEnable); in initializeGlobals()
/frameworks/rs/
DrsProgramStore.cpp26 bool depthMask, bool ditherEnable, in ProgramStore() argument
31 mHal.state.ditherEnable = ditherEnable; in ProgramStore()
88 bool depthMask, bool ditherEnable, in getProgramStore() argument
96 if (existing->mHal.state.ditherEnable != ditherEnable) continue; in getProgramStore()
114 depthMask, ditherEnable, in getProgramStore()
148 bool depthMask, bool ditherEnable, in rsi_ProgramStoreCreate() argument
156 depthMask, ditherEnable, in rsi_ProgramStoreCreate()
DrsProgramStore.h42 bool ditherEnable; member
68 bool depthMask, bool ditherEnable,
79 bool depthMask, bool ditherEnable,
Drs.spec405 param bool ditherEnable
/frameworks/compile/libbcc/lib/Renderscript/runtime/
Drs_structs.h77 bool ditherEnable; member
Drs_program.c86 return prog->mHal.state.ditherEnable; in rsgProgramStoreIsDitherEnabled()
/frameworks/rs/driver/
DrsdProgramStore.cpp192 if (ps->mHal.state.ditherEnable) { in rsdProgramStoreSetActive()
/frameworks/base/graphics/jni/
Dandroid_renderscript_RenderScript.cpp1155 jboolean depthMask, jboolean ditherEnable, in nProgramStoreCreate() argument
1161 depthMask, ditherEnable, (RsBlendSrcFunc)srcFunc, in nProgramStoreCreate()