cfe910dc79
This reverts commitc867a89b01
. Reason for revert: test Original change's description: > Revert "Make mock GrContext unit testable." > > This reverts commit993e7e2521
. > > Reason for revert: Seeing if this fixes the NexusPlayer bots > > Original change's description: > > Make mock GrContext unit testable. > > > > Bug: skia: > > Change-Id: I959122f1f2c390832ab1033bcdbdd2ca6cfc0419 > > Reviewed-on: https://skia-review.googlesource.com/20699 > > Reviewed-by: Greg Daniel <egdaniel@google.com> > > Commit-Queue: Brian Salomon <bsalomon@google.com> > > TBR=egdaniel@google.com,bsalomon@google.com > > Change-Id: I25ed9329962d930fe38108f779ff7083e0e4847e > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Bug: skia: > Reviewed-on: https://skia-review.googlesource.com/21731 > Reviewed-by: Brian Salomon <bsalomon@google.com> > Commit-Queue: Brian Salomon <bsalomon@google.com> TBR=egdaniel@google.com,bsalomon@google.com Change-Id: I62c579e087db1ff9891cf6c41b3eb40f47561887 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: skia: Reviewed-on: https://skia-review.googlesource.com/21733 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Brian Salomon <bsalomon@google.com>
23 lines
507 B
C++
23 lines
507 B
C++
|
|
/*
|
|
* Copyright 2017 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#ifndef MockTestContext_DEFINED
|
|
#define MockTestContext_DEFINED
|
|
|
|
#include "TestContext.h"
|
|
|
|
namespace sk_gpu_test {
|
|
|
|
/**
|
|
* Creates mock context object for use with GrContexts created with kMock_GrBackend. It will
|
|
* trivially succeed at everything.
|
|
*/
|
|
TestContext* CreateMockTestContext(TestContext* shareContext = nullptr);
|
|
|
|
} // namespace sk_gpu_test
|
|
#endif
|