Searched refs:RectT (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/src/Device/ |
D | Surface.hpp | 27 template <typename T> struct RectT struct 29 RectT() {} in RectT() argument 30 RectT(T x0i, T y0i, T x1i, T y1i) : x0(x0i), y0(y0i), x1(x1i), y1(y1i) {} in RectT() argument 49 typedef RectT<int> Rect; 50 typedef RectT<float> RectF; 52 template<typename T> struct SliceRectT : public RectT<T> 55 SliceRectT(const RectT<T>& rect) : RectT<T>(rect), slice(0) {} in SliceRectT() 56 SliceRectT(const RectT<T>& rect, int s) : RectT<T>(rect), slice(s) {} in SliceRectT() 57 SliceRectT(T x0, T y0, T x1, T y1, int s) : RectT<T>(x0, y0, x1, y1), slice(s) {} in SliceRectT()
|
/external/swiftshader/src/Renderer/ |
D | Surface.hpp | 26 template <typename T> struct RectT struct 28 RectT() {} in RectT() argument 29 RectT(T x0i, T y0i, T x1i, T y1i) : x0(x0i), y0(y0i), x1(x1i), y1(y1i) {} in RectT() function 48 typedef RectT<int> Rect; 49 typedef RectT<float> RectF; 51 template<typename T> struct SliceRectT : public RectT<T> 54 SliceRectT(const RectT<T>& rect) : RectT<T>(rect), slice(0) {} in SliceRectT() 55 SliceRectT(const RectT<T>& rect, int s) : RectT<T>(rect), slice(s) {} in SliceRectT() 56 SliceRectT(T x0, T y0, T x1, T y1, int s) : RectT<T>(x0, y0, x1, y1), slice(s) {} in SliceRectT()
|