Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8094661

[Monocle] Framebuffer allocates incorrectly sized clear buffer

XMLWordPrintable

      When Monocle shuts down, a Framebuffer object is created for the purpose of clearing the screen. In the constructor, a clearBuffer is allocated:

              if (clear) {
                  clearBuffer = ByteBuffer.allocate(width * 4);
              }

      The allocation assumes a 32 bit screen depth. This can result in a BufferOverflowException on exit on a 16 bit platform like the r-pi. The correct code should be:

              if (clear) {
                  clearBuffer = ByteBuffer.allocate(width * byteDepth);
              }

            kselle Lisa Selle (Inactive)
            kselle Lisa Selle (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: