public GraphicsProxy()
 {
     calls = ByteBuffer.allocate(INITIAL_BUFFER_SIZE);
     calls.order(ByteOrder.LITTLE_ENDIAN);
     calls.put(calls.order() == ByteOrder.BIG_ENDIAN ? (byte) 1 : (byte) 0);
     isDebugging = java.lang.System.getProperty("debug", "false") == "true";
 }