Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa680857 authored by Scott Main's avatar Scott Main Committed by Android Git Automerger
Browse files

am 0ddd2d1e: DO NOT MERGE Delete unused/broken samples and tests from the...

am 0ddd2d1e: DO NOT MERGE Delete unused/broken samples and tests from the renderscript libs, so we can publish the entire contents of libs/rs/java/ for samples in HC

* commit '0ddd2d1e':
  DO NOT MERGE Delete unused/broken samples and tests from the renderscript libs, so we can publish the entire contents of libs/rs/java/ for samples in HC
parents 831a0892 0ddd2d1e
Loading
Loading
Loading
Loading
+0 −32
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.
#

ifneq ($(TARGET_SIMULATOR),true)

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := $(call all-java-files-under, src) \
                   $(call all-renderscript-files-under, src)
#LOCAL_STATIC_JAVA_LIBRARIES := android.renderscript

LOCAL_PACKAGE_NAME := ImageProcessing

include $(BUILD_PACKAGE)

endif
+0 −17
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.image">

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />    
    <uses-sdk android:minSdkVersion="11" />
    <application android:label="Image Processing">
        <activity android:name="ImageProcessingActivity"
                  android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>
−74.6 KiB
Loading image diff...
−74.6 KiB
Loading image diff...
+0 −187
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.
-->

<merge xmlns:android="http://schemas.android.com/apk/res/android">

    <SurfaceView
        android:id="@+id/surface"
        android:layout_width="1dip"
        android:layout_height="1dip" />

    <ImageView
        android:id="@+id/display"
        android:layout_width="320dip"
        android:layout_height="266dip" />

    <Button
        android:layout_marginBottom="170dip"
        android:layout_width="wrap_content"
        android:layout_height="40dip"
        android:text="@string/benchmark"
        android:onClick="benchmark"
        android:layout_gravity="bottom"/>

    <TextView
        android:id="@+id/benchmarkText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_marginLeft="100dip"
        android:layout_marginBottom="175dip"
        android:layout_gravity="bottom"
        android:text="@string/saturation"/>

     <SeekBar
        android:id="@+id/inSaturation"
        android:layout_marginBottom="140dip"
        android:layout_marginLeft="10dip"
        android:layout_marginRight="10dip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom" />

    <TextView
        android:id="@+id/inSaturationText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_marginLeft="50dip"
        android:layout_marginBottom="142dip"
        android:textColor="#000"
        android:layout_gravity="bottom"
        android:text="@string/saturation"/>

    <SeekBar
        android:id="@+id/inGamma"
        android:layout_marginBottom="110dip"
        android:layout_marginLeft="10dip"
        android:layout_marginRight="10dip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom" />

    <TextView
        android:id="@+id/inGammaText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_marginLeft="50dip"
        android:layout_marginBottom="112dip"
        android:textColor="#000"
        android:layout_gravity="bottom"
        android:text="@string/gamma"/>

    <SeekBar
        android:id="@+id/outWhite"
        android:layout_marginBottom="80dip"
        android:layout_marginLeft="170dip"
        android:layout_marginRight="10dip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom" />

    <TextView
        android:id="@+id/outWhiteText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_marginLeft="220dip"
        android:layout_marginBottom="82dip"
        android:textColor="#000"
        android:layout_gravity="bottom"
        android:text="@string/out_white"/>

    <SeekBar
        android:id="@+id/inWhite"
        android:layout_marginBottom="80dip"
        android:layout_marginLeft="10dip"
        android:layout_marginRight="170dip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom" />

    <TextView
        android:id="@+id/inWhiteText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_marginLeft="50dip"
        android:layout_marginBottom="82dip"
        android:textColor="#000"
        android:layout_gravity="bottom"
        android:text="@string/in_white"/>

    <SeekBar
        android:id="@+id/outBlack"
        android:layout_marginBottom="50dip"
        android:layout_marginLeft="170dip"
        android:layout_marginRight="10dip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom" />

    <TextView
        android:id="@+id/outBlackText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_marginLeft="220dip"
        android:layout_marginBottom="52dip"
        android:textColor="#000"
        android:layout_gravity="bottom"
        android:text="@string/out_black"/>

    <SeekBar
        android:id="@+id/inBlack"
        android:layout_marginBottom="50dip"
        android:layout_marginLeft="10dip"
        android:layout_marginRight="170dip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom" />

    <TextView
        android:id="@+id/inBlackText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_marginLeft="50dip"
        android:layout_marginBottom="52dip"
        android:textColor="#000"
        android:layout_gravity="bottom"
        android:text="@string/in_black"/>

    <SeekBar
        android:id="@+id/radius"
        android:layout_marginBottom="10dip"
        android:layout_marginLeft="10dip"
        android:layout_marginRight="10dip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom" />

     <TextView
        android:id="@+id/blurText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="18sp"
        android:layout_marginLeft="50dip"
        android:layout_marginBottom="12dip"
        android:textColor="#000"
        android:layout_gravity="bottom"
        android:text="@string/blur_description"/>

</merge>
 No newline at end of file
Loading