xref: /aosp_15_r20/external/mesa3d/src/mesa/state_tracker/st_cb_drawtex.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /**************************************************************************
2  *
3  * Copyright 2008 VMware, Inc.
4  * All Rights Reserved.
5  *
6  **************************************************************************/
7 
8 
9 #ifndef ST_CB_DRAWTEX_H
10 #define ST_CB_DRAWTEX_H
11 
12 
13 struct st_context;
14 
15 void st_DrawTex(struct gl_context *ctx, GLfloat x, GLfloat y, GLfloat z,
16                 GLfloat width, GLfloat height);
17 
18 extern void
19 st_destroy_drawtex(struct st_context *st);
20 
21 #endif /* ST_CB_DRAWTEX_H */
22