• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright © 2014 Rob Clark <robclark@freedesktop.org>
3  * SPDX-License-Identifier: MIT
4  *
5  * Authors:
6  *    Rob Clark <robclark@freedesktop.org>
7  */
8 
9 #ifndef FREEDRENO_PROGRAM_H_
10 #define FREEDRENO_PROGRAM_H_
11 
12 #include "pipe/p_context.h"
13 
14 #include "common/freedreno_common.h"
15 
16 BEGINC;
17 
18 void fd_prog_init(struct pipe_context *pctx);
19 void fd_prog_fini(struct pipe_context *pctx);
20 
21 ENDC;
22 
23 #endif /* FREEDRENO_PROGRAM_H_ */
24