diff options
author | Eric Anholt <[email protected]> | 2014-08-18 10:24:29 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-08-18 15:27:43 -0700 |
commit | 8795341e2c113176286e9bb6ef3fe716905d7d30 (patch) | |
tree | eba5667c2e080539e0e6b04c88e8e5f10fd71a0b /src/gallium | |
parent | 63fe494877177d24fd36f9955b69331939b7798c (diff) |
vc4: Don't forget to set up the offset for render targets.
This almost fixes fbo-generatemipmap rendering, except that the 1x1 level
isn't getting rendered.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_resource.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/vc4_resource.c b/src/gallium/drivers/vc4/vc4_resource.c index e0c0c7bdd42..349837e9824 100644 --- a/src/gallium/drivers/vc4/vc4_resource.c +++ b/src/gallium/drivers/vc4/vc4_resource.c @@ -239,6 +239,7 @@ vc4_create_surface(struct pipe_context *pctx, const struct pipe_surface *surf_tmpl) { struct vc4_surface *surface = CALLOC_STRUCT(vc4_surface); + struct vc4_resource *rsc = vc4_resource(ptex); if (!surface) return NULL; @@ -258,6 +259,7 @@ vc4_create_surface(struct pipe_context *pctx, psurf->u.tex.level = level; psurf->u.tex.first_layer = surf_tmpl->u.tex.first_layer; psurf->u.tex.last_layer = surf_tmpl->u.tex.last_layer; + surface->offset = rsc->slices[level].offset; return &surface->base; } |