コード例 #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()));
 }