diff options
author | Marek Olšák <[email protected]> | 2018-06-11 15:26:41 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-08-04 02:46:55 -0400 |
commit | 2d115056d3d847e524dead44e9ff255a3cf8127e (patch) | |
tree | c7d18aca3993adcb97408a291f42dba58e07a59a /src/mesa/drivers | |
parent | f7d42ee7d319256608ad60778f6787c140badada (diff) |
mesa: add storageSamples parameter to renderbuffer functions
It's just passed to other functions but otherwise unused.
It will be used in following commits.
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/common/meta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index 6b1713e3b1c..04752e0e875 100644 --- a/src/mesa/drivers/common/meta.c +++ b/src/mesa/drivers/common/meta.c @@ -3079,7 +3079,7 @@ decompress_texture_image(struct gl_context *ctx, /* alloc dest surface */ if (width > decompress_fbo->Width || height > decompress_fbo->Height) { _mesa_renderbuffer_storage(ctx, decompress_fbo->rb, rbFormat, - width, height, 0); + width, height, 0, 0); /* Do the full completeness check to recompute * ctx->DrawBuffer->Width/Height. |