Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: src/gpu/GrStencilAttachment.cpp

Issue 1083133002: Rename GrStencilBuffer to GrStencilAttachment (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Align data member Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/GrStencilAttachment.h ('k') | src/gpu/GrStencilBuffer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "GrStencilBuffer.h" 9 #include "GrStencilAttachment.h"
10 #include "GrResourceKey.h" 10 #include "GrResourceKey.h"
11 11
12 void GrStencilBuffer::ComputeSharedStencilBufferKey(int width, int height, int s ampleCnt, 12 void GrStencilAttachment::ComputeSharedStencilAttachmentKey(int width, int heigh t, int sampleCnt,
13 GrUniqueKey* key) { 13 GrUniqueKey* key) {
14 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain(); 14 static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
15 GrUniqueKey::Builder builder(key, kDomain, 3); 15 GrUniqueKey::Builder builder(key, kDomain, 3);
16 builder[0] = width; 16 builder[0] = width;
17 builder[1] = height; 17 builder[1] = height;
18 builder[2] = sampleCnt; 18 builder[2] = sampleCnt;
19 } 19 }
OLDNEW
« no previous file with comments | « src/gpu/GrStencilAttachment.h ('k') | src/gpu/GrStencilBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698