diff options
author | Brian Paul <brianp@vmware.com> | 2009-08-06 14:54:25 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-08-07 13:48:26 -0600 |
commit | f36d0121915ca724fd0843b978e7ff224980d929 (patch) | |
tree | 7be2209034949987cd5be0b99d18cd5ad23533c6 /src | |
parent | 513a82cb1bf3bdaaff8f1f3759f509bdd9b5f7d3 (diff) |
util: include u_surface.h, added comment
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_blit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_blit.c b/src/gallium/auxiliary/util/u_blit.c index 739aa51564..ebf3f144b5 100644 --- a/src/gallium/auxiliary/util/u_blit.c +++ b/src/gallium/auxiliary/util/u_blit.c @@ -45,6 +45,7 @@ #include "util/u_math.h" #include "util/u_memory.h" #include "util/u_simple_shaders.h" +#include "util/u_surface.h" #include "cso_cache/cso_context.h" @@ -335,6 +336,7 @@ util_blit_pixels(struct blit_state *ctx, /* * Check for simple case: no format conversion, no flipping, no stretching, * no overlapping. + * Filter mode should not matter since there's no stretching. */ if (dst->format == src->format && srcX0 < srcX1 && |