Deleted Added
sdiff udiff text old ( 11168:f98eb2da15a4 ) new ( 12366:3b4b6fa339a9 )
full compact
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

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

43#include <cmath>
44#include <cstdint>
45
46#include <string>
47#include <vector>
48
49#include "base/compiler.hh"
50#include "base/cprintf.hh"
51#include "base/pixel.hh"
52#include "base/str.hh"
53#include "base/types.hh"
54#include "sim/serialize.hh"
55
56/**
57 * Internal gem5 representation of a frame buffer
58 *
59 * Display controllers and other devices producing images are expected
60 * to use this class to represent the final image.
61 *
62 * Pixels are indexed relative to the upper left corner of the
63 * image. That is, the pixel at position (0, 0) is the upper left
64 * corner. The backing store is a linear vector of Pixels ordered left

--- 139 unchanged lines hidden ---