1 package gov
.nasa
.worldwind
.formats
.nitfs
;
5 Copyright (C) 2001, 2007 United States Government
6 as represented by the Administrator of the
7 National Aeronautics and Space Administration.
13 * @version $Id: DDSBlock4x4 Apr 21, 2007 10:33:06 AM
17 public short color0
, color1
;
20 public DDSBlock4x4( short color0
, short color1
, int bitmask
)
24 this.bitmask
= bitmask
;
27 public void writeTo(ByteBuffer buffer
)
31 buffer
.putShort( this.color0
);
32 buffer
.putShort( this.color1
);
33 buffer
.putInt( this.bitmask
);