Axiom.RenderSystems.Xna.FixedFunctionEmulation.FixedFunctionPrograms.FixedFunctionProgramsParameters.IsTextureEnabled C# (CSharp) Method

IsTextureEnabled() public method

public IsTextureEnabled ( int index ) : bool
index int
return bool
			public bool IsTextureEnabled( int index )
			{
				if ( index > textureEnabled.Count )
					return false;

				return textureEnabled[ index ];
			}