| 665 | |
| 666 | |
| 667 | void PartioViewer::saveImage(const std::string &fileName, const void *pixels, unsigned int width, unsigned int height) |
| 668 | { |
| 669 | m_jpegFile = fopen(fileName.c_str(), "wb"); |
| 670 | TooJpeg::writeJpeg(outputJpg, pixels, width, height); |
| 671 | fclose(m_jpegFile); |
| 672 | } |
| 673 | |
| 674 | |
| 675 | void PartioViewer::generateSequence() |