Axiom.RenderSystems.OpenGLES.GLESPBRenderTexture.this C# (CSharp) 메소드

this() 공개 메소드

public this ( string attribute ) : object
attribute string
리턴 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 ];
			}
		}