コード例 #1
0
ファイル: OpenVG_Images.cs プロジェクト: Wiladams/NewTOAPIA
 abstract public void ReadPixels(object data, VGint dataStride,
                               VGImageFormat dataFormat,
                               VGint sx, VGint sy,
                               VGint width, VGint height);
コード例 #2
0
ファイル: OpenVG_Images.cs プロジェクト: Wiladams/NewTOAPIA
 abstract public void GetImageSubData(VGImage image,
                                    object data, VGint dataStride,
                                    VGImageFormat dataFormat,
                                    VGint x, VGint y,
                                    VGint width, VGint height);
コード例 #3
0
ファイル: OpenVG_Images.cs プロジェクト: Wiladams/NewTOAPIA
 abstract public void WritePixels(object data, VGint dataStride,
                                VGImageFormat dataFormat,
                                VGint dx, VGint dy,
                                VGint width, VGint height);
コード例 #4
0
ファイル: VGImage.cs プロジェクト: Wiladams/NewTOAPIA
 public VGImage(VGImageFormat format, int width, int height, VGbitfield allowedQuality)
 {
     this.Format = format;
     this.Width = width;
     this.Height = height;
 }