Searched defs:Size2D (Results 1 – 1 of 1) sorted by relevance
97 struct Size2D { struct98 Size2D() : width(0), height(0) {} in Size2D() argument99 Size2D(size_t width_, size_t height_) : width(width_), height(height_) {} in Size2D() function101 size_t width;102 size_t height;104 inline size_t total() const in total()