aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/vk/GrVkVaryingHandler.cpp
blob: c923f6684cb2f40466fa70aa7234639f093c04d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/

#include "GrVkVaryingHandler.h"


void finalize_helper(GrVkVaryingHandler::VarArray& vars) {
    for (int i = 0; i < vars.count(); ++i) {
        SkString location;
        location.appendf("location = %d", i);
        vars[i].setLayoutQualifier(location.c_str());
    }
}

void GrVkVaryingHandler::onFinalize() {
    finalize_helper(fVertexInputs);
    finalize_helper(fVertexOutputs);
    finalize_helper(fGeomInputs);
    finalize_helper(fGeomOutputs);
    finalize_helper(fFragInputs);
    finalize_helper(fFragOutputs);
}