blob: a749ebf616424c005bb278f6b9080516dbc8f8c6 [file] [log] [blame]
Brian Osmanfb32ddf2019-06-18 10:14:20 -04001/*
2 * Copyright 2019 Google LLC
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
Brian Osmanfb32ddf2019-06-18 10:14:20 -04008#include "modules/particles/include/SkParticleEffect.h"
Brian Osmanfb32ddf2019-06-18 10:14:20 -04009
10// Doesn't do anything important; just exists to show we can use modules/particles without the GPU
11// backend being available.
12int main(int argc, char** argv) {
13 // Register types for serialization
Brian Osman2aa85df2019-08-30 10:59:47 -040014 SkParticleEffect::RegisterParticleTypes();
Brian Osmanfb32ddf2019-06-18 10:14:20 -040015 return 0;
16}