| 147 | #include "samples/samples.h" |
| 148 | |
| 149 | int main(int argc, char* argv[]) { |
| 150 | LaTeX::init(); |
| 151 | |
| 152 | tex::Samples samples; |
| 153 | for (int i = 0; i < samples.count(); i++) { |
| 154 | auto r = LaTeX::parse(samples.next(), 720, 20, 20 / 3.f, black); |
| 155 | Graphics2D_none g2; |
| 156 | r->draw(g2, 0, 0); |
| 157 | delete r; |
| 158 | } |
| 159 | |
| 160 | LaTeX::release(); |
| 161 | Graphics2D_none::release(); |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | #endif // MEM_CHECK |