blob: cfd6b1ef3ae66c5fa46310cc2fc58c370eec56e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef BRW_TEX_LAYOUT_H
#define BRW_TEX_LAYOUT_H
#include "pipe/p_compiler.h"
struct pipe_context;
struct pipe_texture;
extern struct pipe_texture *
brw_texture_create(struct pipe_context *pipe, const struct pipe_texture *templat);
extern void
brw_texture_release(struct pipe_context *pipe, struct pipe_texture **pt);
#endif
|