1/* 2 * Copyright 2013 Google Inc. 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 8#ifndef GrTest_DEFINED 9#define GrTest_DEFINED 10 11#include "GrContext.h" 12 13namespace GrTest { 14 /** 15 * Forces the GrContext to use a small atlas which only has room for one plot and will thus 16 * constantly be evicting entries 17 */ 18 void SetupAlwaysEvictAtlas(GrContext*); 19}; 20 21#endif 22