Android (Google) Code Review
5999cd7313
Merge change 3535
...
* changes:
Move placement of script enviroment data to base.
2009-06-08 18:58:27 -07:00
Jason Sams
928f5cf287
Move placement of script enviroment data to base.
2009-06-08 18:50:13 -07:00
Android (Google) Code Review
f87e896955
Merge change 3485
...
* changes:
Fix build issue and ref count bug with scripts.
2009-06-08 15:22:58 -07:00
Jason Sams
3a833d8e0f
Fix build issue and ref count bug with scripts.
2009-06-08 15:20:31 -07:00
Android (Google) Code Review
7087c0eac2
Merge change 3386
...
* changes:
Move call to compiler from jni to core library code.
2009-06-05 17:37:51 -07:00
Jason Sams
39ddc950c9
Move call to compiler from jni to core library code.
2009-06-05 17:35:09 -07:00
Mathias Agopian
e583a4ea8c
get rid of LogSocket which wasn't even implemented (enabled)
2009-06-05 15:11:23 -07:00
Mathias Agopian
55e3d60da5
break dependency on utils/ZipEntry.h and utils/ZipFile.h, get rid of inet_address.h and Socket.h which were not used
2009-06-05 14:56:35 -07:00
Android (Google) Code Review
79525264e5
Merge change 3284
...
* changes:
rename string_array.h to StringArray.h and move the implementation from the header file to a new cpp file.
2009-06-05 01:29:08 -07:00
Mathias Agopian
8ed6beb515
rename string_array.h to StringArray.h and move the implementation from the header file to a new cpp file.
...
StringArray is used in two places in framework/base and in the Sim. Ideally we should get rid of it and use Vector<String8> instead of creating new code.
2009-06-05 01:26:23 -07:00
Christopher Tate
3f0c72ab4b
am 0032ce80: Fix back_up_files() error detection when opening/CRCing the file
...
Merge commit '0032ce80ac127e6bfb25d727162eee4af208dc77'
* commit '0032ce80ac127e6bfb25d727162eee4af208dc77':
Fix back_up_files() error detection when opening/CRCing the file
2009-06-05 00:29:50 -07:00
Android (Google) Code Review
1b6aee1515
am 2a318867: Merge change 3203 into donut
...
Merge commit '2a3188672ab2b65c0ce7c9c598a463e382c47696'
* commit '2a3188672ab2b65c0ce7c9c598a463e382c47696':
rename a few files to camel-case, add copyright notices
2009-06-04 22:44:18 -07:00
Jack Palevich
2a741ad51f
Use ANSI style function declaration for RS scripts.
2009-06-04 20:16:39 -07:00
Jason Sams
a09f11d6c6
Add support for scripts to return an animation flag. This allows them to indicate they are generating changing content and the rs thread to sleep if the content is static.
2009-06-04 17:58:03 -07:00
Christopher Tate
0032ce80ac
Fix back_up_files() error detection when opening/CRCing the file
2009-06-04 17:02:56 -07:00
Jason Sams
8ad0010d6e
Set the RS thread priority.
2009-06-04 14:35:01 -07:00
Mathias Agopian
8ae2335a3c
rename a few files to camel-case, add copyright notices
2009-06-04 13:53:57 -07:00
Jason Sams
33c824d17b
Remove pointer hacks from script and use standard load/store functions.
2009-06-03 18:29:04 -07:00
Jason Sams
e2ae85fc5a
Generalize bitmap support and add remaining GL formats.
...
Fix bug in command fifo looping case.
2009-06-03 16:04:54 -07:00
Jason Sams
ffe9f48890
Improve bitmap support and do conversion in native rather than java code to reduce conversion time.
2009-06-01 17:45:53 -07:00
Mathias Agopian
696959c7b6
get rid of TimerProbe which is never used
2009-06-01 13:55:28 -07:00
Mathias Agopian
14f955b5d7
get rid of sleepForInterval() which didn't seem to be used anywhere in the source tree. Also get rid of ported.h which seem to be used only (possibly) in the sim. moved the implementation there.
2009-05-31 23:45:01 -07:00
Mathias Agopian
3b4062eeb0
get rid of utils.h
2009-05-31 19:13:00 -07:00
Android (Google) Code Review
9176469702
am b61ae351: Merge change 2747 into donut
...
Merge commit 'b61ae351256518add7bcb40e0bf18337dd87195c'
* commit 'b61ae351256518add7bcb40e0bf18337dd87195c':
log the geomerty of surfaces causing an out of memory in SurfaceFlinger.
2009-05-29 14:57:33 -07:00
Android (Google) Code Review
b61ae35125
Merge change 2747 into donut
...
* changes:
log the geomerty of surfaces causing an out of memory in SurfaceFlinger.
2009-05-29 14:55:48 -07:00
Mathias Agopian
6d892b60dd
log the geomerty of surfaces causing an out of memory in SurfaceFlinger.
2009-05-29 14:55:06 -07:00
Jack Palevich
e1ab434926
Don't prelink the libRS libraries.
...
These are temporary libraries for the development of RenderScript, so they
don't have to be prelinked.
2009-05-29 14:38:01 -07:00
Android (Google) Code Review
16641bcdae
am d9cc7659: Merge change 2706 into donut
...
Merge commit 'd9cc7659fa9b8544e2a3ca7b7040fbd79afdf7ea'
* commit 'd9cc7659fa9b8544e2a3ca7b7040fbd79afdf7ea':
Fix issue 1883666: Audio coming from the music player stopped suddenly
2009-05-29 09:42:26 -07:00
Eric Laurent
551603f0ec
Fix issue 1883666: Audio coming from the music player stopped suddenly
...
The problem comes from the code handling the automatic change of audio routing to speaker when notifications are played. The music is also muted while the sound is forced to speaker.
To avoid truncating the end of the notification, a delay is inserted between the end of the notification and the restoration of the audio routing. If a new notification starts during this delay, the current music mute state read and saved before muting music corresponds to the forced mute due to previous notification. When the new notification ends, the mute state restored is muted and music stream stays muted for ever.
The fix consists in reading and saving music mute state only if the audio routing has been restored (check that mForcedRoute is back to 0).
2009-05-29 02:03:21 -07:00
Jason Sams
243e3fbcf7
Implement sampler GL setup code.
2009-05-28 16:16:46 -07:00
Jason Sams
02fb2cb531
Add sampler support
2009-05-28 16:16:46 -07:00
Android (Google) Code Review
206b831907
Merge change 2658
...
* changes:
Delete the acc script when deleting the Renderscript rsScriptC object.
2009-05-28 15:55:52 -07:00
Android (Google) Code Review
fb1bf92c2e
Merge change 2657
...
* changes:
Remove versions of scriptCSetScript method that take byte arrays.
2009-05-28 15:55:24 -07:00
Jack Palevich
ec5a20bf2b
Delete the acc script when deleting the Renderscript rsScriptC object.
...
Previously we had been leaking the ACCscript object.
2009-05-28 15:53:04 -07:00
Jack Palevich
63975dde40
Remove versions of scriptCSetScript method that take byte arrays.
...
This makes the API simpler, and therefore probably easier to use.
2009-05-28 15:34:15 -07:00
Android (Google) Code Review
aebadd2cf4
Merge change 2636
...
* changes:
Add support for setting scripts, rather than having a hard-coded script.
2009-05-28 13:44:49 -07:00
Jack Palevich
43702d8925
Add support for setting scripts, rather than having a hard-coded script.
...
Move the test script into a resource file.
Add APIs for reading a script from a resource, InputStream, string, or
byte array.
2009-05-28 13:38:16 -07:00
Android (Google) Code Review
a8f61f41f4
Merge change 2574
...
* changes:
Sim-only files move, part 2/2.
2009-05-28 11:13:18 -07:00
Jason Sams
0ae234c991
Add background bitmap to fountain test app for renderscript.
2009-05-27 17:46:57 -07:00
Jack Palevich
df98851d2f
Change the Fountain test app's package to com.android.fountain.
...
It had been com.android.calc, which caused conflicts with the real Calc
application.
2009-05-27 17:00:45 -07:00
Andy McFadden
7fea935590
Sim-only files move, part 2/2.
...
Move Pipe and executablepath from libutils to the simulator, since nothing
else uses them.
2009-05-27 16:01:39 -07:00
Android (Google) Code Review
ba89724351
Merge change 2568
...
* changes:
Enable renderscript to build under the simulator.
2009-05-27 15:29:32 -07:00
Jack Palevich
81d0a9a70a
Enable renderscript to build under the simulator.
...
Added missing #include file to declare memcpy().
2009-05-27 15:26:57 -07:00
Jason Sams
fe08d99725
Implement first pass bitmap to allocation support. The Java bindings can create a 2D allocation by passing in a Bitmap object.
2009-05-27 14:45:32 -07:00
Jack Palevich
8191d0f634
Turn on ACC script test. (It works!)
...
+ Modified test script to work with the limitations of the ACC langauge.
- No <op>=
- use correct C API names for callback methods.
2009-05-27 12:38:37 -07:00
Jack Palevich
55d4522392
Fix Fountain test app so that it actually builds.
...
Also check in first part of an libACC implementation.
2009-05-26 19:21:23 -07:00
Android (Google) Code Review
09d00f705b
am 0c0ad39c: Merge change 2502 into donut
...
Merge commit '0c0ad39cd8eaa6de6b7f99cec3971bcc953461e0'
* commit '0c0ad39cd8eaa6de6b7f99cec3971bcc953461e0':
minor clean-up to Rect and Point.
2009-05-26 18:15:53 -07:00
Mathias Agopian
f1472a7972
minor clean-up to Rect and Point.
...
- return "const" objects for overloaded operators to disallow constructs like: (a+b) = c;
- don't return references to non-static members, it's not always safe.
- Point.cpp was empty, so get rid of it
2009-05-26 17:47:39 -07:00
Jack Palevich
eaff30744e
Fix RenderScript JNI code build issue.
...
We should not try to build the JNI file until after we have built the
the generated header files that it includes.
2009-05-26 17:23:34 -07:00
Mathias Agopian
aaf834a284
some work to try to reduce the code size of some native libraries
...
- make sure that all binder Bn classes define a ctor and dtor in their respective library.
This avoids duplication of the ctor/dtor in libraries where these objects are instantiated.
This is also cleaner, should we want these ctor/dtor to do something one day.
- same change as above for some Bp classes and various other non-binder classes
- moved the definition of CHECK_INTERFACE() in IInterface.h instead of having it everywhere.
- improved the CHECK_INTERFACE() macro so it calls a single method in Parcel, instead of inlining its code everywhere
- IBinder::getInterfaceDescriptor() now returns a "const String16&" instead of String16, which saves calls to String16 and ~String16
- implemented a cache for BpBinder::getInterfaceDescriptor(), since this does an IPC. HOWEVER, this method never seems to be called.
The cache makes BpBinder bigger, so we need to figure out if we need this method at all.
2009-05-26 16:12:20 -07:00