Jump to content

What about Jelly Bean on Skate???


Recommended Posts

Guest plegdroid
Posted

Lolwut, I'm tots racist now ;)

Well, I don't see how putting the screen upside down saves on manufacturing costs -.-' it's just a damned display...

it may help with manufacturing cost as to where the conectors connect to the mother board ect, just may be cheaper to manufacture with components they've already got than to build with components they've got to specifically design at extra cost.

Guest omegavesko
Posted

Is this related to one of the common line in build.prop for skate:

ro.sf.hwrotation=180

Can we fix that upside down problem using this line?

Hm, sounds like it could help. What happens if you remove the line?

Guest PaulOBrien
Posted

Why. Just because they're Chinese and such... :/

We have many Chinese members who would find this rather offensive, even if said in jest. Be nice.

P

Guest iReece
Posted (edited)

We have many Chinese members who would find this rather offensive, even if said in jest. Be nice.

P

No.

I meant it in the sense that, just because they're Chinese, they cannot flip a display.

No offence was meant to be dealt :/

Edit,

Actually, that was offensive.

Try this,

Just because they're Chinese, they cannot flip a display?

Edited by iReece
Guest plegdroid
Posted

No.

I meant it in the sense that, just because they're Chinese, they cannot flip a display.

No offence was meant to be dealt :/

Edit,

Actually, that was offensive.

Try this,

Just because they're Chinese, they cannot flip a display?

I'd have phrased that as, Zte cannot flip a display :) then there's no mention of nationality.

Guest iReece
Posted

I'd have phrased that as, Zte cannot flip a display :) then there's no mention of nationality.

Well, zte is a Chinese company. I'd have done the same for any company in any country.

My apologies if I have offended you.

Guest plegdroid
Posted

Well, zte is a Chinese company. I'd have done the same for any company in any country.

My apologies if I have offended you.

no offence taken :D

Posted (edited)

Probably a small change to surfaceflinger would be enough to solve the flipped screen issue. (note the HAS_FLIPPED_SCREEN conditional compilation statement)

This is taken from CM7 sources for surfaceflinger. It really is related to ro.sf.hwrotation parameter.

But I am not 100% sure :)


void GraphicPlane::setDisplayHardware(DisplayHardware *hw)

{

	mHw = hw;

	// initialize the display orientation transform.

	// it's a constant that should come from the display driver.

	int displayOrientation = ISurfaceComposer::eOrientationDefault;

	char property[PROPERTY_VALUE_MAX];

	if (property_get("ro.sf.hwrotation", property, NULL) > 0) {

		//displayOrientation

		switch (atoi(property)) {

		case 90:

			displayOrientation = ISurfaceComposer::eOrientation90;

			break;

#ifdef HAS_FLIPPED_SCREEN

		case 180:

			displayOrientation = ISurfaceComposer::eOrientation180;

			break;

#endif

		case 270:

			displayOrientation = ISurfaceComposer::eOrientation270;

			break;

		}

	}

	const float w = hw->getWidth();

	const float h = hw->getHeight();

	GraphicPlane::orientationToTransfrom(displayOrientation, w, h,

			&mDisplayTransform);

	if (displayOrientation & ISurfaceComposer::eOrientationSwapMask) {

		mDisplayWidth = h;

		mDisplayHeight = w;

	} else {

		mDisplayWidth = w;

		mDisplayHeight = h;

	}

	setOrientation(ISurfaceComposer::eOrientationDefault);

}

Edited by C3C0
Guest tilal6991
Posted

Another progress update:

I have it on the Skate and I have (pretty much) everything working bar OpenGL acceleration (ie. Project Butter)

Guest zukriaksah
Posted

Another progress update:

I have it on the Skate and I have (pretty much) everything working bar OpenGL acceleration (ie. Project Butter)

u r so fast... hows camera?

Posted

u r so fast... hows camera?

I would say you are fast, too :D

Guest tilal6991
Posted

AH yes - camera is broken temporarily - will be fixed when I can. But I can guarantee it won't be any better than ICS

Guest zukriaksah
Posted

I would say you are fast, too :D

hahaha! hows mokee v1.10? i hv downloaded v880 mokee, but in my office pc

Guest zukriaksah
Posted

I would say you are fast, too :D

hahaha! hows mokee v1.10? i hv downloaded v880 mokee, but in my office pc

Guest jul57640
Posted

Cool...

I hope it's not an omx related issue

Guest Josh92
Posted

Great news! It is likely OpenGL acceleration will be possible?

Guest tilal6991
Posted

Yes - it's broken on EVERY qcom device.

Some generic stuff needs to be committed to CM.

Guest ukgnome
Posted

Another progress update:

I have it on the Skate and I have (pretty much) everything working bar OpenGL acceleration (ie. Project Butter)

Seriously - jeepers man, lightning fast. So much so I spat coffee over my keyboard!

Posted

hahaha! hows mokee v1.10? i hv downloaded v880 mokee, but in my office pc

Can you upload it somewhere for me? :)

(Sorry for OT)

Guest ElrOnDPT
Posted

Another progress update:

I have it on the Skate and I have (pretty much) everything working bar OpenGL acceleration (ie. Project Butter)

That means you have Project Butter up and running on skate, or that "bar" is a "but"?

If its working...how would you describe the speed difference?

Huge thumbs up for your work...you are indeed THE man....ZTE should pay you for the support you provide ^^

Posted

I think zte would rather kill him for bringing android 4 to skate ;)

Guest Josh92
Posted (edited)
I think zte would rather kill him for bringing android 4 to skate ;)
Why? He's sold a bunch of skates for it. Edited by Josh92
Guest ElrOnDPT
Posted

Why? He's sold them a bunch for skates for it.

Exactly :) He is adding value to the ZTE products...so he should be rewarded for it ;)

Guest sasa_gm
Posted

Another progress update:

I have it on the Skate and I have (pretty much) everything working bar OpenGL acceleration (ie. Project Butter)

Wow..Awesome!

What about general performance? Is it already faster?

Guest hugobosslives
Posted

Why? He's sold a bunch of skates for it.

for example. i definitely would have bought a new phone by now if we didn't have such an awesome community for ics/jb

therefore i might have bought a new zte phone... thus giving them money.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.