Home | History | Annotate | Download | only in cpp

Lines Matching refs:dt

73     RsDataType dt = mType->getElement()->getDataType();
74 if ((dt == RS_TYPE_SIGNED_32) || (dt == RS_TYPE_UNSIGNED_32)) {
77 ALOGE("32 bit integer source does not match allocation type %i", dt);
81 RsDataType dt = mType->getElement()->getDataType();
82 if ((dt == RS_TYPE_SIGNED_16) || (dt == RS_TYPE_UNSIGNED_16)) {
85 ALOGE("16 bit integer source does not match allocation type %i", dt);
89 RsDataType dt = mType->getElement()->getDataType();
90 if ((dt == RS_TYPE_SIGNED_8) || (dt == RS_TYPE_UNSIGNED_8)) {
93 ALOGE("8 bit integer source does not match allocation type %i", dt);
97 RsDataType dt = mType->getElement()->getDataType();
98 if (dt == RS_TYPE_FLOAT_32) {
101 ALOGE("32 bit float source does not match allocation type %i", dt);
105 RsDataType dt = mType->getElement()->getDataType();
106 if ((dt == RS_TYPE_ELEMENT) ||
107 (dt == RS_TYPE_TYPE) ||
108 (dt == RS_TYPE_ALLOCATION) ||
109 (dt == RS_TYPE_SAMPLER) ||
110 (dt == RS_TYPE_SCRIPT) ||
111 (dt == RS_TYPE_MESH) ||
112 (dt == RS_TYPE_PROGRAM_FRAGMENT) ||
113 (dt == RS_TYPE_PROGRAM_VERTEX) ||
114 (dt == RS_TYPE_PROGRAM_RASTER) ||
115 (dt == RS_TYPE_PROGRAM_STORE)) {
118 ALOGE("Object source does not match allocation type %i", dt);