Axiom.RenderSystems.OpenGLES.GLESPBRenderTexture.this C# (CSharp) Method

this() public method

public this ( string attribute ) : object
attribute string
return object
		public override object this[ string attribute ]
		{
			get
			{
				switch ( attribute.ToLower() )
				{
					case "target":
						GLESSurfaceDescription target = new GLESSurfaceDescription();
						target.Buffer = (GLESHardwarePixelBuffer)pixelBuffer;
						target.ZOffset = zOffset;
						return target;
				}
				return base[ attribute ];
			}
		}