예제 #1
0
파일: Gcmf.cs 프로젝트: trashbyte/LibGC
        private int SizeOf2VertexPool(GcGame game)
        {
            bool isVtx16Bit = (SectionFlags & (uint)GcmfSectionFlags._16Bit) != 0 &&
                              !GcmfVersionDetails.Is16BitEffectiveModelIgnored(game);

            return(VertexPool.Sum(vtx => vtx.SizeOfIndexed(isVtx16Bit)));
        }
예제 #2
0
 private int SizeOf2VertexPool()
 {
     return(VertexPool.Sum(vtx => vtx.SizeOfIndexed()));
 }