Axiom.RenderSystems.DirectX9.D3DGpuProgram.load C# (CSharp) Метод

load() защищенный метод

Overridden to allow for loading microcode from external sources.
protected load ( ) : void
Результат void
		protected override void load()
		{
			if ( externalMicrocode != null )
			{
				// unload if needed
				if ( IsLoaded )
				{
					Unload();
				}

				// creates the shader from an external microcode source
				// for example, a compiled HLSL program
				LoadFromMicrocode( externalMicrocode );
			}
			else
			{
				// call base implementation
				base.load();
			}
		}