diff options
author | Brian Paul <[email protected]> | 2011-04-11 21:19:41 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-04-11 21:19:41 -0600 |
commit | 1ca55854591d647a485364c2db67899e7f9aaae1 (patch) | |
tree | d1125cca4e991429b465f158581f48a7e6d539b8 /src/mesa/main/dd.h | |
parent | 2432ca1c2e205100d48070305ba2d5f8978bce03 (diff) | |
parent | 65b024d63a44464ecf752bec417281109f4bd81e (diff) |
Merge branch 'arb_sampler_objects'
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 34d67b5bac8..d749b245e13 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -1021,6 +1021,14 @@ struct dd_function_table { * \name GL_NV_texture_barrier interface */ void (*TextureBarrier)(struct gl_context *ctx); + + /** + * \name GL_ARB_sampler_objects + */ + struct gl_sampler_object * (*NewSamplerObject)(struct gl_context *ctx, + GLuint name); + void (*DeleteSamplerObject)(struct gl_context *ctx, + struct gl_sampler_object *samp); }; |