summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/postprocess/pp_program.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-11-16 13:55:44 -0700
committerBrian Paul <[email protected]>2013-11-18 08:56:34 -0700
commitde2fd7dd0ba3856aa1cb08302bed0814b16f8810 (patch)
tree6c50d130a70c81c1301097e5ff2f09ad8f6f6dab /src/gallium/auxiliary/postprocess/pp_program.c
parent401f2d6ea8d8068747b6f507e8a8907ad9f6fe71 (diff)
postprocess: rename program to pp_program
To match the pp_ namespace convention. Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/postprocess/pp_program.c')
-rw-r--r--src/gallium/auxiliary/postprocess/pp_program.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/postprocess/pp_program.c b/src/gallium/auxiliary/postprocess/pp_program.c
index 61a03234e89..916d6fceaac 100644
--- a/src/gallium/auxiliary/postprocess/pp_program.c
+++ b/src/gallium/auxiliary/postprocess/pp_program.c
@@ -37,17 +37,17 @@
#include "util/u_memory.h"
/** Initialize the internal details */
-struct program *
+struct pp_program *
pp_init_prog(struct pp_queue_t *ppq, struct pipe_context *pipe,
struct cso_context *cso)
{
- struct program *p;
+ struct pp_program *p;
pp_debug("Initializing program\n");
if (!pipe)
return NULL;
- p = CALLOC(1, sizeof(struct program));
+ p = CALLOC(1, sizeof(struct pp_program));
if (!p)
return NULL;