OSDN Git Service

mesa/es: Add OpenGL ES overlay.
[android-x86/external-mesa.git] / src / mesa / es / state_tracker / st_cb_drawtex.h
1 /**************************************************************************
2  * 
3  * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
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
16 extern void
17 _mesa_DrawTexf(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height);
18
19
20 extern void
21 _mesa_DrawTexfv(const GLfloat *coords);
22
23
24 extern void
25 st_destroy_drawtex(struct st_context *st);
26
27
28 #endif