blob: 17a6990174b6d7271a82b757359e692f4dd8decf [file] [log] [blame]
enikey1b758b72008-12-19 06:24:06 +00001package com.tightvnc.decoder;
2
enikeyd734f102008-12-19 06:28:08 +00003import com.tightvnc.vncviewer.RfbInputStream;
4import java.awt.Graphics;
5
6public class HextileDecoder extends RawDecoder {
7
8 // Contstants used in the Hextile decoder
9 final static int
10 HextileRaw = 1,
11 HextileBackgroundSpecified = 2,
12 HextileForegroundSpecified = 4,
13 HextileAnySubrects = 8,
14 HextileSubrectsColoured = 16;
15
16 public HextileDecoder(Graphics g, RfbInputStream is) {
17 super(g, is);
18 }
19
20 public HextileDecoder(Graphics g, RfbInputStream is, int frameBufferW,
21 int frameBufferH) {
22 super(g, is, frameBufferW, frameBufferH);
23 }
enikey1b758b72008-12-19 06:24:06 +000024
25}