postprocess: rename program to pp_program

To match the pp_ namespace convention.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
Brian Paul 2013-11-16 13:55:44 -07:00
parent 401f2d6ea8
commit de2fd7dd0b
8 changed files with 23 additions and 23 deletions

View File

@ -60,7 +60,7 @@ struct pp_queue_t
void ***shaders; /* Shaders in TGSI form */ void ***shaders; /* Shaders in TGSI form */
unsigned int *filters; /* Active filter to filters.h mapping. */ unsigned int *filters; /* Active filter to filters.h mapping. */
struct program *p; struct pp_program *p;
bool fbos_init; bool fbos_init;
}; };
@ -74,7 +74,7 @@ void pp_run(struct pp_queue_t *, struct pipe_resource *,
void pp_free(struct pp_queue_t *); void pp_free(struct pp_queue_t *);
void pp_free_fbos(struct pp_queue_t *); void pp_free_fbos(struct pp_queue_t *);
void pp_debug(const char *, ...); void pp_debug(const char *, ...);
struct program *pp_init_prog(struct pp_queue_t *, struct pipe_context *pipe, struct pp_program *pp_init_prog(struct pp_queue_t *, struct pipe_context *pipe,
struct cso_context *); struct cso_context *);
void pp_init_fbos(struct pp_queue_t *, unsigned int, unsigned int); void pp_init_fbos(struct pp_queue_t *, unsigned int, unsigned int);
void pp_blit(struct pipe_context *pipe, void pp_blit(struct pipe_context *pipe,

View File

@ -35,7 +35,7 @@ pp_nocolor(struct pp_queue_t *ppq, struct pipe_resource *in,
struct pipe_resource *out, unsigned int n) struct pipe_resource *out, unsigned int n)
{ {
struct program *p = ppq->p; struct pp_program *p = ppq->p;
pp_filter_setup_in(p, in); pp_filter_setup_in(p, in);
pp_filter_setup_out(p, out); pp_filter_setup_out(p, out);

View File

@ -43,15 +43,15 @@
/* Helper functions for the filters */ /* Helper functions for the filters */
void pp_filter_setup_in(struct program *, struct pipe_resource *); void pp_filter_setup_in(struct pp_program *, struct pipe_resource *);
void pp_filter_setup_out(struct program *, struct pipe_resource *); void pp_filter_setup_out(struct pp_program *, struct pipe_resource *);
void pp_filter_end_pass(struct program *); void pp_filter_end_pass(struct pp_program *);
void *pp_tgsi_to_state(struct pipe_context *, const char *, bool, void *pp_tgsi_to_state(struct pipe_context *, const char *, bool,
const char *); const char *);
void pp_filter_misc_state(struct program *); void pp_filter_misc_state(struct pp_program *);
void pp_filter_draw(struct program *); void pp_filter_draw(struct pp_program *);
void pp_filter_set_fb(struct program *); void pp_filter_set_fb(struct pp_program *);
void pp_filter_set_clear_fb(struct program *); void pp_filter_set_clear_fb(struct pp_program *);
#endif #endif

View File

@ -255,7 +255,7 @@ pp_init_fbos(struct pp_queue_t *ppq, unsigned int w,
unsigned int h) unsigned int h)
{ {
struct program *p = ppq->p; /* The lazy will inherit the earth */ struct pp_program *p = ppq->p; /* The lazy will inherit the earth */
unsigned int i; unsigned int i;
struct pipe_resource tmp_res; struct pipe_resource tmp_res;

View File

@ -75,7 +75,7 @@ pp_jimenezmlaa_run(struct pp_queue_t *ppq, struct pipe_resource *in,
struct pipe_resource *out, unsigned int n, bool iscolor) struct pipe_resource *out, unsigned int n, bool iscolor)
{ {
struct program *p = ppq->p; struct pp_program *p = ppq->p;
struct pipe_depth_stencil_alpha_state mstencil; struct pipe_depth_stencil_alpha_state mstencil;
struct pipe_sampler_view v_tmp, *arr[3]; struct pipe_sampler_view v_tmp, *arr[3];

View File

@ -37,17 +37,17 @@
#include "util/u_memory.h" #include "util/u_memory.h"
/** Initialize the internal details */ /** Initialize the internal details */
struct program * struct pp_program *
pp_init_prog(struct pp_queue_t *ppq, struct pipe_context *pipe, pp_init_prog(struct pp_queue_t *ppq, struct pipe_context *pipe,
struct cso_context *cso) struct cso_context *cso)
{ {
struct program *p; struct pp_program *p;
pp_debug("Initializing program\n"); pp_debug("Initializing program\n");
if (!pipe) if (!pipe)
return NULL; return NULL;
p = CALLOC(1, sizeof(struct program)); p = CALLOC(1, sizeof(struct pp_program));
if (!p) if (!p)
return NULL; return NULL;

View File

@ -34,7 +34,7 @@
/** /**
* Internal control details. * Internal control details.
*/ */
struct program struct pp_program
{ {
struct pipe_screen *screen; struct pipe_screen *screen;
struct pipe_context *pipe; struct pipe_context *pipe;

View File

@ -208,7 +208,7 @@ pp_run(struct pp_queue_t *ppq, struct pipe_resource *in,
/** Setup this resource as the filter input. */ /** Setup this resource as the filter input. */
void void
pp_filter_setup_in(struct program *p, struct pipe_resource *in) pp_filter_setup_in(struct pp_program *p, struct pipe_resource *in)
{ {
struct pipe_sampler_view v_tmp; struct pipe_sampler_view v_tmp;
u_sampler_view_default_template(&v_tmp, in, in->format); u_sampler_view_default_template(&v_tmp, in, in->format);
@ -217,7 +217,7 @@ pp_filter_setup_in(struct program *p, struct pipe_resource *in)
/** Setup this resource as the filter output. */ /** Setup this resource as the filter output. */
void void
pp_filter_setup_out(struct program *p, struct pipe_resource *out) pp_filter_setup_out(struct pp_program *p, struct pipe_resource *out)
{ {
p->surf.format = out->format; p->surf.format = out->format;
@ -226,7 +226,7 @@ pp_filter_setup_out(struct program *p, struct pipe_resource *out)
/** Clean up the input and output set with the above. */ /** Clean up the input and output set with the above. */
void void
pp_filter_end_pass(struct program *p) pp_filter_end_pass(struct pp_program *p)
{ {
pipe_surface_reference(&p->framebuffer.cbufs[0], NULL); pipe_surface_reference(&p->framebuffer.cbufs[0], NULL);
pipe_sampler_view_reference(&p->view, NULL); pipe_sampler_view_reference(&p->view, NULL);
@ -277,7 +277,7 @@ pp_tgsi_to_state(struct pipe_context *pipe, const char *text, bool isvs,
/** Setup misc state for the filter. */ /** Setup misc state for the filter. */
void void
pp_filter_misc_state(struct program *p) pp_filter_misc_state(struct pp_program *p)
{ {
cso_set_blend(p->cso, &p->blend); cso_set_blend(p->cso, &p->blend);
cso_set_depth_stencil_alpha(p->cso, &p->depthstencil); cso_set_depth_stencil_alpha(p->cso, &p->depthstencil);
@ -289,7 +289,7 @@ pp_filter_misc_state(struct program *p)
/** Draw with the filter to the set output. */ /** Draw with the filter to the set output. */
void void
pp_filter_draw(struct program *p) pp_filter_draw(struct pp_program *p)
{ {
util_draw_vertex_buffer(p->pipe, p->cso, p->vbuf, 0, 0, util_draw_vertex_buffer(p->pipe, p->cso, p->vbuf, 0, 0,
PIPE_PRIM_QUADS, 4, 2); PIPE_PRIM_QUADS, 4, 2);
@ -297,14 +297,14 @@ pp_filter_draw(struct program *p)
/** Set the framebuffer as active. */ /** Set the framebuffer as active. */
void void
pp_filter_set_fb(struct program *p) pp_filter_set_fb(struct pp_program *p)
{ {
cso_set_framebuffer(p->cso, &p->framebuffer); cso_set_framebuffer(p->cso, &p->framebuffer);
} }
/** Set the framebuffer as active and clear it. */ /** Set the framebuffer as active and clear it. */
void void
pp_filter_set_clear_fb(struct program *p) pp_filter_set_clear_fb(struct pp_program *p)
{ {
cso_set_framebuffer(p->cso, &p->framebuffer); cso_set_framebuffer(p->cso, &p->framebuffer);
p->pipe->clear(p->pipe, PIPE_CLEAR_COLOR, &p->clear_color, 0, 0); p->pipe->clear(p->pipe, PIPE_CLEAR_COLOR, &p->clear_color, 0, 0);