1cb93a386Sopenharmony_ci/*
2cb93a386Sopenharmony_ci * Copyright 2019 Google LLC
3cb93a386Sopenharmony_ci *
4cb93a386Sopenharmony_ci * Use of this source code is governed by a BSD-style license that can be
5cb93a386Sopenharmony_ci * found in the LICENSE file.
6cb93a386Sopenharmony_ci */
7cb93a386Sopenharmony_ci
8cb93a386Sopenharmony_ci#include "modules/particles/include/SkParticleEffect.h"
9cb93a386Sopenharmony_ci
10cb93a386Sopenharmony_ci// Doesn't do anything important; just exists to show we can use modules/particles without the GPU
11cb93a386Sopenharmony_ci// backend being available.
12cb93a386Sopenharmony_ciint main(int argc, char** argv) {
13cb93a386Sopenharmony_ci    // Register types for serialization
14cb93a386Sopenharmony_ci    SkParticleEffect::RegisterParticleTypes();
15cb93a386Sopenharmony_ci    return 0;
16cb93a386Sopenharmony_ci}
17