| 111 | }; |
| 112 | |
| 113 | static const char* GetOperatorSymbol( int operatorID ) |
| 114 | { |
| 115 | auto it = s_operators.find( operatorID ); |
| 116 | if( it == s_operators.end() ) |
| 117 | { |
| 118 | return ""; |
| 119 | } |
| 120 | return it->second.c_str(); |
| 121 | } |
| 122 | |
| 123 | void PrintTypeHLSL11( CodeStream& os, Type type ) |
| 124 | { |