14921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron/*
24921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron * Copyright (C) 2009 The Android Open Source Project
34921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron *
44921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron * Licensed under the Apache License, Version 2.0 (the "License");
54921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron * you may not use this file except in compliance with the License.
64921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron * You may obtain a copy of the License at
74921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron *
84921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron *      http://www.apache.org/licenses/LICENSE-2.0
94921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron *
104921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron * Unless required by applicable law or agreed to in writing, software
114921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron * distributed under the License is distributed on an "AS IS" BASIS,
124921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
134921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron * See the License for the specific language governing permissions and
144921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron * limitations under the License.
154921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron */
164921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron
174921adbc7975c954a9233f743350c168ee5c0f9fMike Cleronpackage com.android.wallpaper.nexus;
184921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron
19af45d444c61a510f2f477a2a7ec01b2bdce25910Mike Cleronimport com.android.wallpaper.RenderScriptWallpaper;
20af45d444c61a510f2f477a2a7ec01b2bdce25910Mike Cleronimport com.android.wallpaper.RenderScriptScene;
214921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron
22af45d444c61a510f2f477a2a7ec01b2bdce25910Mike Cleronpublic class NexusWallpaper extends RenderScriptWallpaper {
23af45d444c61a510f2f477a2a7ec01b2bdce25910Mike Cleron    protected RenderScriptScene createScene(int width, int height) {
24af45d444c61a510f2f477a2a7ec01b2bdce25910Mike Cleron        return new NexusRS(width, height);
254921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron    }
264921adbc7975c954a9233f743350c168ee5c0f9fMike Cleron}
27