st/nine: fix formatting in query9 (cosmetic)
authorAxel Davy <axel.davy@ens.fr>
Mon, 24 Nov 2014 23:38:13 +0000 (00:38 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Wed, 26 Nov 2014 20:09:12 +0000 (20:09 +0000)
Cc: "10.4" <mesa-stable@lists.freedesktop.org>
Reviewed-by: David Heidelberg <david@ixit.cz>
Signed-off-by: Axel Davy <axel.davy@ens.fr>
src/gallium/state_trackers/nine/query9.c

index 908420c30dd2abbc8740ca4c4889e72843ad9e85..39c44352700e2f3a8fc3d40add0dcfe1a94e1080 100644 (file)
@@ -185,15 +185,15 @@ NineQuery9_Issue( struct NineQuery9 *This,
 
     if (dwIssueFlags == D3DISSUE_BEGIN) {
         if (This->state == NINE_QUERY_STATE_RUNNING) {
-           pipe->end_query(pipe, This->pq);
-       }
+        pipe->end_query(pipe, This->pq);
+        }
         pipe->begin_query(pipe, This->pq);
         This->state = NINE_QUERY_STATE_RUNNING;
     } else {
         if (This->state == NINE_QUERY_STATE_RUNNING) {
             pipe->end_query(pipe, This->pq);
             This->state = NINE_QUERY_STATE_ENDED;
-       }
+        }
     }
     return D3D_OK;
 }