the mandelbrot example shows how to create a mandelbrot image in OpenCL and render the image as a texture in OpenGL
| 212 | // the mandelbrot example shows how to create a mandelbrot image in |
| 213 | // OpenCL and render the image as a texture in OpenGL |
| 214 | int main(int argc, char *argv[]) |
| 215 | { |
| 216 | QApplication app(argc, argv); |
| 217 | |
| 218 | MandelbrotWidget widget; |
| 219 | widget.show(); |
| 220 | |
| 221 | return app.exec(); |
| 222 | } |
| 223 | |
| 224 | #include "mandelbrot.moc" |