| 357 | } |
| 358 | |
| 359 | std::string GrContext::SpGetString(const std::string& key, const std::string& def_val) { |
| 360 | return sp_->Get(key, def_val); |
| 361 | } |
| 362 | |
| 363 | void GrContext::SpPutInteger(const std::string& key, int value) { |
| 364 | sp_->PutInt(key, value); |
no test coverage detected