OLD | NEW |
1 | |
2 /* | 1 /* |
3 * Copyright 2011 Google Inc. | 2 * Copyright 2011 Google Inc. |
4 * | 3 * |
5 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
7 */ | 6 */ |
8 | 7 |
9 #include "GrStencilAttachment.h" | 8 #include "GrStencilAttachment.h" |
10 #include "GrResourceKey.h" | 9 #include "GrResourceKey.h" |
11 | 10 |
12 void GrStencilAttachment::ComputeSharedStencilAttachmentKey(int width, int heigh
t, int sampleCnt, | 11 void GrStencilAttachment::ComputeSharedStencilAttachmentKey(int width, int heigh
t, int sampleCnt, |
13 GrUniqueKey* key) { | 12 GrUniqueKey* key) { |
14 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain(); | 13 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain(); |
15 GrUniqueKey::Builder builder(key, kDomain, 3); | 14 GrUniqueKey::Builder builder(key, kDomain, 3); |
16 builder[0] = width; | 15 builder[0] = width; |
17 builder[1] = height; | 16 builder[1] = height; |
18 builder[2] = sampleCnt; | 17 builder[2] = sampleCnt; |
19 } | 18 } |
OLD | NEW |