service/vi/vi_layer: Convert Layer struct into a class

Like the previous changes made to the Display struct, this prepares the
Layer struct for changes to its interface. Given Layer will be given
more invariants in the future, we convert it into a class to better
signify that.
This commit is contained in:
Lioncash
2019-02-21 10:56:20 -05:00
parent fa4dc2cf42
commit fd15730767
6 changed files with 43 additions and 10 deletions

View File

@ -29,7 +29,7 @@ class Module;
namespace Service::VI {
class Display;
struct Layer;
class Layer;
} // namespace Service::VI
namespace Service::NVFlinger {