encperf: add compression level to encoding list
Explicitly add the compression level to the list of encodings so it's obvious
how to override it.
diff --git a/tests/encperf.cxx b/tests/encperf.cxx
index ffa3047..2064496 100644
--- a/tests/encperf.cxx
+++ b/tests/encperf.cxx
@@ -60,7 +60,8 @@
static const rdr::S32 encodings[] = {
rfb::encodingTight, rfb::encodingCopyRect, rfb::encodingRRE,
rfb::encodingHextile, rfb::encodingZRLE, rfb::pseudoEncodingLastRect,
- rfb::pseudoEncodingQualityLevel0 + 8 };
+ rfb::pseudoEncodingQualityLevel0 + 8,
+ rfb::pseudoEncodingCompressLevel0 + 2};
class DummyOutStream : public rdr::OutStream {
public: