dd180e795f
Set Chromium command-line flag --enable-gl-path-rendering before creating command buffer context. This is needed for the command buffer to expose NVPR at the moment. BUG=skia:2992 GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1538863002 Review URL: https://codereview.chromium.org/1538863002
26 lines
639 B
C++
26 lines
639 B
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "SkRTConf.h"
|
|
#include "SkOSEnvironment.h"
|
|
#include "Test.h"
|
|
|
|
// Friended proxy for SkRTConfRegistry::parse()
|
|
template <typename T>
|
|
bool test_rt_conf_parse(SkRTConfRegistry* reg, const char* key, T* value) {
|
|
return reg->parse(key, value);
|
|
}
|
|
|
|
DEF_TEST(SkRTConfRegistry, reporter) {
|
|
SkRTConfRegistry reg;
|
|
|
|
sk_setenv("skia_nonexistent_item", "132");
|
|
int result = 0;
|
|
test_rt_conf_parse(®, "nonexistent.item", &result);
|
|
REPORTER_ASSERT(reporter, result == 132);
|
|
}
|