Exemplo n.º 1
0
 public VStack(bool _)
 {
     _currentBuffer = s_bufferPool.Allocate();
     _depth         = 0;
 }
Exemplo n.º 2
0
 public VStack(ObjectPool <VBuffer> bufferPool)
 {
     _bufferPool    = bufferPool;
     _currentBuffer = bufferPool.Allocate();
     _depth         = 0;
 }