On 22 April 2015 at 19:30, Matteo Bruni mbruni@codeweavers.com wrote:
+#define VERTICES_SIDE 5 +#define INDICES_COUNT ((VERTICES_SIDE - 1) * (VERTICES_SIDE - 1) * 2 * 3)
I don't think you really need to #define these, but if you do you should probably #undef them once you're done with them.