diff options
author | Jason Ekstrand <[email protected]> | 2017-06-01 20:38:19 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-10-12 19:58:40 -0700 |
commit | 760a5815d4bb6d3d7bd5c9dad8a195c7f5ae79d1 (patch) | |
tree | 033847f594f5d100e298917b5f3222f5619c2856 /src/mesa/main/dd.h | |
parent | cdf626294e99e3880fddf2d9f2013b71ba9fb7c6 (diff) |
meta: Delete the PBO texture upload/download path
Reviewed-by: Topi Pohjolainen <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 7b2fe8b519c..da03b2e8b94 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -426,22 +426,6 @@ struct dd_function_table { struct gl_texture_object *texObj, struct gl_texture_object *origTexObj); - /** Sets the given buffer object as the texture's storage. The given - * texture must have target GL_TEXTURE_1D, GL_TEXTURE_2D, - * GL_TEXTURE_RECTANGLE, and GL_TEXTURE_2D_ARRAY; have only a single - * mipmap level; be immutable; and must not have any assigned storage. - * The format and dimensions of the gl_texture_object will already be - * initialized. - * - * This function is used by the meta PBO texture upload path. - */ - bool (*SetTextureStorageForBufferObject)(struct gl_context *ctx, - struct gl_texture_object *texObj, - struct gl_buffer_object *bufferObj, - uint32_t buffer_offset, - uint32_t row_stride, - bool read_only); - /** * Map a renderbuffer into user space. * \param mode bitmask of GL_MAP_READ_BIT, GL_MAP_WRITE_BIT and |