2007-01-20から1日間の記事一覧

Yanesdk で FillRectangle を行う(v1.55)

まず、どこかで1x1の白のテクスチャを作ります。 Bitmap bitmap = new Bitmap(1, 1, PixelFormat.Format32bppArgb); bitmap.SetPixel(0, 0, Color.FromArgb(255, 255, 255, 255)); texture = new Yanesdk.Draw.GlTexture(); texture.SetBitmap(bitmap); …