-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
INPUT DRIVER. Transitions, Draws, Optimizing
Whole new input driver New Stack Transition IN-OUT new ini_set("transition","value"); Optimize alphablend processes Optimize and Add Drawing Scale Nearest Neighbor Add drawing functions for alphablend
- Loading branch information
Ahmad Amarullah
committed
Jun 21, 2013
1 parent
306c388
commit 32f8608
Showing
15 changed files
with
959 additions
and
876 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,8 +76,8 @@ | |
// AROMA Main Configurations | ||
// | ||
#define AROMA_NAME "AROMA INSTALLER" | ||
#define AROMA_VERSION "2.70B4" | ||
#define AROMA_BUILD "130619-034B" | ||
#define AROMA_VERSION "2.70B5" | ||
#define AROMA_BUILD "130622-038B" | ||
#define AROMA_BUILD_CN "Flamboyan-Beta" | ||
#define AROMA_BUILD_L "Bandung - Indonesia" | ||
#define AROMA_BUILD_A "<[email protected]>" | ||
|
@@ -620,6 +620,28 @@ byte ag_draw_strecth( | |
int sw, | ||
int sh | ||
); | ||
byte ag_draw_strecth_ex( | ||
CANVAS * d, | ||
CANVAS * s, | ||
int dx, | ||
int dy, | ||
int dw, | ||
int dh, | ||
int sx, | ||
int sy, | ||
int sw, | ||
int sh, | ||
byte alpha, | ||
byte withdest | ||
); | ||
byte ag_draw_opa( | ||
CANVAS * d, | ||
CANVAS * s, | ||
int dx, | ||
int dy, | ||
byte alpha, | ||
byte withdest | ||
); | ||
void ag_dither(byte * qe, int qp, int qx, int dthx, int dthy, int dthw, int dthh, byte r, byte g, byte b); | ||
color ag_dodither(int x, int y, dword col); | ||
color ag_dodither_rgb(int x, int y, byte sr, byte sg, byte sb); | ||
|
@@ -711,6 +733,8 @@ void alib_exec(char * cmd, char * arg); | |
void create_directory(const char * path); | ||
int remove_directory(const char * path); | ||
long alib_tick(); | ||
long aTick(); | ||
void aSleep(long ms); | ||
|
||
// | ||
// AROMA Kinetic Calculator Functions | ||
|
Oops, something went wrong.
32f8608
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something in this commit breaks touch on Sprint devices (Jewel, M8). Any idea what it could be?