Win: layers (draw_state.c): Fix compilation error on Windows.
authorIan Elliott <ian@lunarg.com>
Thu, 26 Feb 2015 00:34:46 +0000 (17:34 -0700)
committerIan Elliott <ian@lunarg.com>
Thu, 26 Feb 2015 00:36:25 +0000 (17:36 -0700)
commitc1a0242ebff344c3aaaaa02f2416e81ac6fcb6d7
tree9761e25feb6ce90ccf5477662244a4c6d696cbe4
parente9ec87bff8fcca4c925b31fa516eef234dd7d47c
Win: layers (draw_state.c): Fix compilation error on Windows.

Visual Studio doesn't like:

            static const uint32_t NUM_COLORS = 7;
            char* edgeColors[NUM_COLORS];

Instead, we need to do:

             char* edgeColors[NUM_COLORS];
layers/draw_state.c