blob: 9d2c8fb2950eb3e9c6b57bfda174ab97da3f9046 [file] [log] [blame]
/*
* Copyright 2011 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/private/GrResourceKey.h"
#include "src/gpu/GrStencilAttachment.h"
void GrStencilAttachment::ComputeSharedStencilAttachmentKey(SkISize dimensions,
int sampleCnt,
GrUniqueKey* key) {
static const GrUniqueKey::Domain kDomain = GrUniqueKey::GenerateDomain();
GrUniqueKey::Builder builder(key, kDomain, 3);
builder[0] = dimensions.width();
builder[1] = dimensions.height();
builder[2] = sampleCnt;
}