blob: e849646a7cbaad686544ce4f5a93b72cc159ac7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**************************************************************************
*
* Copyright 2008 VMware, Inc.
* All Rights Reserved.
*
**************************************************************************/
#ifndef ST_CB_DRAWTEX_H
#define ST_CB_DRAWTEX_H
#include "main/compiler.h"
struct dd_function_table;
struct st_context;
extern void
st_init_drawtex_functions(struct dd_function_table *functions);
extern void
st_destroy_drawtex(struct st_context *st);
#endif /* ST_CB_DRAWTEX_H */
|