mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 11:57:03 +08:00
small change to map grid service
This commit is contained in:
@@ -141,11 +141,11 @@ namespace OpenSim.Services.MapImageService
|
|||||||
// this multi-resolution routine to be called a zillion times an causes much CPU
|
// this multi-resolution routine to be called a zillion times an causes much CPU
|
||||||
// time to be spent creating multi-resolution tiles that will be replaced when
|
// time to be spent creating multi-resolution tiles that will be replaced when
|
||||||
// the next maptile arrives.
|
// the next maptile arrives.
|
||||||
private readonly struct MapToMultiRez
|
private struct MapToMultiRez
|
||||||
{
|
{
|
||||||
public readonly int x;
|
public int x;
|
||||||
public readonly int y;
|
public int y;
|
||||||
public readonly UUID scopeID;
|
public UUID scopeID;
|
||||||
public mapToMultiRez(int pX, int pY, UUID pscopeID)
|
public mapToMultiRez(int pX, int pY, UUID pscopeID)
|
||||||
{
|
{
|
||||||
x = pX;
|
x = pX;
|
||||||
|
|||||||
Reference in New Issue
Block a user