Lines Matching refs:commands

433     show_g2d_commands(task.commands);  in show_g2d_task()
445 show_g2d_commands(task.commands); in debug_show_g2d_task()
556 delete [] mTask.commands.target; in ~AcrylicCompositorG2D()
558 delete [] mTask.commands.source[i]; in ~AcrylicCompositorG2D()
571 cnt += writeFilterCoefficients(mTask.commands.source[i][G2DSFR_SRC_XSCALE], in updateFilterCoefficients()
572 mTask.commands.source[i][G2DSFR_SRC_YSCALE], in updateFilterCoefficients()
573 mTask.commands.source[i][G2DSFR_IMG_COLORMODE], in updateFilterCoefficients()
949 if (!mTask.commands.target) { in reallocLayer()
950 mTask.commands.target = new uint32_t[G2DSFR_DST_FIELD_COUNT]; in reallocLayer()
951 if (!mTask.commands.target) { in reallocLayer()
956 memset(mTask.commands.target, 0, sizeof(uint32_t) * G2DSFR_DST_FIELD_COUNT); in reallocLayer()
961 delete [] mTask.commands.source[i]; in reallocLayer()
972 mTask.commands.source[i] = new uint32_t[G2DSFR_SRC_FIELD_COUNT]; in reallocLayer()
973 if (mTask.commands.source[i] == NULL) { in reallocLayer()
976 delete [] mTask.commands.source[i]; in reallocLayer()
984 memset(mTask.commands.source[i], 0, sizeof(uint32_t) * G2DSFR_SRC_FIELD_COUNT); in reallocLayer()
1000 memcpy(&task, &mTask, sizeof(mTask) - sizeof(mTask.commands)); in ioctlG2D()
1001 memcpy(task.commands.target, mTask.commands.target, sizeof(task.commands.target)); in ioctlG2D()
1004 task.commands.source[i] = mTask.commands.source[i]; in ioctlG2D()
1006 task.commands.extra = mTask.commands.extra; in ioctlG2D()
1007 task.commands.num_extra_regs = mTask.commands.num_extra_regs; in ioctlG2D()
1059 if (!prepareImage(getCanvas(), mTask.target, mTask.commands.target, -1)) { in executeG2D()
1071 prepareSolidLayer(getCanvas(), mTask.source[0], mTask.commands.source[0]); in executeG2D()
1074 mTask.commands.target[G2DSFR_DST_YCBCRMODE] = 0; in executeG2D()
1076 CSCMatrixWriter cscMatrixWriter(mTask.commands.target[G2DSFR_IMG_COLORMODE], in executeG2D()
1078 &mTask.commands.target[G2DSFR_DST_YCBCRMODE]); in executeG2D()
1080 …mTask.commands.target[G2DSFR_DST_YCBCRMODE] |= (G2D_LAYER_YCBCRMODE_OFFX | G2D_LAYER_YCBCRMODE_OFF… in executeG2D()
1086 mTask.commands.source[i], getCanvas().getImageDimension(), in executeG2D()
1092 if (!cscMatrixWriter.configure(mTask.commands.source[i][G2DSFR_IMG_COLORMODE], in executeG2D()
1094 &mTask.commands.source[i][G2DSFR_SRC_YCBCRMODE])) { in executeG2D()
1124 mTask.commands.num_extra_regs = cscMatrixWriter.getRegisterCount() + in executeG2D()
1127 … mTask.commands.num_extra_regs += getFilterCoefficientCount(mTask.commands.source, layercount); in executeG2D()
1129 …mTask.commands.extra = reinterpret_cast<g2d_reg *>(alloca(sizeof(g2d_reg) * mTask.commands.num_ext… in executeG2D()
1131 g2d_reg *regs = mTask.commands.extra; in executeG2D()