class com.sun.glass.ui.monocle.FramebufferY8 extends com.sun.glass.ui.monocle.Framebuffer
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.glass.ui.monocle.FramebufferY8
  super_class: com.sun.glass.ui.monocle.Framebuffer
{
  private static final int BITS_TO_BYTES;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  private final com.sun.javafx.logging.PlatformLogger logger;
    descriptor: Lcom/sun/javafx/logging/PlatformLogger;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.nio.ByteBuffer bb;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int width;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int height;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int bitDepth;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int byteDepth;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.nio.ByteBuffer lineByteBuffer;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.Buffer linePixelBuffer;
    descriptor: Ljava/nio/Buffer;
    flags: (0x0002) ACC_PRIVATE

  void <init>(java.nio.ByteBuffer, int, int, int, boolean);
    descriptor: (Ljava/nio/ByteBuffer;IIIZ)V
    flags: (0x0000) 
    Code:
      stack=6, locals=7, args_size=6
        start local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
        start local 1 // java.nio.ByteBuffer bb
        start local 2 // int width
        start local 3 // int height
        start local 4 // int depth
        start local 5 // boolean clear
         0: .line 76
            aload 0 /* this */
            aload 1 /* bb */
            iload 2 /* width */
            iload 3 /* height */
            iload 4 /* depth */
            iload 5 /* clear */
            invokespecial com.sun.glass.ui.monocle.Framebuffer.<init>:(Ljava/nio/ByteBuffer;IIIZ)V
         1: .line 52
            aload 0 /* this */
            invokestatic com.sun.javafx.util.Logging.getJavaFXLogger:()Lcom/sun/javafx/logging/PlatformLogger;
            putfield com.sun.glass.ui.monocle.FramebufferY8.logger:Lcom/sun/javafx/logging/PlatformLogger;
         2: .line 77
            aload 0 /* this */
            aload 1 /* bb */
            putfield com.sun.glass.ui.monocle.FramebufferY8.bb:Ljava/nio/ByteBuffer;
         3: .line 78
            aload 0 /* this */
            iload 2 /* width */
            putfield com.sun.glass.ui.monocle.FramebufferY8.width:I
         4: .line 79
            aload 0 /* this */
            iload 3 /* height */
            putfield com.sun.glass.ui.monocle.FramebufferY8.height:I
         5: .line 80
            aload 0 /* this */
            iload 4 /* depth */
            putfield com.sun.glass.ui.monocle.FramebufferY8.bitDepth:I
         6: .line 81
            aload 0 /* this */
            iload 4 /* depth */
            iconst_3
            iushr
            putfield com.sun.glass.ui.monocle.FramebufferY8.byteDepth:I
         7: .line 82
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.byteDepth:I
            iconst_4
            if_icmpeq 11
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.byteDepth:I
            iconst_2
            if_icmpeq 11
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.byteDepth:I
            iconst_1
            if_icmpeq 11
         8: .line 83
            ldc "Unsupported color depth: {0} bpp"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bitDepth:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 6 /* msg */
        start local 6 // java.lang.String msg
         9: .line 84
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.logger:Lcom/sun/javafx/logging/PlatformLogger;
            aload 6 /* msg */
            invokevirtual com.sun.javafx.logging.PlatformLogger.severe:(Ljava/lang/String;)V
        10: .line 85
            new java.lang.IllegalArgumentException
            dup
            aload 6 /* msg */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 6 // java.lang.String msg
        11: .line 87
      StackMap locals: com.sun.glass.ui.monocle.FramebufferY8 java.nio.ByteBuffer int int int int
      StackMap stack:
            return
        end local 5 // boolean clear
        end local 4 // int depth
        end local 3 // int height
        end local 2 // int width
        end local 1 // java.nio.ByteBuffer bb
        end local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lcom/sun/glass/ui/monocle/FramebufferY8;
            0   12     1      bb  Ljava/nio/ByteBuffer;
            0   12     2   width  I
            0   12     3  height  I
            0   12     4   depth  I
            0   12     5   clear  Z
            9   11     6     msg  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      bb      
      width   
      height  
      depth   
      clear   

  private void copyNextPixel(java.nio.IntBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/IntBuffer;Ljava/nio/ByteBuffer;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
        start local 1 // java.nio.IntBuffer source
        start local 2 // java.nio.ByteBuffer target
         0: .line 109
            aload 1 /* source */
            invokevirtual java.nio.IntBuffer.get:()I
            istore 3 /* pixel32 */
        start local 3 // int pixel32
         1: .line 110
            iload 3 /* pixel32 */
            bipush 16
            ishr
            sipush 255
            iand
            istore 4 /* r */
        start local 4 // int r
         2: .line 111
            iload 3 /* pixel32 */
            bipush 8
            ishr
            sipush 255
            iand
            istore 5 /* g */
        start local 5 // int g
         3: .line 112
            iload 3 /* pixel32 */
            sipush 255
            iand
            istore 6 /* b */
        start local 6 // int b
         4: .line 113
            ldc 0.2126
            iload 4 /* r */
            i2f
            fmul
            ldc 0.7152
            iload 5 /* g */
            i2f
            fmul
            fadd
            ldc 0.0722
            iload 6 /* b */
            i2f
            fmul
            fadd
            ldc 0.5
            fadd
            f2i
            istore 7 /* y */
        start local 7 // int y
         5: .line 114
            aload 2 /* target */
            iload 7 /* y */
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         6: .line 115
            return
        end local 7 // int y
        end local 6 // int b
        end local 5 // int g
        end local 4 // int r
        end local 3 // int pixel32
        end local 2 // java.nio.ByteBuffer target
        end local 1 // java.nio.IntBuffer source
        end local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lcom/sun/glass/ui/monocle/FramebufferY8;
            0    7     1   source  Ljava/nio/IntBuffer;
            0    7     2   target  Ljava/nio/ByteBuffer;
            1    7     3  pixel32  I
            2    7     4        r  I
            3    7     5        g  I
            4    7     6        b  I
            5    7     7        y  I
    MethodParameters:
        Name  Flags
      source  
      target  

  private void copyNextPixel(java.nio.IntBuffer, java.nio.ShortBuffer);
    descriptor: (Ljava/nio/IntBuffer;Ljava/nio/ShortBuffer;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=8, args_size=3
        start local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
        start local 1 // java.nio.IntBuffer source
        start local 2 // java.nio.ShortBuffer target
         0: .line 125
            aload 1 /* source */
            invokevirtual java.nio.IntBuffer.get:()I
            istore 3 /* pixel32 */
        start local 3 // int pixel32
         1: .line 126
            iload 3 /* pixel32 */
            bipush 8
            ishr
            ldc 63488
            iand
            istore 4 /* r */
        start local 4 // int r
         2: .line 127
            iload 3 /* pixel32 */
            iconst_5
            ishr
            sipush 2016
            iand
            istore 5 /* g */
        start local 5 // int g
         3: .line 128
            iload 3 /* pixel32 */
            iconst_3
            ishr
            bipush 31
            iand
            istore 6 /* b */
        start local 6 // int b
         4: .line 129
            iload 4 /* r */
            iload 5 /* g */
            ior
            iload 6 /* b */
            ior
            istore 7 /* pixel16 */
        start local 7 // int pixel16
         5: .line 130
            aload 2 /* target */
            iload 7 /* pixel16 */
            i2s
            invokevirtual java.nio.ShortBuffer.put:(S)Ljava/nio/ShortBuffer;
            pop
         6: .line 131
            return
        end local 7 // int pixel16
        end local 6 // int b
        end local 5 // int g
        end local 4 // int r
        end local 3 // int pixel32
        end local 2 // java.nio.ShortBuffer target
        end local 1 // java.nio.IntBuffer source
        end local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lcom/sun/glass/ui/monocle/FramebufferY8;
            0    7     1   source  Ljava/nio/IntBuffer;
            0    7     2   target  Ljava/nio/ShortBuffer;
            1    7     3  pixel32  I
            2    7     4        r  I
            3    7     5        g  I
            4    7     6        b  I
            5    7     7  pixel16  I
    MethodParameters:
        Name  Flags
      source  
      target  

  void write(java.nio.channels.WritableByteChannel);
    descriptor: (Ljava/nio/channels/WritableByteChannel;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
        start local 1 // java.nio.channels.WritableByteChannel out
         0: .line 144
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            pop
         1: .line 145
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.byteDepth:I
            tableswitch { // 1 - 4
                    1: 2
                    2: 21
                    3: 42
                    4: 40
              default: 42
          }
         2: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            ifnonnull 6
         3: .line 148
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.width:I
            iconst_1
            imul
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            putfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
         4: .line 149
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokestatic java.nio.ByteOrder.nativeOrder:()Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
         5: .line 150
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            putfield com.sun.glass.ui.monocle.FramebufferY8.linePixelBuffer:Ljava/nio/Buffer;
         6: .line 152
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.asIntBuffer:()Ljava/nio/IntBuffer;
            astore 2 /* srcPixels */
        start local 2 // java.nio.IntBuffer srcPixels
         7: .line 153
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.linePixelBuffer:Ljava/nio/Buffer;
            checkcast java.nio.ByteBuffer
            astore 3 /* byteBuffer */
        start local 3 // java.nio.ByteBuffer byteBuffer
         8: .line 154
            iconst_0
            istore 4 /* y */
        start local 4 // int y
         9: goto 19
        10: .line 155
      StackMap locals: java.nio.IntBuffer java.nio.ByteBuffer int
      StackMap stack:
            aload 3 /* byteBuffer */
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            pop
        11: .line 156
            iconst_0
            istore 5 /* x */
        start local 5 // int x
        12: goto 15
        13: .line 157
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* srcPixels */
            aload 3 /* byteBuffer */
            invokevirtual com.sun.glass.ui.monocle.FramebufferY8.copyNextPixel:(Ljava/nio/IntBuffer;Ljava/nio/ByteBuffer;)V
        14: .line 156
            iinc 5 /* x */ 1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* x */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.width:I
            if_icmplt 13
        end local 5 // int x
        16: .line 159
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            pop
        17: .line 160
            aload 1 /* out */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokeinterface java.nio.channels.WritableByteChannel.write:(Ljava/nio/ByteBuffer;)I
            pop
        18: .line 154
            iinc 4 /* y */ 1
      StackMap locals:
      StackMap stack:
        19: iload 4 /* y */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.height:I
            if_icmplt 10
        end local 4 // int y
        20: .line 162
            goto 45
        end local 3 // java.nio.ByteBuffer byteBuffer
        end local 2 // java.nio.IntBuffer srcPixels
        21: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            ifnonnull 25
        22: .line 166
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.width:I
            iconst_2
            imul
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            putfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
        23: .line 167
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokestatic java.nio.ByteOrder.nativeOrder:()Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
        24: .line 168
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.asShortBuffer:()Ljava/nio/ShortBuffer;
            putfield com.sun.glass.ui.monocle.FramebufferY8.linePixelBuffer:Ljava/nio/Buffer;
        25: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.asIntBuffer:()Ljava/nio/IntBuffer;
            astore 2 /* srcPixels */
        start local 2 // java.nio.IntBuffer srcPixels
        26: .line 171
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.linePixelBuffer:Ljava/nio/Buffer;
            checkcast java.nio.ShortBuffer
            astore 3 /* shortBuffer */
        start local 3 // java.nio.ShortBuffer shortBuffer
        27: .line 172
            iconst_0
            istore 4 /* y */
        start local 4 // int y
        28: goto 38
        29: .line 173
      StackMap locals: java.nio.IntBuffer java.nio.ShortBuffer int
      StackMap stack:
            aload 3 /* shortBuffer */
            invokevirtual java.nio.ShortBuffer.clear:()Ljava/nio/Buffer;
            pop
        30: .line 174
            iconst_0
            istore 5 /* x */
        start local 5 // int x
        31: goto 34
        32: .line 175
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* srcPixels */
            aload 3 /* shortBuffer */
            invokevirtual com.sun.glass.ui.monocle.FramebufferY8.copyNextPixel:(Ljava/nio/IntBuffer;Ljava/nio/ShortBuffer;)V
        33: .line 174
            iinc 5 /* x */ 1
      StackMap locals:
      StackMap stack:
        34: iload 5 /* x */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.width:I
            if_icmplt 32
        end local 5 // int x
        35: .line 177
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            pop
        36: .line 178
            aload 1 /* out */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokeinterface java.nio.channels.WritableByteChannel.write:(Ljava/nio/ByteBuffer;)I
            pop
        37: .line 172
            iinc 4 /* y */ 1
      StackMap locals:
      StackMap stack:
        38: iload 4 /* y */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.height:I
            if_icmplt 29
        end local 4 // int y
        39: .line 180
            goto 45
        end local 3 // java.nio.ShortBuffer shortBuffer
        end local 2 // java.nio.IntBuffer srcPixels
        40: .line 183
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bb:Ljava/nio/ByteBuffer;
            invokeinterface java.nio.channels.WritableByteChannel.write:(Ljava/nio/ByteBuffer;)I
            pop
        41: .line 184
            goto 45
        42: .line 187
      StackMap locals:
      StackMap stack:
            ldc "byteDepth={0}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.byteDepth:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 2 /* msg */
        start local 2 // java.lang.String msg
        43: .line 188
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.logger:Lcom/sun/javafx/logging/PlatformLogger;
            aload 2 /* msg */
            invokevirtual com.sun.javafx.logging.PlatformLogger.severe:(Ljava/lang/String;)V
        44: .line 189
            new java.lang.IllegalStateException
            dup
            aload 2 /* msg */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.String msg
        45: .line 192
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.nio.channels.WritableByteChannel out
        end local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   46     0         this  Lcom/sun/glass/ui/monocle/FramebufferY8;
            0   46     1          out  Ljava/nio/channels/WritableByteChannel;
            7   21     2    srcPixels  Ljava/nio/IntBuffer;
            8   21     3   byteBuffer  Ljava/nio/ByteBuffer;
            9   20     4            y  I
           12   16     5            x  I
           26   40     2    srcPixels  Ljava/nio/IntBuffer;
           27   40     3  shortBuffer  Ljava/nio/ShortBuffer;
           28   39     4            y  I
           31   35     5            x  I
           43   45     2          msg  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  void copyToBuffer(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
        start local 1 // java.nio.ByteBuffer out
         0: .line 204
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            pop
         1: .line 205
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.byteDepth:I
            tableswitch { // 1 - 4
                    1: 2
                    2: 21
                    3: 42
                    4: 40
              default: 42
          }
         2: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            ifnonnull 6
         3: .line 208
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.width:I
            iconst_1
            imul
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            putfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
         4: .line 209
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokestatic java.nio.ByteOrder.nativeOrder:()Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
         5: .line 210
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            putfield com.sun.glass.ui.monocle.FramebufferY8.linePixelBuffer:Ljava/nio/Buffer;
         6: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.asIntBuffer:()Ljava/nio/IntBuffer;
            astore 2 /* srcPixels */
        start local 2 // java.nio.IntBuffer srcPixels
         7: .line 213
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.linePixelBuffer:Ljava/nio/Buffer;
            checkcast java.nio.ByteBuffer
            astore 3 /* byteBuffer */
        start local 3 // java.nio.ByteBuffer byteBuffer
         8: .line 214
            iconst_0
            istore 4 /* y */
        start local 4 // int y
         9: goto 19
        10: .line 215
      StackMap locals: java.nio.IntBuffer java.nio.ByteBuffer int
      StackMap stack:
            aload 3 /* byteBuffer */
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            pop
        11: .line 216
            iconst_0
            istore 5 /* x */
        start local 5 // int x
        12: goto 15
        13: .line 217
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* srcPixels */
            aload 3 /* byteBuffer */
            invokevirtual com.sun.glass.ui.monocle.FramebufferY8.copyNextPixel:(Ljava/nio/IntBuffer;Ljava/nio/ByteBuffer;)V
        14: .line 216
            iinc 5 /* x */ 1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* x */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.width:I
            if_icmplt 13
        end local 5 // int x
        16: .line 219
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            pop
        17: .line 220
            aload 1 /* out */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.put:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            pop
        18: .line 214
            iinc 4 /* y */ 1
      StackMap locals:
      StackMap stack:
        19: iload 4 /* y */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.height:I
            if_icmplt 10
        end local 4 // int y
        20: .line 222
            goto 45
        end local 3 // java.nio.ByteBuffer byteBuffer
        end local 2 // java.nio.IntBuffer srcPixels
        21: .line 225
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            ifnonnull 25
        22: .line 226
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.width:I
            iconst_2
            imul
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            putfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
        23: .line 227
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokestatic java.nio.ByteOrder.nativeOrder:()Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
        24: .line 228
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.asShortBuffer:()Ljava/nio/ShortBuffer;
            putfield com.sun.glass.ui.monocle.FramebufferY8.linePixelBuffer:Ljava/nio/Buffer;
        25: .line 230
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.asIntBuffer:()Ljava/nio/IntBuffer;
            astore 2 /* srcPixels */
        start local 2 // java.nio.IntBuffer srcPixels
        26: .line 231
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.linePixelBuffer:Ljava/nio/Buffer;
            checkcast java.nio.ShortBuffer
            astore 3 /* shortBuffer */
        start local 3 // java.nio.ShortBuffer shortBuffer
        27: .line 232
            iconst_0
            istore 4 /* y */
        start local 4 // int y
        28: goto 38
        29: .line 233
      StackMap locals: java.nio.IntBuffer java.nio.ShortBuffer int
      StackMap stack:
            aload 3 /* shortBuffer */
            invokevirtual java.nio.ShortBuffer.clear:()Ljava/nio/Buffer;
            pop
        30: .line 234
            iconst_0
            istore 5 /* x */
        start local 5 // int x
        31: goto 34
        32: .line 235
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* srcPixels */
            aload 3 /* shortBuffer */
            invokevirtual com.sun.glass.ui.monocle.FramebufferY8.copyNextPixel:(Ljava/nio/IntBuffer;Ljava/nio/ShortBuffer;)V
        33: .line 234
            iinc 5 /* x */ 1
      StackMap locals:
      StackMap stack:
        34: iload 5 /* x */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.width:I
            if_icmplt 32
        end local 5 // int x
        35: .line 237
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.clear:()Ljava/nio/Buffer;
            pop
        36: .line 238
            aload 1 /* out */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.lineByteBuffer:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.put:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            pop
        37: .line 232
            iinc 4 /* y */ 1
      StackMap locals:
      StackMap stack:
        38: iload 4 /* y */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.height:I
            if_icmplt 29
        end local 4 // int y
        39: .line 240
            goto 45
        end local 3 // java.nio.ShortBuffer shortBuffer
        end local 2 // java.nio.IntBuffer srcPixels
        40: .line 243
      StackMap locals:
      StackMap stack:
            aload 1 /* out */
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.put:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            pop
        41: .line 244
            goto 45
        42: .line 247
      StackMap locals:
      StackMap stack:
            ldc "byteDepth={0}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.byteDepth:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 2 /* msg */
        start local 2 // java.lang.String msg
        43: .line 248
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.logger:Lcom/sun/javafx/logging/PlatformLogger;
            aload 2 /* msg */
            invokevirtual com.sun.javafx.logging.PlatformLogger.severe:(Ljava/lang/String;)V
        44: .line 249
            new java.lang.IllegalStateException
            dup
            aload 2 /* msg */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.String msg
        45: .line 252
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.nio.ByteBuffer out
        end local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   46     0         this  Lcom/sun/glass/ui/monocle/FramebufferY8;
            0   46     1          out  Ljava/nio/ByteBuffer;
            7   21     2    srcPixels  Ljava/nio/IntBuffer;
            8   21     3   byteBuffer  Ljava/nio/ByteBuffer;
            9   20     4            y  I
           12   16     5            x  I
           26   40     2    srcPixels  Ljava/nio/IntBuffer;
           27   40     3  shortBuffer  Ljava/nio/ShortBuffer;
           28   39     4            y  I
           31   35     5            x  I
           43   45     2          msg  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      out   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
         0: .line 256
            ldc "{0}[width={1} height={2} depth={3} bb={4}]"
            iconst_5
            anewarray java.lang.Object
            dup
            iconst_0
         1: .line 257
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.width:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.height:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_3
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bitDepth:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_4
            aload 0 /* this */
            getfield com.sun.glass.ui.monocle.FramebufferY8.bb:Ljava/nio/ByteBuffer;
            aastore
         2: .line 256
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // com.sun.glass.ui.monocle.FramebufferY8 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/glass/ui/monocle/FramebufferY8;
}
SourceFile: "FramebufferY8.java"