Commit 2b086db2 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

msw vout: More debug

parent 13b5baf3
......@@ -1832,7 +1832,7 @@ static int DirectXLockSurface( vout_thread_t *p_vout, picture_t *p_pic )
dxresult = IDirectDrawSurface2_Lock( p_pic->p_sys->p_surface, NULL,
&p_pic->p_sys->ddsd,
DDLOCK_WAIT, NULL);
#if 0
#ifndef NDEBUG
if( dxresult == DDERR_SURFACELOST )
msg_Dbg( p_vout, "DirectXLockSurface: DDERR_SURFACELOST" );
#endif
......
......@@ -691,7 +691,7 @@ void UpdateRects( vout_thread_t *p_vout, bool b_force )
return;
}
#if 0
#ifndef NDEBUG
msg_Dbg( p_vout, "DirectXUpdateRects image_dst_clipped coords:"
" %i,%i,%i,%i",
rect_dest_clipped.left, rect_dest_clipped.top,
......@@ -752,7 +752,7 @@ void UpdateRects( vout_thread_t *p_vout, bool b_force )
}
#endif
#if 0
#ifndef NDEBUG
msg_Dbg( p_vout, "DirectXUpdateRects image_src_clipped"
" coords: %i,%i,%i,%i",
rect_src_clipped.left, rect_src_clipped.top,
......
......@@ -688,8 +688,8 @@ static int GAPILockSurface( vout_thread_t *p_vout, picture_t *p_pic )
return VLC_EGENERIC;
}
#if 0
msg_Err( p_vout, "video (%d,%d,%d,%d) display (%d,%d,%d,%d) "
#ifndef NDEBUG
msg_Dbg( p_vout, "video (%d,%d,%d,%d) display (%d,%d,%d,%d) "
"dest (%d,%d,%d,%d)",
video_rect.left, video_rect.right,
video_rect.top, video_rect.bottom,
......@@ -701,7 +701,7 @@ static int GAPILockSurface( vout_thread_t *p_vout, picture_t *p_pic )
if( !(p_dest = GXBeginDraw()) )
{
#if 0
#ifndef NDEBUG
msg_Err( p_vout, "GXBeginDraw error %d ", GetLastError() );
#endif
return VLC_EGENERIC;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment