diff options
| author | Chris Forbes <chrisforbes@google.com> | 2017-06-19 17:58:09 -0700 |
|---|---|---|
| committer | Chris Forbes <chrisf@ijw.co.nz> | 2017-06-20 10:41:20 -0700 |
| commit | 5ffc5ec513cdb7d68b6da95c0963f7c6f6e23c0d (patch) | |
| tree | 73e2cce5083a25c0dfad5c3b930789c4868b66ed /layers/core_validation.cpp | |
| parent | 15a45e38a9b8c235d963a308680c8dc324d027d0 (diff) | |
| download | usermoji-5ffc5ec513cdb7d68b6da95c0963f7c6f6e23c0d.tar.xz | |
don't copy vector of pipelines everywhere
Diffstat (limited to 'layers/core_validation.cpp')
| -rw-r--r-- | layers/core_validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/core_validation.cpp b/layers/core_validation.cpp index d7e05915..112398f6 100644 --- a/layers/core_validation.cpp +++ b/layers/core_validation.cpp @@ -1178,7 +1178,7 @@ static bool verifyLineWidth(layer_data *dev_data, DRAW_STATE_ERROR dsError, Vulk } // Verify that create state for a pipeline is valid -static bool verifyPipelineCreateState(layer_data *dev_data, std::vector<PIPELINE_STATE *> pPipelines, int pipelineIndex) { +static bool verifyPipelineCreateState(layer_data *dev_data, std::vector<PIPELINE_STATE *> const &pPipelines, int pipelineIndex) { bool skip = false; PIPELINE_STATE *pPipeline = pPipelines[pipelineIndex]; |
