155a384c62528636190cfe0762228d4c2795c6883Romain Guy/*
255a384c62528636190cfe0762228d4c2795c6883Romain Guy * Copyright (C) 2009 The Android Open Source Project
355a384c62528636190cfe0762228d4c2795c6883Romain Guy *
455a384c62528636190cfe0762228d4c2795c6883Romain Guy * Licensed under the Apache License, Version 2.0 (the "License");
555a384c62528636190cfe0762228d4c2795c6883Romain Guy * you may not use this file except in compliance with the License.
655a384c62528636190cfe0762228d4c2795c6883Romain Guy * You may obtain a copy of the License at
755a384c62528636190cfe0762228d4c2795c6883Romain Guy *
855a384c62528636190cfe0762228d4c2795c6883Romain Guy *      http://www.apache.org/licenses/LICENSE-2.0
955a384c62528636190cfe0762228d4c2795c6883Romain Guy *
1055a384c62528636190cfe0762228d4c2795c6883Romain Guy * Unless required by applicable law or agreed to in writing, software
1155a384c62528636190cfe0762228d4c2795c6883Romain Guy * distributed under the License is distributed on an "AS IS" BASIS,
1255a384c62528636190cfe0762228d4c2795c6883Romain Guy * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1355a384c62528636190cfe0762228d4c2795c6883Romain Guy * See the License for the specific language governing permissions and
1455a384c62528636190cfe0762228d4c2795c6883Romain Guy * limitations under the License.
1555a384c62528636190cfe0762228d4c2795c6883Romain Guy */
1655a384c62528636190cfe0762228d4c2795c6883Romain Guy
1755a384c62528636190cfe0762228d4c2795c6883Romain Guypackage com.android.wallpaper.grass;
1855a384c62528636190cfe0762228d4c2795c6883Romain Guy
1944da17844aa73a047a1f1ff67b4794ea330be3b5Romain Guyimport com.android.wallpaper.RenderScriptWallpaper;
2044da17844aa73a047a1f1ff67b4794ea330be3b5Romain Guyimport com.android.wallpaper.RenderScriptScene;
2155a384c62528636190cfe0762228d4c2795c6883Romain Guy
2244da17844aa73a047a1f1ff67b4794ea330be3b5Romain Guypublic class GrassWallpaper extends RenderScriptWallpaper {
2344da17844aa73a047a1f1ff67b4794ea330be3b5Romain Guy    protected RenderScriptScene createScene(int width, int height) {
24a56ce01d5f2e831ad4a5ada54a3c10f8075e4921Romain Guy        return new GrassRS(this, width, height);
2555a384c62528636190cfe0762228d4c2795c6883Romain Guy    }
2655a384c62528636190cfe0762228d4c2795c6883Romain Guy}
27b7dbad039b9dfe3a7d18bc1588384c53e6757585Romain Guy
28