Zdravím,
mám problém, když chci vytvořit screen přes OpenGL - screen to vytvoří, ale je celý černý, nevíte proč?
[code]Dim screen2 As System.Drawing.Bitmap
screen2 = New System.Drawing.Bitmap(width, height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)
Dim bd As System.Drawing.Imaging.BitmapData = screen2.LockBits(New Rectangle(0, 0, width, height), Drawing.Imaging.ImageLockMode.[WriteOnly], Drawing.Imaging.PixelFormat.Format32bppArgb)
GL.glReadPixels(0, 0, width, height, GL.GL_RGB, GL.GL_UNSIGNED_BYTE, bd.Scan0)
screen2.UnlockBits(bd)
screen2.Save("c:\test.bmp", System.Drawing.Imaging.ImageFormat.Bmp)[/code]
díky moc za odpovědi!