xgl:  Remove XGL_* typedef wrappers

Part of moving to xgl.h rev#38, svn rev 29293-29302
diff --git a/icd/intel/cmd.h b/icd/intel/cmd.h
index 1415bc1..a1a076d 100644
--- a/icd/intel/cmd.h
+++ b/icd/intel/cmd.h
@@ -134,8 +134,8 @@
         uint32_t kernel_offset;
     } *entries;
 
-    XGL_UINT count;
-    XGL_UINT used;
+    uint32_t count;
+    uint32_t used;
 };
 
 /*
@@ -191,21 +191,21 @@
 
     struct intel_render_pass *render_pass;
 
-    XGL_UINT draw_count;
+    uint32_t draw_count;
     uint32_t wa_flags;
 };
 
 struct intel_cmd_writer {
-    XGL_SIZE size;
+    size_t size;
     struct intel_bo *bo;
     void *ptr;
 
-    XGL_SIZE used;
+    size_t used;
 
     /* for decoding */
     struct intel_cmd_item *items;
-    XGL_UINT item_alloc;
-    XGL_UINT item_used;
+    uint32_t item_alloc;
+    uint32_t item_used;
 };
 
 struct intel_cmd {
@@ -216,13 +216,13 @@
     int pipeline_select;
 
     struct intel_cmd_reloc *relocs;
-    XGL_UINT reloc_count;
+    uint32_t reloc_count;
 
     XGL_FLAGS flags;
 
     struct intel_cmd_writer writers[INTEL_CMD_WRITER_COUNT];
 
-    XGL_UINT reloc_used;
+    uint32_t reloc_used;
     XGL_RESULT result;
 
     struct intel_cmd_bind bind;