blob: 15e275058af558b49a97fa9be3e966fce9ecac62 (
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 void
brw_texture_create(struct pipe_context *pipe, struct pipe_texture **pt);
extern void
brw_texture_release(struct pipe_context *pipe, struct pipe_texture **pt);
#endif
|