diff options
author | Timothy Arceri <[email protected]> | 2017-07-26 09:13:33 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-07-26 10:16:20 +1000 |
commit | 5fac8c116e82886d4e9235e4859d4c23969bf1d7 (patch) | |
tree | a89323e2f73e482537654683a23f5bbf73a66ed9 /src/mesa/main/bufferobj.c | |
parent | 6be1c69b97175a0ae71dda584629b91093728c12 (diff) |
mesa: drop useless assert
NewBufferObj() is called when the shared state is allocated so we
wouldn't get this far if it was NULL.
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/mesa/main/bufferobj.c')
-rw-r--r-- | src/mesa/main/bufferobj.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index 343e6c3ca5c..cb666dcf13f 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -989,7 +989,6 @@ _mesa_handle_bind_buffer_gen(struct gl_context *ctx, /* If this is a new buffer object id, or one which was generated but * never used before, allocate a buffer object now. */ - assert(ctx->Driver.NewBufferObject); buf = ctx->Driver.NewBufferObject(ctx, buffer); if (!buf) { _mesa_error(ctx, GL_OUT_OF_MEMORY, "%s", caller); |