/* * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.webkit.graphics; public abstract class WCPageBackBuffer extends Ref { public abstract WCGraphicsContext createGraphics(); public abstract void disposeGraphics(WCGraphicsContext gc); public abstract void flush(WCGraphicsContext gc, int x, int y, int w, int h); protected abstract void copyArea(int x, int y, int w, int h, int dx, int dy); /** * @returs {@code false} if full page repaint is needed after the validation, * {@code true} otherwise */ public abstract boolean validate(int width, int height); }