diff options
author | Gabe Black <gabeblack@google.com> | 2017-12-04 20:22:43 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2017-12-06 01:14:52 +0000 |
commit | 7eb8d007a502d6c6d62eab590d71f6085aef78f9 (patch) | |
tree | 126343c64cd79fdababa821726a55213e751892c /src/base/SConscript | |
parent | 3017314d05695207e09e87b08ca5c3cbf182c646 (diff) | |
download | gem5-7eb8d007a502d6c6d62eab590d71f6085aef78f9.tar.xz |
base: Split out the pixel class in framebuffer.(cc|hh).
These are really two separate things. Also, while it's realitively
straightforward to write a unit test for the pixel conversion code, the
framebuffer object is serializable and brings in more dependencies.
Change-Id: If954caeb0bfedb1002cfb1a7a115a00c90d56d19
Reviewed-on: https://gem5-review.googlesource.com/6341
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/base/SConscript')
-rw-r--r-- | src/base/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/base/SConscript b/src/base/SConscript index 75759fd37..fb14c4dc3 100644 --- a/src/base/SConscript +++ b/src/base/SConscript @@ -54,6 +54,7 @@ Source('intmath.cc') Source('logging.cc') Source('match.cc') Source('output.cc') +Source('pixel.cc') Source('pollevent.cc') Source('random.cc') if env['TARGET_ISA'] != 'null': |