Lines Matching refs:ct
28 for (uint32_t ct=0; ct < paramLength; ct+=2) {
29 if (params[ct] == RS_PROGRAM_PARAM_INPUT) {
32 if (params[ct] == RS_PROGRAM_PARAM_CONSTANT) {
35 if (params[ct] == RS_PROGRAM_PARAM_TEXTURE_TYPE) {
59 for (uint32_t ct=0; ct < paramLength; ct+=2) {
60 if (params[ct] == RS_PROGRAM_PARAM_INPUT) {
61 mInputElements[input].set(reinterpret_cast<Element *>(params[ct+1]));
62 mHal.state.inputElements[input++] = reinterpret_cast<Element *>(params[ct+1]);
64 if (params[ct] == RS_PROGRAM_PARAM_CONSTANT) {
65 mConstantTypes[constant].set(reinterpret_cast<Type *>(params[ct+1]));
66 mHal.state.constantTypes[constant++] = reinterpret_cast<Type *>(params[ct+1]);
68 if (params[ct] == RS_PROGRAM_PARAM_TEXTURE_TYPE) {
69 mHal.state.textureTargets[texture++] = (RsTextureTarget)params[ct+1];
112 for (uint32_t ct=0; ct < mHal.state.constantsCount; ct++) {
113 bindAllocation(NULL, NULL, ct);
116 for (uint32_t ct=0; ct < mHal.state.texturesCount; ct++) {
117 bindTexture(NULL, ct, NULL);
118 bindSampler(NULL, ct, NULL);