nvflinger: Emplace Display instances directly
We can use emplace_back to construct the Display instances directly, instead of constructing them separately and copying them, avoiding the need to copy std::string and std::vector instances that are part of the Display struct.
This commit is contained in:
parent
758c357868
commit
f3daecafeb
1 changed files with 4 additions and 9 deletions
|
@ -23,15 +23,10 @@ constexpr u64 frame_ticks = static_cast<u64>(CoreTiming::BASE_CLOCK_RATE / SCREE
|
||||||
|
|
||||||
NVFlinger::NVFlinger() {
|
NVFlinger::NVFlinger() {
|
||||||
// Add the different displays to the list of displays.
|
// Add the different displays to the list of displays.
|
||||||
Display default_{0, "Default"};
|
displays.emplace_back(0, "Default");
|
||||||
Display external{1, "External"};
|
displays.emplace_back(1, "External");
|
||||||
Display edid{2, "Edid"};
|
displays.emplace_back(2, "Edid");
|
||||||
Display internal{3, "Internal"};
|
displays.emplace_back(3, "Internal");
|
||||||
|
|
||||||
displays.emplace_back(default_);
|
|
||||||
displays.emplace_back(external);
|
|
||||||
displays.emplace_back(edid);
|
|
||||||
displays.emplace_back(internal);
|
|
||||||
|
|
||||||
// Schedule the screen composition events
|
// Schedule the screen composition events
|
||||||
composition_event =
|
composition_event =
|
||||||
|
|
Loading…
Reference in a new issue