diff options
author | Chia-I Wu <[email protected]> | 2011-08-21 21:08:25 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-10-30 20:00:03 +0800 |
commit | b4dc35d9bc879c104faac043b640ae2673763b93 (patch) | |
tree | 712f252b76dadc4ffe680a0c69727f71da8da724 /src/mesa/drivers/common/meta.h | |
parent | 9eac0fce83c88bedfc6d1c9a653c393d2be4b655 (diff) |
meta: add _mesa_meta_DrawTex()
It is set to dd->DrawTex.
Reviewed-by: Brian Paul <[email protected]>
[olv: set dd->DrawTex in _mesa_init_driver_functions]
Diffstat (limited to 'src/mesa/drivers/common/meta.h')
-rw-r--r-- | src/mesa/drivers/common/meta.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/common/meta.h b/src/mesa/drivers/common/meta.h index e0435a822f5..71981398492 100644 --- a/src/mesa/drivers/common/meta.h +++ b/src/mesa/drivers/common/meta.h @@ -129,5 +129,8 @@ _mesa_meta_GetTexImage(struct gl_context *ctx, GLenum format, GLenum type, GLvoid *pixels, struct gl_texture_image *texImage); +extern void +_mesa_meta_DrawTex(struct gl_context *ctx, GLfloat x, GLfloat y, GLfloat z, + GLfloat width, GLfloat height); #endif /* META_H */ |