| 1437 | } |
| 1438 | |
| 1439 | char * builtin_print_data ( const void * data, const TypeInfo * typeInfo, Bitfield flags, Context * context, LineInfoArg * at ) { |
| 1440 | TextWriter ssw; |
| 1441 | ssw << debug_value(data, (TypeInfo *)typeInfo, PrintFlags(uint32_t(flags))); |
| 1442 | return context->allocateString(ssw.str(), at); |
| 1443 | } |
| 1444 | |
| 1445 | char * builtin_print_data_v ( float4 data, const TypeInfo * typeInfo, Bitfield flags, Context * context, LineInfoArg * at ) { |
| 1446 | TextWriter ssw; |
nothing calls this directly
no test coverage detected