Searched defs:col_type (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/include/ui/
H A Dmat4.h48 typedef tvec4<T> col_type; typedef in class:android::tmat44
52 enum { COL_SIZE = col_type::SIZE };
76 col_type mValue[ROW_SIZE];
80 inline col_type const& operator [] (size_t i) const { return mValue[i]; }
81 inline col_type& operator [] (size_t i) { return mValue[i]; }
162 mValue[0] = col_type(1,0,0,0);
163 mValue[1] = col_type(0,1,0,0);
164 mValue[2] = col_type(0,0,1,0);
165 mValue[3] = col_type(0,0,0,1);
171 mValue[0] = col_type(
[all...]

Completed in 71 milliseconds