2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2012-04-27 20:04:47 +00:00
|
|
|
package org.mozilla.gecko;
|
|
|
|
|
2013-11-12 18:41:00 +00:00
|
|
|
import org.mozilla.gecko.mozglue.generatorannotations.WrapEntireClassForJNI;
|
|
|
|
|
2012-04-27 20:04:47 +00:00
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
|
2013-11-12 18:41:00 +00:00
|
|
|
@WrapEntireClassForJNI
|
2012-04-27 20:04:47 +00:00
|
|
|
public class SurfaceBits {
|
|
|
|
public int width;
|
|
|
|
public int height;
|
|
|
|
public int format;
|
|
|
|
public ByteBuffer buffer;
|
|
|
|
}
|