From: Christian König Date: Sun, 20 Mar 2011 18:00:50 +0000 (+0100) Subject: [g3dvl] fix power_of_two buffer with/height handling X-Git-Tag: 062012170305~4979^2~212 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a238efe424c666d730ffe91c01f49415797a7ca;p=profile%2Fivi%2Fmesa.git [g3dvl] fix power_of_two buffer with/height handling --- diff --git a/src/gallium/state_trackers/xorg/xvmc/surface.c b/src/gallium/state_trackers/xorg/xvmc/surface.c index 799dac2..ef7ea92 100644 --- a/src/gallium/state_trackers/xorg/xvmc/surface.c +++ b/src/gallium/state_trackers/xorg/xvmc/surface.c @@ -232,8 +232,14 @@ Status XvMCCreateSurface(Display *dpy, XvMCContext *context, XvMCSurface *surfac return BadAlloc; } template.last_level = 0; - template.width0 = util_next_power_of_two(context->width); - template.height0 = util_next_power_of_two(context->height); + if (vpipe->get_param(vpipe, PIPE_CAP_NPOT_TEXTURES)) { + template.width0 = context->width; + template.height0 = context->height; + } + else { + template.width0 = util_next_power_of_two(context->width); + template.height0 = util_next_power_of_two(context->height); + } template.depth0 = 1; template.array_size = 1; template.usage = PIPE_USAGE_DEFAULT;