Control Surface API  3.0.3
BitmapFormat.java
1 package com.bitwig.extension.api.graphics;
2 
3 public enum BitmapFormat
4 {
10  ARGB32(4),
11 
17 
18  private final int mBytesPerPixel;
19 
20  private BitmapFormat(final int bytesPerPixel)
21  {
22  mBytesPerPixel = bytesPerPixel;
23  }
24 
25  public int bytesPerPixel()
26  {
27  return mBytesPerPixel;
28  }
29 }