mirror of
https://github.com/opensim/opensim.git
synced 2026-05-17 20:25:34 +08:00
revert 5134. Changing these bitmaps to 24bit just breaks things, and they never display
on the client.
This commit is contained in:
@@ -270,7 +270,7 @@ namespace OpenSim.Region.Environment.Modules.Scripting.DynamicTexture
|
||||
Bitmap joint;
|
||||
Graphics jG;
|
||||
|
||||
joint = new Bitmap(back.Width, back.Height, PixelFormat.Format24bppRgb);
|
||||
joint = new Bitmap(back.Width, back.Height, PixelFormat.Format32bppArgb);
|
||||
jG = Graphics.FromImage(joint);
|
||||
|
||||
jG.DrawImage(back, 0, 0, back.Width, back.Height);
|
||||
|
||||
Reference in New Issue
Block a user