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

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

Issue 815833004: Add a simpler key type for scratch resource keys. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: final fix Created 5 years, 11 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/GrStencilBuffer.h ('k') | src/gpu/GrTexture.cpp » ('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 "GrStencilBuffer.h"
10 #include "GrResourceKey.h"
10 11
11 #include "GrContext.h" 12 void GrStencilBuffer::ComputeKey(int width, int height, int sampleCnt, GrScratch Key* key) {
12 #include "GrGpu.h" 13 static const GrScratchKey::ResourceType kType = GrScratchKey::GenerateResour ceType();
13 #include "GrResourceCache2.h" 14 GrScratchKey::Builder builder(key, kType, 2);
14 15 SkASSERT(width <= SK_MaxU16);
15 namespace { 16 SkASSERT(height <= SK_MaxU16);
16 // we should never have more than one stencil buffer with same combo of (width,h eight,samplecount) 17 builder[0] = width | (height << 16);
17 void gen_cache_id(int width, int height, int sampleCnt, GrCacheID* cacheID) { 18 builder[1] = sampleCnt;
18 static const GrCacheID::Domain gStencilBufferDomain = GrResourceKey::Scratch Domain();
19 GrCacheID::Key key;
20 uint32_t* keyData = key.fData32;
21 keyData[0] = width;
22 keyData[1] = height;
23 keyData[2] = sampleCnt;
24 memset(keyData + 3, 0, sizeof(key) - 3 * sizeof(uint32_t));
25 GR_STATIC_ASSERT(sizeof(key) >= 3 * sizeof(uint32_t));
26 cacheID->reset(gStencilBufferDomain, key);
27 } 19 }
28 }
29
30 GrResourceKey GrStencilBuffer::ComputeKey(int width,
31 int height,
32 int sampleCnt) {
33 // All SBs are created internally to attach to RTs so they all use the same domain.
34 static const GrResourceKey::ResourceType gStencilBufferResourceType =
35 GrResourceKey::GenerateResourceType();
36 GrCacheID id;
37 gen_cache_id(width, height, sampleCnt, &id);
38
39 // we don't use any flags for SBs currently.
40 return GrResourceKey(id, gStencilBufferResourceType, 0);
41 }
OLDNEW
« no previous file with comments | « src/gpu/GrStencilBuffer.h ('k') | src/gpu/GrTexture.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698