framebuffer.hh (10907:94d5a1476c5b) framebuffer.hh (11168:f98eb2da15a4)
1/*
2 * Copyright (c) 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 242 unchanged lines hidden (view full) ---

251 * @param height Height in pixels
252 */
253 FrameBuffer(unsigned width, unsigned height);
254 /** Create an empty (0x0) frame buffer */
255 FrameBuffer();
256
257 virtual ~FrameBuffer();
258
1/*
2 * Copyright (c) 2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 242 unchanged lines hidden (view full) ---

251 * @param height Height in pixels
252 */
253 FrameBuffer(unsigned width, unsigned height);
254 /** Create an empty (0x0) frame buffer */
255 FrameBuffer();
256
257 virtual ~FrameBuffer();
258
259 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
260 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
259 void serialize(CheckpointOut &cp) const override;
260 void unserialize(CheckpointIn &cp) override;
261
262 /**
263 * Resize the frame buffer.
264 *
265 * This method resizes frame buffer including the backing
266 * store. The contents of the backing store are undefined after
267 * this operation.
268 *

--- 112 unchanged lines hidden ---
261
262 /**
263 * Resize the frame buffer.
264 *
265 * This method resizes frame buffer including the backing
266 * store. The contents of the backing store are undefined after
267 * this operation.
268 *

--- 112 unchanged lines hidden ---