ソースを参照

mesa: disable visual warning unless LIBGL_DEBUG is defined

tags/mesa_20090313
Brian Paul 17年前
コミット
f82d5cf769
1個のファイルの変更4行の追加2行の削除
  1. 4
    2
      src/glx/x11/glxext.c

+ 4
- 2
src/glx/x11/glxext.c ファイルの表示

@@ -671,8 +671,10 @@ filter_modes( __GLcontextModes ** server_modes,
if ( do_delete && (m->visualID != 0) ) {
do_delete = GL_FALSE;

fprintf(stderr, "libGL warning: 3D driver claims to not support "
"visual 0x%02x\n", m->visualID);
if (getenv("LIBGL_DEBUG")) {
fprintf(stderr, "libGL warning: 3D driver claims to not support "
"visual 0x%02x\n", m->visualID);
}
}

if ( do_delete ) {

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