
Acked-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14100>
22 lines
494 B
C
22 lines
494 B
C
/**************************************************************************
|
|
*
|
|
* Copyright 2008 VMware, Inc.
|
|
* All Rights Reserved.
|
|
*
|
|
**************************************************************************/
|
|
|
|
|
|
#ifndef ST_CB_DRAWTEX_H
|
|
#define ST_CB_DRAWTEX_H
|
|
|
|
|
|
struct st_context;
|
|
|
|
void st_DrawTex(struct gl_context *ctx, GLfloat x, GLfloat y, GLfloat z,
|
|
GLfloat width, GLfloat height);
|
|
|
|
extern void
|
|
st_destroy_drawtex(struct st_context *st);
|
|
|
|
#endif /* ST_CB_DRAWTEX_H */
|