Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 765cd432 authored by John Reck's avatar John Reck Committed by Android (Google) Code Review
Browse files

Merge "Fix macrobench names"

parents 9af75c3a 2ed5240a
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -56,10 +56,11 @@ public:

    template <class BaseScene>
    static bool registerBitmapAllocationScene(std::string name, std::string description) {
        TestScene::registerScene({name + "GlTex", description + " (GlTex version).",
        TestScene::registerScene({name + "Texture", description + " (Texture version).",
                                  createBitmapAllocationScene<BaseScene, &allocateHeapBitmap>});

        TestScene::registerScene({name + "EglImage", description + " (EglImage version).",
        TestScene::registerScene({name + "HardwareBuffer",
                                  description + " (HardwareBuffer version).",
                                  createBitmapAllocationScene<BaseScene, &allocateHardwareBitmap>});
        return true;
    }