Module: Mesa Branch: master Commit: 8db38ba4d2f6dee62009f40208cb11bc6547167f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8db38ba4d2f6dee62009f40208cb11bc6547167f
Author: Chris Forbes <[email protected]> Date: Wed Oct 1 20:04:37 2014 +1300 mesa: Mark buffer objects that are used as TexBOs Signed-off-by: Chris Forbes <[email protected]> Reviewed-by: Anuj Phogat <[email protected]> --- src/mesa/main/mtypes.h | 3 +++ src/mesa/main/teximage.c | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 881c26c..2a01508 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1469,6 +1469,7 @@ struct gl_buffer_mapping { */ typedef enum { USAGE_UNIFORM_BUFFER = 0x1, + USAGE_TEXTURE_BUFFER = 0x2, } gl_buffer_usage; @@ -4069,6 +4070,8 @@ struct gl_driver_flags */ uint64_t NewUniformBuffer; + uint64_t NewTextureBuffer; + /** * gl_context::AtomicBufferBindings */ diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index c0298af..4f4bb11 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -4652,6 +4652,12 @@ texbufferrange(struct gl_context *ctx, GLenum target, GLenum internalFormat, texObj->BufferSize = size; } _mesa_unlock_texture(ctx, texObj); + + ctx->NewDriverState |= ctx->DriverFlags.NewTextureBuffer; + + if (bufObj) { + bufObj->UsageHistory |= USAGE_TEXTURE_BUFFER; + } } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
