Searched refs:ditherEnable (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/ |
D | program_store.rs | 4 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);
|
D | UT_program_store.java | 30 ProgramStore ditherEnable; field in UT_program_store 57 ditherEnable = b.setDitherEnabled(true).create(); in initializeGlobals() 85 s.set_ditherEnable(ditherEnable); in initializeGlobals()
|
/frameworks/rs/ |
D | rsProgramStore.cpp | 26 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()
|
D | rsProgramStore.h | 42 bool ditherEnable; member 68 bool depthMask, bool ditherEnable, 79 bool depthMask, bool ditherEnable,
|
D | rs.spec | 405 param bool ditherEnable
|
/frameworks/compile/libbcc/lib/Renderscript/runtime/ |
D | rs_structs.h | 77 bool ditherEnable; member
|
D | rs_program.c | 86 return prog->mHal.state.ditherEnable; in rsgProgramStoreIsDitherEnabled()
|
/frameworks/rs/driver/ |
D | rsdProgramStore.cpp | 192 if (ps->mHal.state.ditherEnable) { in rsdProgramStoreSetActive()
|
/frameworks/base/graphics/jni/ |
D | android_renderscript_RenderScript.cpp | 1155 jboolean depthMask, jboolean ditherEnable, in nProgramStoreCreate() argument 1161 depthMask, ditherEnable, (RsBlendSrcFunc)srcFunc, in nProgramStoreCreate()
|