Porting parallel stuff to unix.

This commit is contained in:
castano
2011-09-27 18:12:32 +00:00
parent 5081360073
commit 2364f539eb
12 changed files with 181 additions and 138 deletions

View File

@ -269,6 +269,10 @@ struct MyOutputHandler : public nvtt::OutputHandler
m_ptr = m_data;
}
virtual void endImage()
{
}
virtual bool writeData(const void * data, int size)
{
memcpy(m_ptr, data, size);