Author Topic: colors on OUYA  (Read 2734 times)

Offline raft

  • quad
  • ******
  • Posts: 1993
    • View Profile
    • http://www.aptalkarga.com
colors on OUYA
« on: July 31, 2013, 09:19:55 am »
I've finally received my OUYA. here are first impressions:

It's a cute tiny box. I've known in prior that it's small in size but still it's surprising to see how small it is. slightly bigger then a rubic cube. the console and controller looks good but I suppose the material quality is not that good. battery housing covers tend to open themselves. after a few hours of play, one of the analogue sticks started to screak. I guess there is some extra weight in the controller which makes it fit hand better. the stick sensitivity feels good but that may change in time due to wearing.

anyway, about the subject: I've checked Sky Maze and found that colors look ugly. I dont know how to explain it, they just look unfamiliar and ugly. this does not result from TV settings since other games look good. I dont know the reason yet, maybe extra caution is required for texture colors for TV? (for example, in Android docs, it's suggested to avoid pure white (#FFFFFF) since it may cause vibrancy and image ghosting.)

high resolution (due to relatively small texture sizes) is not also the reason, since I've run desktop version of Sky Maze in my 1080p 24" monitor and never saw such an effect.

may this be relevant with EGLConfigChooser? here is my corresponding code:

Code: [Select]
glSurfaceView.setEGLConfigChooser(new GLSurfaceView.EGLConfigChooser() {
public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) {
// Ensure that we get a 16bit framebuffer. Otherwise, we'll fall
// back to Pixelflinger on some device (read: Samsung I7500)
int[] attributes = new int[] { EGL10.EGL_DEPTH_SIZE, 16, EGL10.EGL_NONE };
EGLConfig[] configs = new EGLConfig[1];
int[] result = new int[1];
egl.eglChooseConfig(display, attributes, configs, 1, result);
return configs[0];
}
});

any other ideas?

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: colors on OUYA
« Reply #1 on: July 31, 2013, 10:19:05 pm »
I've no idea. Can you take a picture of the effect?

Offline raft

  • quad
  • ******
  • Posts: 1993
    • View Profile
    • http://www.aptalkarga.com
Re: colors on OUYA
« Reply #2 on: August 01, 2013, 09:24:48 pm »
with OUYA connected to my monitor all seems okey. I have no TV at home ;) so I cant compare them at the moment. I'll take a photo when I have the opportunity..

Offline raft

  • quad
  • ******
  • Posts: 1993
    • View Profile
    • http://www.aptalkarga.com
Re: colors on OUYA
« Reply #3 on: August 11, 2013, 05:02:00 pm »
just a correction about OUYA, screaking sound goes away after some use. same happened on the second controller too. and there is nothing to worry about self opening battery covers. they are secured with magnets which i didnt noticed at first. for the overall quality, it feels good till now.

for the games, nothing to compare to play station -yet- which is quite expected buy i have found a few really killer games according to my humble pleasure like ballistic and bombsquad. this second one is a real party game. it made us laugh like horses.

Offline raft

  • quad
  • ******
  • Posts: 1993
    • View Profile
    • http://www.aptalkarga.com
Re: colors on OUYA
« Reply #4 on: September 01, 2013, 07:09:59 pm »
I've made some tests on TV. my final decision is there is nothing wrong with color space but colors just look a bit different on TV. textures should be tested on TV and colors should be chosen accordingly.