Example #1
0
		public bool SetFrameBuffer( uint bufferAddress, uint bufferSize, PixelFormat pixelFormat, BufferSyncMode bufferSyncMode )
		{
			this.Properties.BufferAddress = bufferAddress;
			this.Properties.BufferSize = bufferSize;
			this.Properties.PixelFormat = pixelFormat;
			this.Properties.SyncMode = bufferSyncMode;
			return true;
		}
Example #2
0
 public bool SetFrameBuffer(uint bufferAddress, uint bufferSize, PixelFormat pixelFormat, BufferSyncMode bufferSyncMode)
 {
     this.Properties.BufferAddress = bufferAddress;
     this.Properties.BufferSize    = bufferSize;
     this.Properties.PixelFormat   = pixelFormat;
     this.Properties.SyncMode      = bufferSyncMode;
     return(true);
 }