renderer: remove the extra block in fb_bind_texture()

Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
macos/master
Ramin Azarmehr 6 years ago committed by Dave Airlie
parent b358bb41f0
commit 35b3cad630
  1. 17
      src/vrend_renderer.c

@ -1478,15 +1478,14 @@ void vrend_fb_bind_texture(struct vrend_resource *res,
const struct util_format_description *desc = util_format_description(res->base.format);
GLenum attachment = GL_COLOR_ATTACHMENT0_EXT + idx;
if (vrend_format_is_ds(res->base.format)) { {
if (util_format_has_stencil(desc)) {
if (util_format_has_depth(desc))
attachment = GL_DEPTH_STENCIL_ATTACHMENT;
else
attachment = GL_STENCIL_ATTACHMENT;
} else
attachment = GL_DEPTH_ATTACHMENT;
}
if (vrend_format_is_ds(res->base.format)) {
if (util_format_has_stencil(desc)) {
if (util_format_has_depth(desc))
attachment = GL_DEPTH_STENCIL_ATTACHMENT;
else
attachment = GL_STENCIL_ATTACHMENT;
} else
attachment = GL_DEPTH_ATTACHMENT;
}
switch (res->target) {

Loading…
Cancel
Save