Untested -- just the same changes done to progs/gallium/python.
templat.depth0 = 1;
templat.last_level = 0;
templat.nr_samples = 1;
- templat.tex_usage = (PIPE_TEXTURE_USAGE_RENDER_TARGET |
- PIPE_TEXTURE_USAGE_DISPLAY_TARGET);
+ templat.bind = (PIPE_BIND_RENDER_TARGET |
+ PIPE_BIND_DISPLAY_TARGET);
- tex = screen->texture_create(screen,
+ tex = screen->resource_create(screen,
&templat);
if (tex == NULL)
exit(4);
surf = screen->get_tex_surface(screen, tex, 0, 0, 0,
- PIPE_TEXTURE_USAGE_RENDER_TARGET |
- PIPE_TEXTURE_USAGE_DISPLAY_TARGET);
+ PIPE_BIND_RENDER_TARGET |
+ PIPE_BIND_DISPLAY_TARGET);
if (surf == NULL)
exit(5);
tmplt.height0 = HEIGHT;
tmplt.depth0 = 1;
tmplt.last_level = 0;
- tmplt.tex_usage = PIPE_TEXTURE_USAGE_RENDER_TARGET;
+ tmplt.bind = PIPE_BIND_RENDER_TARGET;
- p->target = p->screen->texture_create(p->screen, &tmplt);
+ p->target = p->screen->resource_create(p->screen, &tmplt);
}
/* sampler texture */
t_tmplt.height0 = 2;
t_tmplt.depth0 = 1;
t_tmplt.last_level = 0;
- t_tmplt.tex_usage = PIPE_TEXTURE_USAGE_RENDER_TARGET;
+ t_tmplt.bind = PIPE_BIND_RENDER_TARGET;
- p->tex = p->screen->texture_create(p->screen, &t_tmplt);
+ p->tex = p->screen->resource_create(p->screen, &t_tmplt);
t = p->pipe->get_tex_transfer(p->pipe, p->tex,
0, 0, 0, /* face, level, zslice */
tmplt.height0 = HEIGHT;
tmplt.depth0 = 1;
tmplt.last_level = 0;
- tmplt.tex_usage = PIPE_TEXTURE_USAGE_RENDER_TARGET;
+ tmplt.bind = PIPE_BIND_RENDER_TARGET;
- p->target = p->screen->texture_create(p->screen, &tmplt);
+ p->target = p->screen->resource_create(p->screen, &tmplt);
}
/* disabled blending/masking */