2370N/A/*
2685N/A * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
2370N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2370N/A *
2370N/A * This code is free software; you can redistribute it and/or modify it
2370N/A * under the terms of the GNU General Public License version 2 only, as
2685N/A * published by the Free Software Foundation. Oracle designates this
2370N/A * particular file as subject to the "Classpath" exception as provided
2685N/A * by Oracle in the LICENSE file that accompanied this code.
2370N/A *
2370N/A * This code is distributed in the hope that it will be useful, but WITHOUT
2370N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2370N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2370N/A * version 2 for more details (a copy is included in the LICENSE file that
2370N/A * accompanied this code).
2370N/A *
2370N/A * You should have received a copy of the GNU General Public License version
2370N/A * 2 along with this work; if not, write to the Free Software Foundation,
2370N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2370N/A *
2685N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2685N/A * or visit www.oracle.com if you need additional information or have any
2685N/A * questions.
2370N/A */
2370N/A
2370N/Apackage sun.java2d.jules;
2370N/A
2370N/Apublic class JulesTile {
2370N/A byte[] imgBuffer;
2370N/A long pixmanImgPtr = 0;
2370N/A int tilePos;
2370N/A
2370N/A public JulesTile() {
2370N/A }
2370N/A
2370N/A public byte[] getImgBuffer() {
2370N/A if(imgBuffer == null) {
2370N/A imgBuffer = new byte[1024];
2370N/A }
2370N/A
2370N/A return imgBuffer;
2370N/A }
2370N/A
2370N/A public long getPixmanImgPtr() {
2370N/A return pixmanImgPtr;
2370N/A }
2370N/A
2370N/A public void setPixmanImgPtr(long pixmanImgPtr) {
2370N/A this.pixmanImgPtr = pixmanImgPtr;
2370N/A }
2370N/A
2370N/A public boolean hasBuffer() {
2370N/A return imgBuffer != null;
2370N/A }
2370N/A
2370N/A public int getTilePos() {
2370N/A return tilePos;
2370N/A }
2370N/A
2370N/A public void setTilePos(int tilePos) {
2370N/A this.tilePos = tilePos;
2370N/A }
2370N/A
2370N/A public void setImgBuffer(byte[] imgBuffer){
2370N/A this.imgBuffer = imgBuffer;
2370N/A }
2370N/A}