diff TaskManager/Test/simple_pack/spu_span.h @ 84:c2e178b3415f

create SPUSPANLIST no use task/spu_span.cpp
author chiaki
date Tue, 26 Feb 2008 21:49:50 +0900
parents db2b7c565b89
children 5c194c71eca8
line wrap: on
line diff
--- a/TaskManager/Test/simple_pack/spu_span.h	Wed Feb 20 17:25:48 2008 +0900
+++ b/TaskManager/Test/simple_pack/spu_span.h	Tue Feb 26 21:49:50 2008 +0900
@@ -7,17 +7,19 @@
 
 typedef struct SPUSPAN {
   int length;
-  SPANPACK_PTR spp[64];
-  SPUSPAN *next;
+  //SPANPACK spp[23];  // window_height = 1080  ( 1080/8/6 = 22.5 )
+  SPANPACK spp[10];   // window_height = 480  ( 480/8/6 = 10 )
+  //SPUSPAN *next;
 } SPUSPAN;
 
 typedef struct SPUSPANLIST {
-  SPUSPAN ss[6];
+  SPUSPAN ss[6];  // 6 = number of SPU
 } SPUSPANLIST;
 
+/*
 typedef struct SPLSSL {
   SPUSPANLIST *ssl;
   SPANPACKLIST *spl;
 } SPLSSL;
-
+*/
 #endif