MediaPlayerCtrl.Call_SetWindowSize C# (CSharp) Method

Call_SetWindowSize() private method

private Call_SetWindowSize ( ) : void
return void
	private void Call_SetWindowSize()
	{
		
		#if UNITY_5
		if( SystemInfo.graphicsMultiThreaded == true)
		{


			#if UNITY_5_2
			GL.IssuePluginEvent(EasyMovieTextureRender(), 2 + m_iAndroidMgrID * 10 + 7000);
			#else
			GL.IssuePluginEvent(2+ m_iAndroidMgrID * 10 + 7000);
			#endif
		}
		else
		{
			GetJavaObject().Call("SetWindowSize");
		}
		#else
		GetJavaObject().Call("SetWindowSize");
		#endif
	}
	
MediaPlayerCtrl