ソースを参照

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.
tags/mesa_20090313
Brian Paul 17年前
コミット
dd9dc7df80
1個のファイルの変更2行の追加0行の削除
  1. 2
    0
      src/mesa/state_tracker/st_cb_fbo.c

+ 2
- 0
src/mesa/state_tracker/st_cb_fbo.c ファイルの表示

@@ -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);


読み込み中…
キャンセル
保存