diff libvo/vo_direct3d.c @ 28028:62ccb6c80212

Consistency cosmetics: do not compare against NULL in ifs
author reimar
date Tue, 02 Dec 2008 09:40:09 +0000
parents f210d48c4396
children 07ae7bc7487b
line wrap: on
line diff
--- a/libvo/vo_direct3d.c	Tue Dec 02 09:38:24 2008 +0000
+++ b/libvo/vo_direct3d.c	Tue Dec 02 09:40:09 2008 +0000
@@ -180,12 +180,12 @@
         priv->locked_rect.pBits = NULL;
     }
 
-    if (priv->d3d_surface != NULL) {
+    if (priv->d3d_surface) {
         IDirect3DSurface9_Release(priv->d3d_surface);
         priv->d3d_surface = NULL;
     }
 
-    if (priv->d3d_backbuf != NULL) {
+    if (priv->d3d_backbuf) {
         IDirect3DSurface9_Release(priv->d3d_backbuf);
         priv->d3d_backbuf = NULL;
     }
@@ -298,7 +298,7 @@
     destroy_d3d_surfaces();
 
     /* Destroy the D3D Device */
-    if (priv->d3d_device != NULL) {
+    if (priv->d3d_device) {
         IDirect3DDevice9_Release(priv->d3d_device);
         priv->d3d_device = NULL;
     }
@@ -367,13 +367,13 @@
     destroy_d3d_surfaces();
 
     /* Destroy the D3D Device */
-    if (priv->d3d_device != NULL) {
+    if (priv->d3d_device) {
         IDirect3DDevice9_Release(priv->d3d_device);
         priv->d3d_device = NULL;
     }
 
     /* Stop the whole D3D. */
-    if (NULL != priv->d3d_handle) {
+    if (priv->d3d_handle) {
         mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Calling IDirect3D9_Release\r\n");
         IDirect3D9_Release(priv->d3d_handle);
     }
@@ -637,7 +637,7 @@
     destroy_d3d_surfaces();
 
     /* Destroy the D3D Device */
-    if (priv->d3d_device != NULL) {
+    if (priv->d3d_device) {
         IDirect3DDevice9_Release(priv->d3d_device);
         priv->d3d_device = NULL;
     }