| 693 | } |
| 694 | |
| 695 | Type TypeFromTokenType( int type, int width, int height ) |
| 696 | { |
| 697 | Type t; |
| 698 | t.FromTokenType( type ); |
| 699 | t.width = width; |
| 700 | t.height = height; |
| 701 | return t; |
| 702 | } |
| 703 | |
| 704 | bool GetCommonType( const Type& type0, const Type& type1, Type& type ) |
| 705 | { |
no test coverage detected