Home
last modified time | relevance | path

Searched refs:colorAWriteEnable (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
Dprogram_store.rs8 rs_program_store colorAWriteEnable;
67 _RS_ASSERT(rsgProgramStoreGetDepthFunc(colorAWriteEnable) == RS_DEPTH_FUNC_ALWAYS);
68 _RS_ASSERT(rsgProgramStoreIsDepthMaskEnabled(colorAWriteEnable) == false);
69 _RS_ASSERT(rsgProgramStoreIsColorMaskRedEnabled(colorAWriteEnable) == false);
70 _RS_ASSERT(rsgProgramStoreIsColorMaskGreenEnabled(colorAWriteEnable) == false);
71 _RS_ASSERT(rsgProgramStoreIsColorMaskBlueEnabled(colorAWriteEnable) == false);
72 _RS_ASSERT(rsgProgramStoreIsColorMaskAlphaEnabled( colorAWriteEnable) == true);
73 _RS_ASSERT(rsgProgramStoreIsDitherEnabled(colorAWriteEnable) == false);
74 _RS_ASSERT(rsgProgramStoreGetBlendSrcFunc(colorAWriteEnable) == RS_BLEND_SRC_ZERO);
75 _RS_ASSERT(rsgProgramStoreGetBlendDstFunc(colorAWriteEnable) == RS_BLEND_DST_ZERO);
DUT_program_store.java34 ProgramStore colorAWriteEnable; field in UT_program_store
69 colorAWriteEnable = b.setColorMaskEnabled(false, false, false, true).create(); in initializeGlobals()
89 s.set_colorAWriteEnable(colorAWriteEnable); in initializeGlobals()
/frameworks/rs/
DrsProgramStore.cpp36 mHal.state.colorAWriteEnable = colorMaskA; in ProgramStore()
100 if (existing->mHal.state.colorAWriteEnable != colorMaskA) continue; in getProgramStore()
DrsProgramStore.h48 bool colorAWriteEnable; member
/frameworks/compile/libbcc/lib/Renderscript/runtime/
Drs_structs.h81 bool colorAWriteEnable; member
Drs_program.c59 return prog->mHal.state.colorAWriteEnable; in rsgProgramStoreIsColorMaskAlphaEnabled()
/frameworks/rs/driver/
DrsdProgramStore.cpp162 ps->mHal.state.colorAWriteEnable); in rsdProgramStoreSetActive()