diff options
author | Brian Paul <[email protected]> | 2010-01-13 18:24:15 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-14 09:22:30 -0700 |
commit | d6b4655e13a5f3507180d5f7674c870faff2d24d (patch) | |
tree | 875a3096888aea7839e011296d845d107802aa53 /src/gallium/auxiliary | |
parent | 81430b95d094f81548b9256bc47a8912d9dfd245 (diff) |
gallium/util: silence warning about array initializers
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_blitter.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/util/u_blitter.c b/src/gallium/auxiliary/util/u_blitter.c index 46b4706b768..249a0375fc5 100644 --- a/src/gallium/auxiliary/util/u_blitter.c +++ b/src/gallium/auxiliary/util/u_blitter.c @@ -379,9 +379,16 @@ static void blitter_set_texcoords_cube(struct blitter_context_priv *ctx, float t1 = y1 / (float)surf->height; float s2 = x2 / (float)surf->width; float t2 = y2 / (float)surf->height; - const float st[4][2] = { - {s1, t1}, {s2, t1}, {s2, t2}, {s1, t2} - }; + float st[4][2]; + + st[0][0] = s1; + st[0][1] = t1; + st[1][0] = s2; + st[1][1] = t1; + st[2][0] = s2; + st[2][1] = t2; + st[3][0] = s1; + st[3][1] = t2; util_map_texcoords2d_onto_cubemap(surf->face, /* pointer, stride in floats */ |