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 13struct st_context; 14 15void st_DrawTex(struct gl_context *ctx, GLfloat x, GLfloat y, GLfloat z, 16 GLfloat width, GLfloat height); 17 18extern void 19st_destroy_drawtex(struct st_context *st); 20 21#endif /* ST_CB_DRAWTEX_H */ 22