Loading tests/RenderScriptTests/ImageProcessing2/Android.mk 0 → 100644 +35 −0 Original line number Diff line number Diff line # # Copyright (C) 2009 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS := tests LOCAL_SRC_FILES := $(call all-java-files-under, src) \ $(call all-renderscript-files-under, src) LOCAL_STATIC_JAVA_LIBRARIES := android.support.v8.renderscript LOCAL_PACKAGE_NAME := ImageProcessing2 LOCAL_RENDERSCRIPT_FLAGS := -rs-package-name=android.support.v8.renderscript LOCAL_REQUIRED_MODULES := librsjni include $(BUILD_PACKAGE) #include $(call all-makefiles-under, $(LOCAL_PATH)) tests/RenderScriptTests/ImageProcessing2/AndroidManifest.xml 0 → 100644 +15 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.rs.image2"> <uses-sdk android:minSdkVersion="11" /> <application android:label="IP GB" android:hardwareAccelerated="true"> <activity android:name="ImageProcessingActivity2"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> tests/RenderScriptTests/ImageProcessing2/res/drawable-nodpi/city.png 0 → 100644 +597 KiB Loading image diff... tests/RenderScriptTests/ImageProcessing2/res/layout/main.xml 0 → 100644 +130 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2009 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/toplevel"> <SurfaceView android:id="@+id/surface" android:layout_width="1dip" android:layout_height="1dip" /> <ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:id="@+id/display" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/benchmark" android:onClick="benchmark"/> <TextView android:id="@+id/benchmarkText" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="8pt" android:text="@string/saturation"/> </LinearLayout> <Spinner android:id="@+id/filterselection" android:layout_width="fill_parent" android:layout_height="wrap_content"/> <TextView android:id="@+id/slider1Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="8pt" android:layout_marginLeft="10sp" android:layout_marginTop="15sp" android:text="@string/saturation"/> <SeekBar android:id="@+id/slider1" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:layout_width="match_parent" android:layout_height="wrap_content"/> <TextView android:id="@+id/slider2Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="8pt" android:layout_marginLeft="10sp" android:layout_marginTop="15sp" android:text="@string/gamma"/> <SeekBar android:id="@+id/slider2" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:layout_width="match_parent" android:layout_height="wrap_content"/> <TextView android:id="@+id/slider3Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="10sp" android:layout_marginTop="15sp" android:textSize="8pt" android:text="@string/out_white"/> <SeekBar android:id="@+id/slider3" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:layout_width="match_parent" android:layout_height="wrap_content"/> <TextView android:id="@+id/slider4Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="8pt" android:layout_marginLeft="10sp" android:layout_marginTop="15sp" android:text="@string/in_white"/> <SeekBar android:id="@+id/slider4" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:layout_width="match_parent" android:layout_height="wrap_content"/> <TextView android:id="@+id/slider5Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="8pt" android:layout_marginLeft="10sp" android:layout_marginTop="15sp" android:text="@string/in_white"/> <SeekBar android:id="@+id/slider5" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:layout_width="match_parent" android:layout_height="wrap_content"/> </LinearLayout> </ScrollView> </LinearLayout> tests/RenderScriptTests/ImageProcessing2/res/layout/spinner_layout.xml 0 → 100644 +23 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2012 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="10dp" android:textSize="16sp" /> Loading
tests/RenderScriptTests/ImageProcessing2/Android.mk 0 → 100644 +35 −0 Original line number Diff line number Diff line # # Copyright (C) 2009 The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS := tests LOCAL_SRC_FILES := $(call all-java-files-under, src) \ $(call all-renderscript-files-under, src) LOCAL_STATIC_JAVA_LIBRARIES := android.support.v8.renderscript LOCAL_PACKAGE_NAME := ImageProcessing2 LOCAL_RENDERSCRIPT_FLAGS := -rs-package-name=android.support.v8.renderscript LOCAL_REQUIRED_MODULES := librsjni include $(BUILD_PACKAGE) #include $(call all-makefiles-under, $(LOCAL_PATH))
tests/RenderScriptTests/ImageProcessing2/AndroidManifest.xml 0 → 100644 +15 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.rs.image2"> <uses-sdk android:minSdkVersion="11" /> <application android:label="IP GB" android:hardwareAccelerated="true"> <activity android:name="ImageProcessingActivity2"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
tests/RenderScriptTests/ImageProcessing2/res/drawable-nodpi/city.png 0 → 100644 +597 KiB Loading image diff...
tests/RenderScriptTests/ImageProcessing2/res/layout/main.xml 0 → 100644 +130 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2009 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/toplevel"> <SurfaceView android:id="@+id/surface" android:layout_width="1dip" android:layout_height="1dip" /> <ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:id="@+id/display" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/benchmark" android:onClick="benchmark"/> <TextView android:id="@+id/benchmarkText" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="8pt" android:text="@string/saturation"/> </LinearLayout> <Spinner android:id="@+id/filterselection" android:layout_width="fill_parent" android:layout_height="wrap_content"/> <TextView android:id="@+id/slider1Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="8pt" android:layout_marginLeft="10sp" android:layout_marginTop="15sp" android:text="@string/saturation"/> <SeekBar android:id="@+id/slider1" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:layout_width="match_parent" android:layout_height="wrap_content"/> <TextView android:id="@+id/slider2Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="8pt" android:layout_marginLeft="10sp" android:layout_marginTop="15sp" android:text="@string/gamma"/> <SeekBar android:id="@+id/slider2" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:layout_width="match_parent" android:layout_height="wrap_content"/> <TextView android:id="@+id/slider3Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="10sp" android:layout_marginTop="15sp" android:textSize="8pt" android:text="@string/out_white"/> <SeekBar android:id="@+id/slider3" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:layout_width="match_parent" android:layout_height="wrap_content"/> <TextView android:id="@+id/slider4Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="8pt" android:layout_marginLeft="10sp" android:layout_marginTop="15sp" android:text="@string/in_white"/> <SeekBar android:id="@+id/slider4" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:layout_width="match_parent" android:layout_height="wrap_content"/> <TextView android:id="@+id/slider5Text" android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="8pt" android:layout_marginLeft="10sp" android:layout_marginTop="15sp" android:text="@string/in_white"/> <SeekBar android:id="@+id/slider5" android:layout_marginLeft="10sp" android:layout_marginRight="10sp" android:layout_width="match_parent" android:layout_height="wrap_content"/> </LinearLayout> </ScrollView> </LinearLayout>
tests/RenderScriptTests/ImageProcessing2/res/layout/spinner_layout.xml 0 → 100644 +23 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2012 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="10dp" android:textSize="16sp" />