| 239 | class DebugWriter : public WriterI |
| 240 | { |
| 241 | virtual int32_t write(const void* _data, int32_t _size, Error* _err) override |
| 242 | { |
| 243 | BX_UNUSED(_err); |
| 244 | debugOutput(StringView( (const char*)_data, _size) ); |
| 245 | return _size; |
| 246 | } |
| 247 | }; |
| 248 | |
| 249 | WriterI* getDebugOut() |
nothing calls this directly
no test coverage detected