ADL.DrawRequest.toNative C# (CSharp) 메소드

toNative() 개인적인 메소드

private toNative ( ) : ADLDrawRequest
리턴 ADLDrawRequest
        internal ADLDrawRequest toNative()
        {
            ADLDrawRequest nReq = new ADLDrawRequest();
            nReq.bottom = bottom;
            nReq.top = top;
            nReq.left = left;
            nReq.right = right;
            nReq.windowHandle = hdc;
            return nReq;
        }

Usage Example

예제 #1
0
        public void draw(DrawRequest r)
        {
            ADLDrawRequest nativeR = r.toNative();

            nativeR.rendererId   = _rendererId;
            nativeR.windowHandle = r.hdc;
            NativeAPI.adl_draw(_platformHandle, ref nativeR);
        }
All Usage Examples Of ADL.DrawRequest::toNative
DrawRequest