Пример #1
0
        // c'tor
        public VideoOutput()
        {
            VideoOutput.Instance = this;

            shared = new Shared(this);

            // Create the RenderObject and UpdateObject parts of this mode.
            updateObj = new UpdateObj(this, shared);
            renderObj = new RenderObj(this, shared);
        }   // end of VideoOutput c'tor
Пример #2
0
 // c'tor
 public Shared(VideoOutput parent)
 {
     this.parent = parent;
 }   // end of Shared c'tor
Пример #3
0
 public RenderObj(VideoOutput parent, Shared shared)
 {
     this.parent = parent;
     this.shared = shared;
 }
Пример #4
0
 public UpdateObj(VideoOutput parent, Shared shared)
 {
     this.parent = parent;
     this.shared = shared;
 }