diff options
author | Stéphane Marchesin <[email protected]> | 2014-11-22 00:10:50 -0800 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2014-11-22 00:13:40 -0800 |
commit | 1e47510df72ccc43fde33e5026bcf71f201d90ae (patch) | |
tree | 368267da3d73d675325b76140af64fc291e8b670 /src/gallium/drivers/i915/i915_surface.c | |
parent | e30c799da920f6c6f502cbd05380235b791e05fd (diff) |
i915g: Don't limit blitter to POT textures
Now that we have NPOT support for u_blitter, there is no reason to
limit this any longer.
Signed-off-by: Stéphane Marchesin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/i915/i915_surface.c')
-rw-r--r-- | src/gallium/drivers/i915/i915_surface.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/drivers/i915/i915_surface.c b/src/gallium/drivers/i915/i915_surface.c index 7317e3a27e3..b5161722701 100644 --- a/src/gallium/drivers/i915/i915_surface.c +++ b/src/gallium/drivers/i915/i915_surface.c @@ -90,9 +90,8 @@ i915_surface_copy_render(struct pipe_context *pipe, struct pipe_sampler_view src_templ, *src_view; struct pipe_surface dst_templ, *dst_view; - /* Fallback for buffers and npot. */ - if ((dst->target == PIPE_BUFFER && src->target == PIPE_BUFFER) || - !util_is_power_of_two(src_width0) || !util_is_power_of_two(src_height0)) + /* Fallback for buffers. */ + if ((dst->target == PIPE_BUFFER && src->target == PIPE_BUFFER)) goto fallback; util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz); |