| 162 | |
| 163 | |
| 164 | OSL_SHADEOP const char * |
| 165 | osl_format (const char* format_str, ...) |
| 166 | { |
| 167 | va_list args; |
| 168 | va_start (args, format_str); |
| 169 | std::string s = Strutil::vformat (format_str, args); |
| 170 | va_end (args); |
| 171 | return ustring(s).c_str(); |
| 172 | } |
| 173 | |
| 174 | |
| 175 | OSL_SHADEOP void |