Home | History | Annotate | Download | only in cpp

Lines Matching refs:dt

77     RsDataType dt = mType->getElement()->getDataType();
78 if ((dt == RS_TYPE_SIGNED_64) || (dt == RS_TYPE_UNSIGNED_64)) {
81 ALOGE("64 bit integer source does not match allocation type %i", dt);
85 RsDataType dt = mType->getElement()->getDataType();
86 if ((dt == RS_TYPE_SIGNED_32) || (dt == RS_TYPE_UNSIGNED_32)) {
89 ALOGE("32 bit integer source does not match allocation type %i", dt);
93 RsDataType dt = mType->getElement()->getDataType();
94 if ((dt == RS_TYPE_SIGNED_16) || (dt == RS_TYPE_UNSIGNED_16)) {
97 ALOGE("16 bit integer source does not match allocation type %i", dt);
101 RsDataType dt = mType->getElement()->getDataType();
102 if ((dt == RS_TYPE_SIGNED_8) || (dt == RS_TYPE_UNSIGNED_8)) {
105 ALOGE("8 bit integer source does not match allocation type %i", dt);
109 RsDataType dt = mType->getElement()->getDataType();
110 if (dt == RS_TYPE_FLOAT_32) {
113 ALOGE("32 bit float source does not match allocation type %i", dt);
117 RsDataType dt = mType->getElement()->getDataType();
118 if (dt == RS_TYPE_FLOAT_64) {
121 ALOGE("64 bit float source does not match allocation type %i", dt);
125 RsDataType dt = mType->getElement()->getDataType();
126 if ((dt == RS_TYPE_ELEMENT) ||
127 (dt == RS_TYPE_TYPE) ||
128 (dt == RS_TYPE_ALLOCATION) ||
129 (dt == RS_TYPE_SAMPLER) ||
130 (dt == RS_TYPE_SCRIPT) ||
131 (dt == RS_TYPE_MESH) ||
132 (dt == RS_TYPE_PROGRAM_FRAGMENT) ||
133 (dt == RS_TYPE_PROGRAM_VERTEX) ||
134 (dt == RS_TYPE_PROGRAM_RASTER) ||
135 (dt == RS_TYPE_PROGRAM_STORE)) {
138 ALOGE("Object source does not match allocation type %i", dt);