diff options
author | Pierre-Eric Pelloux-Prayer <[email protected]> | 2019-06-04 15:47:05 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-06-28 15:41:32 -0400 |
commit | 29194648a6afc2cd681e3f5d1643ca49220b7975 (patch) | |
tree | c7ad1137fb7553ed27c882f0043edb596c3ad605 /src/mesa/main/texobj.h | |
parent | 274104ec381ebb1505e0e078959f94724b51ec58 (diff) |
mesa: extend _mesa_lookup_or_create_texture to support EXT_dsa
Adds a boolean to implement EXT_dsa specifics.
Reviewed-by: Marek Olšák <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/main/texobj.h')
-rw-r--r-- | src/mesa/main/texobj.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h index 3ebfa6715db..54399af5381 100644 --- a/src/mesa/main/texobj.h +++ b/src/mesa/main/texobj.h @@ -179,7 +179,7 @@ _mesa_bind_texture(struct gl_context *ctx, GLenum target, extern struct gl_texture_object * _mesa_lookup_or_create_texture(struct gl_context *ctx, GLenum target, - GLuint texName, bool no_error, + GLuint texName, bool no_error, bool is_ext_dsa, const char *name); /*@}*/ |