gallium: added some assertions to st_render_texture() to check surface format

Make sure we can really render to the texture surface given its format.
This commit is contained in:
Brian Paul 2008-04-29 12:54:52 -06:00
parent cc94863429
commit dd9dc7df80
1 changed files with 2 additions and 0 deletions

View File

@ -370,6 +370,8 @@ st_render_texture(GLcontext *ctx,
att->TextureLevel,
att->Zoffset);
assert(strb->surface);
assert(screen->is_format_supported(screen, strb->surface->format, PIPE_TEXTURE));
assert(screen->is_format_supported(screen, strb->surface->format, PIPE_SURFACE));
init_renderbuffer_bits(strb, pt->format);