sdk/emulator/qemu.git
10 years agonew_codec: modified this module because qemu has been upgraded into 1.5.1.
Kitae Kim [Wed, 4 Sep 2013 05:50:18 +0000 (14:50 +0900)]
new_codec: modified this module because qemu has been upgraded into 1.5.1.

Change-Id: I9c848919908dc0fd3da40a13eff22c32ea42c36d
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agoosutil: Added a function that get the number of host processors.
Kitae Kim [Wed, 4 Sep 2013 03:03:41 +0000 (12:03 +0900)]
osutil: Added a function that get the number of host processors.

Separate the implementation from print_system_info_os function,
because the function could be useful when creating threads.

Change-Id: Ibb6d937b810c68505a64097c0b1f539b3ace45dd
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agonew_codec: changed a way to use device memory effectively.
Kitae Kim [Sun, 1 Sep 2013 13:00:33 +0000 (22:00 +0900)]
new_codec: changed a way to use device memory effectively.

Divide device memory into small, medium and large size of buffer
to use the memory effectively when decoding many contexts.

In case of meta data such as width, height, framerate and etc,
each context uses 256byte memory region and utilizes the large size of memory
when copying video and audio buffer,

Change-Id: I735849d3c8291e7b8922aff2b9a47f12edf35a85
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agonew_codec: source clean-up and remove unnecessary interrupt raise.
Kitae Kim [Thu, 22 Aug 2013 06:08:11 +0000 (15:08 +0900)]
new_codec: source clean-up and remove unnecessary interrupt raise.

in case of closing context, no need to raise interrupt,
because there is no copying data during close.

Change-Id: I14ec594b1afaa73d9eff629269ec94e703a11fb4
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agonew_codec: source clean-up.
Kitae Kim [Thu, 16 May 2013 01:33:42 +0000 (10:33 +0900)]
new_codec: source clean-up.

Used host cpu core number to create threads and did source refactoring.

Change-Id: Icc31088b454ea6059a1663810f3171ecb0c26008
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agonew_codec: fixed synchronous problem among contexts.
SeokYeon Hwang [Wed, 15 May 2013 08:02:49 +0000 (17:02 +0900)]
new_codec: fixed synchronous problem among contexts.

Used context_id as a identifier between device and driver.

Change-Id: I37f5e12ab0af0ad274f59b46ab96137df8bc5c3c
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
10 years agonew_codec: resolve a bug fix while decoding audio.
Kitae Kim [Fri, 10 May 2013 06:53:57 +0000 (15:53 +0900)]
new_codec: resolve a bug fix while decoding audio.

solve the memory problem when codec device copies
the decoded audio buffer from host to guest.

Change-Id: I86185f672bd8ea0d097ca58cabc0097cbb240c5e
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agonew_codec: resolve a bug fix that caused segv error during memcpy.
Kitae Kim [Fri, 10 May 2013 06:16:39 +0000 (15:16 +0900)]
new_codec: resolve a bug fix that caused segv error during memcpy.

Change-Id: I7840a8a763d011dc21928d0b6e1c7b1f267e344a
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agoMerge "new_codec: modified a routine to get codec meta data." into develop
SeokYeon Hwang [Wed, 11 Sep 2013 03:17:02 +0000 (12:17 +0900)]
Merge "new_codec: modified a routine to get codec meta data." into develop

10 years agoMerge "new_codec: changed a way to copy data between guest and host." into develop
SeokYeon Hwang [Wed, 11 Sep 2013 03:16:53 +0000 (12:16 +0900)]
Merge "new_codec: changed a way to copy data between guest and host." into develop

10 years agoMerge "new_codec: source clean up" into develop
SeokYeon Hwang [Wed, 11 Sep 2013 03:16:43 +0000 (12:16 +0900)]
Merge "new_codec: source clean up" into develop

10 years agoMerge "new_codec: added new codec device." into develop
SeokYeon Hwang [Wed, 11 Sep 2013 03:16:32 +0000 (12:16 +0900)]
Merge "new_codec: added new codec device." into develop

10 years agoInitial version of YaGL Mac support module
Patrick Porlan [Fri, 6 Sep 2013 15:05:13 +0000 (17:05 +0200)]
Initial version of YaGL Mac support module

This adds a preliminary AGL based implementation of YaGL
platform-specific routines, as well as a few additional changes:
- base EGL types suitables of OS X in eglplatform.h
- changes to both configure and makefiles to enable YaGL and VIGS
- an empty VIGS support module

Both YaGL and VIGS files compile and link, however only YaGL runs
for now. To try it, replace -enable-gl by enable-yagl in the qemu
command line, after installing adequate emulator-yagl and libdrm
packages in the root FS. /etc/virtgl.sh should detect that YaGL
is enabled and switch the EGL libs to the YaGL version

10 years agonew_codec: modified a routine to get codec meta data.
Kitae Kim [Fri, 10 May 2013 05:04:52 +0000 (14:04 +0900)]
new_codec: modified a routine to get codec meta data.

Change-Id: I405f6a26e767d2d4369078545dd2c52882293f79
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agonew_codec: changed a way to copy data between guest and host.
Kitae Kim [Fri, 10 May 2013 02:37:07 +0000 (11:37 +0900)]
new_codec: changed a way to copy data between guest and host.

emoved a routine that occupies device memory exclusively.

Change-Id: Ifb5d011f77cccd04c3f3a797872d45707d74eb6c
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agonew_codec: source clean up
Kitae Kim [Thu, 18 Apr 2013 08:23:19 +0000 (17:23 +0900)]
new_codec: source clean up

Changed some variables's name and resolve a sync problem between each job.
In addition, added two ways to handle decoding or encoding data with device memory.

At first, each codec request uses 24MB memory size in a fixed way.
It means that each codec request occupies its own memory region.
If the device memory is used up to 24MB, other codec request uses other memory region in a shared way.
It means that more than 2 codec requests use the memory region sequentially.

Change-Id: I0497d607cf46b98e403ed0d6d7530ea2023212a8
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agonew_codec: added new codec device.
Kitae Kim [Tue, 12 Mar 2013 11:41:44 +0000 (20:41 +0900)]
new_codec: added new codec device.

This device is for improving performance and architecture of old codec device.

Change-Id: I719367741cb8481b68c4c3438069751955429116
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agoqemu: gathering ecs modules into a ecs folder
GiWoong Kim [Tue, 10 Sep 2013 01:54:32 +0000 (10:54 +0900)]
qemu: gathering ecs modules into a ecs folder

Change-Id: I051b3af3646c9b46ab178cd9ae50038ef8a3d908
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
10 years agopackage: version up
GiWoong Kim [Tue, 10 Sep 2013 06:09:49 +0000 (15:09 +0900)]
package: version up

1.5.92

Change-Id: I42bfb438881818cdae0c03f69127a577f0cff0ad
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: make skins package for windows/macos
GiWoong Kim [Tue, 10 Sep 2013 06:08:49 +0000 (15:08 +0900)]
package: make skins package for windows/macos

Change-Id: I85d214a849d9514cfa5b08e2c22554ec8e395aa9
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: modified pkginfo
GiWoong Kim [Tue, 10 Sep 2013 05:22:18 +0000 (14:22 +0900)]
package: modified pkginfo

added mobile-3.0-emulator-qemu-skins to ubuntu-64

Change-Id: I8bb406dc303a322708303e430e80d4b66a406de9
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agodisplay: blank guide appearance time is moved up
GiWoong Kim [Tue, 10 Sep 2013 04:42:46 +0000 (13:42 +0900)]
display: blank guide appearance time is moved up

Change-Id: I4c95a7614d1b592e52c837985dc46ca6d34b179b
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: version up
GiWoong Kim [Tue, 10 Sep 2013 01:54:32 +0000 (10:54 +0900)]
package: version up

1.5.91

Change-Id: Ibaa9bc5d5415c02c26cb6ccf30f45a36512e63a1
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoMerge "emulator: indenting" into develop
daiyoung kim [Tue, 10 Sep 2013 02:41:29 +0000 (11:41 +0900)]
Merge "emulator: indenting" into develop

10 years agoMerge "package: make skins package for ubuntu" into develop
daiyoung kim [Tue, 10 Sep 2013 02:40:56 +0000 (11:40 +0900)]
Merge "package: make skins package for ubuntu" into develop

10 years agoMerge "Add missing include in Mac VirtGL code" into develop
daiyoung kim [Tue, 10 Sep 2013 02:40:21 +0000 (11:40 +0900)]
Merge "Add missing include in Mac VirtGL code" into develop

10 years agoemulator: indenting
GiWoong Kim [Mon, 9 Sep 2013 08:36:46 +0000 (17:36 +0900)]
emulator: indenting

debug_ch

Change-Id: I15d1d936f7a52640e51e1ae22679a384ec3e6140
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: make skins package for ubuntu
GiWoong Kim [Mon, 9 Sep 2013 03:07:48 +0000 (12:07 +0900)]
package: make skins package for ubuntu

Change-Id: Ie547e187b065c5368bb0c9f76bf5dcde50e6f450
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoAdd missing include in Mac VirtGL code
Patrick Porlan [Fri, 6 Sep 2013 14:55:55 +0000 (16:55 +0200)]
Add missing include in Mac VirtGL code

g_malloc was truncating a 64 bits address because of it

10 years agoskin: no need to shell pack while layout changing
GiWoong Kim [Fri, 6 Sep 2013 05:16:46 +0000 (14:16 +0900)]
skin: no need to shell pack while layout changing

no need to shell pack while layout changing
And set Display parent to screenshot shell on Mac

Change-Id: I0746ca1e2df46e1441c2aca5d7610ca7ac7f074f
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agomenu: change a parent of screenshot shell
GiWoong Kim [Wed, 4 Sep 2013 08:35:54 +0000 (17:35 +0900)]
menu: change a parent of screenshot shell

change a parent of screenshot shell
and modified the init position

Change-Id: Ia0b1e7d314d918d963815fe399de7564a40aab44
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoAdd Input Device for mouse
hyunjin816.lee [Tue, 3 Sep 2013 07:02:49 +0000 (16:02 +0900)]
Add Input Device for mouse

- modify ps2 mouse point, ABS to REL
- modify typo
- add input.mouse parameter

Change-Id: I15d01cc6e49dc0a9b36e80a090da70ed80824b1f
Signed-off-by: hyunjin816.lee <hyunjin816.lee@samsung.com>
10 years agoskin: modified test.hb.ignore to hb.ignore
sungmin ha [Wed, 4 Sep 2013 02:11:54 +0000 (11:11 +0900)]
skin: modified test.hb.ignore to hb.ignore

remote: add conditional sentence for remote excution

Change-Id: I837b12fdf49a0cc56fe4b16e40d93367629175d1
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
10 years agodisplay: added mutex lock to SDL_Quit
GiWoong Kim [Wed, 4 Sep 2013 04:47:47 +0000 (13:47 +0900)]
display: added mutex lock to SDL_Quit

Change-Id: Ic140a01c78660fc0a46c751ea70acbd3061b1c0d
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: version up
GiWoong Kim [Tue, 3 Sep 2013 10:17:24 +0000 (19:17 +0900)]
package: version up

1.5.87

Change-Id: I1a5e5f734c240cd74b3c79a62347af4ce6cdaec5
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agodisplay: modified SDL logic
GiWoong Kim [Tue, 3 Sep 2013 09:06:37 +0000 (18:06 +0900)]
display: modified SDL logic

SDL_SetVideoMode should be called in the main thread

Change-Id: Icade58c46b3af0ec972158d2e750deec98363967
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agodisplay: removed sdl_opengl source code
GiWoong Kim [Tue, 3 Sep 2013 02:50:02 +0000 (11:50 +0900)]
display: removed sdl_opengl source code

Change-Id: Ia2a571ae7aa439c566cca680f64990ddb220cb1c
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agobuild: change space to tab
munkyu.im [Mon, 2 Sep 2013 09:10:05 +0000 (18:10 +0900)]
build: change space to tab

Change-Id: Id0f8dc69262456232cbe42d95c8002f0d331aedf
Signed-off-by: munkyu.im <munkyu.im@samsung.com>
10 years agobuild: modify build script for macosx
munkyu.im [Mon, 2 Sep 2013 08:47:36 +0000 (17:47 +0900)]
build: modify build script for macosx

add libraries and header files
add file modification by sed

Change-Id: Ia53edc7db267d93109b60ce699a12677db8eee19
Signed-off-by: munkyu.im <munkyu.im@samsung.com>
10 years agoqemu: removed warnings & unnecessary logs, and changed log location.
Jinhyung Choi [Mon, 2 Sep 2013 02:16:00 +0000 (11:16 +0900)]
qemu: removed warnings & unnecessary logs, and changed log location.
replaced tab to 4 white space

Change-Id: I62e9ea53021d8e74511d2231ae82adbd3fa15cf3
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
10 years agoMerge "build-script: apply emulator-lib-dev package for windows-32" into develop
daiyoung kim [Fri, 30 Aug 2013 05:47:33 +0000 (14:47 +0900)]
Merge "build-script: apply emulator-lib-dev package for windows-32" into develop

10 years agobuild-script: apply emulator-lib-dev package for windows-32
sungmin ha [Thu, 29 Aug 2013 06:16:48 +0000 (15:16 +0900)]
build-script: apply emulator-lib-dev package for windows-32

Change-Id: I958ab34eb38ec846fca8f65ee33d5565dada7e09
Signed-off-by: sungmin ha <sungmin82.ha@samsung.com>
10 years agokeyboard: seperate a key event on Windows
GiWoong Kim [Thu, 29 Aug 2013 03:34:59 +0000 (12:34 +0900)]
keyboard: seperate a key event on Windows

seperate a key event if the release events
were superimposed

Change-Id: I48aa5d9332c68e7efec54dc331085bd8fdeb1d81
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: apply emulator-lib-dev package
munkyu.im [Wed, 28 Aug 2013 07:41:38 +0000 (16:41 +0900)]
package: apply emulator-lib-dev package

Change-Id: Ie0c59c492a78373472472df38a50bf5c7514a874
Signed-off-by: munkyu.im <munkyu.im@samsung.com>
10 years agoVIGS: Make a single memcpy call inside vigs_server_update_display when possible
Stanislav Vorobiov [Tue, 27 Aug 2013 10:47:21 +0000 (14:47 +0400)]
VIGS: Make a single memcpy call inside vigs_server_update_display when possible

If display stride == root surface stride one memcpy will suffice

10 years agoYaGL: Cache minmax index query result in yagl_gles_buffer
Stanislav Vorobiov [Tue, 27 Aug 2013 08:21:03 +0000 (12:21 +0400)]
YaGL: Cache minmax index query result in yagl_gles_buffer

This seemed to be a bottleneck, according to perf. With
this fix minmax index query is no longer "red" in perf report

10 years agoMerge "qemu: set 100ms timeout to epoll_wait function" into develop
daiyoung kim [Tue, 27 Aug 2013 07:34:35 +0000 (16:34 +0900)]
Merge "qemu: set 100ms timeout to epoll_wait function" into develop

10 years agoqemu: set 100ms timeout to epoll_wait function
Jinhyung Choi [Tue, 27 Aug 2013 07:42:12 +0000 (16:42 +0900)]
qemu: set 100ms timeout to epoll_wait function

Change-Id: I4ee1bcfe927fc8deee584f077eea7ee5a87b1343
Signed-off-by: Jinhyung Choi <jinhyung2.choi@samsung.com>
10 years agovga: added CONFIG_MARU
GiWoong Kim [Tue, 27 Aug 2013 05:32:55 +0000 (14:32 +0900)]
vga: added CONFIG_MARU

Change-Id: Ida5b7d9d9e2ad2157fe511c9a17a1ec9cf1de4f5
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agodisplay: blank-guide image is replaced
GiWoong Kim [Tue, 27 Aug 2013 05:05:03 +0000 (14:05 +0900)]
display: blank-guide image is replaced

Change-Id: Iaa1593986509adab3566f13312f150d9d80a37d2
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agomenu: modified about image loading & etc
GiWoong Kim [Mon, 26 Aug 2013 11:29:15 +0000 (20:29 +0900)]
menu: modified about image loading & etc

Change-Id: I26b990af4ad169935c5a7b0bee16ad2f6246e81f
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agodisplay: enable blank guide on maru_shm
GiWoong Kim [Mon, 26 Aug 2013 08:09:35 +0000 (17:09 +0900)]
display: enable blank guide on maru_shm

Change-Id: Ie172e1e7396cb0a439e9b4a8b87ade8cc0adca4e
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoMerge "semaphore: fix a hangup problem under load on NetBSD hosts." into develop
daiyoung kim [Mon, 26 Aug 2013 07:33:27 +0000 (16:33 +0900)]
Merge "semaphore: fix a hangup problem under load on NetBSD hosts." into develop

10 years agoMerge "package: version up" into develop
daiyoung kim [Mon, 26 Aug 2013 07:31:41 +0000 (16:31 +0900)]
Merge "package: version up" into develop

10 years agoMerge "sdb: remove calling sdb notification" into develop
daiyoung kim [Mon, 26 Aug 2013 07:31:18 +0000 (16:31 +0900)]
Merge "sdb: remove calling sdb notification" into develop

10 years agoMerge "mac: change directory for temp file" into develop
daiyoung kim [Mon, 26 Aug 2013 07:30:39 +0000 (16:30 +0900)]
Merge "mac: change directory for temp file" into develop

10 years agopackage: version up
munkyu.im [Mon, 26 Aug 2013 05:41:39 +0000 (14:41 +0900)]
package: version up

Change-Id: Icd1d381f91d5941db73fb66e03fcf0ac3e9d0359
Signed-off-by: munkyu.im <munkyu.im@samsung.com>
10 years agosdb: remove calling sdb notification
munkyu.im [Mon, 26 Aug 2013 05:38:10 +0000 (14:38 +0900)]
sdb: remove calling sdb notification

Change-Id: Ibdb0f6bd5d0369dd17bd2e4039b41ffb6c6f9f7d
Signed-off-by: munkyu.im <munkyu.im@samsung.com>
10 years agomac: change directory for temp file
munkyu.im [Mon, 26 Aug 2013 05:34:23 +0000 (14:34 +0900)]
mac: change directory for temp file

Change-Id: I4ccfb9395d80befce301115ce69ea4eb8f1d1560
Signed-off-by: munkyu.im <munkyu.im@samsung.com>
10 years agosemaphore: fix a hangup problem under load on NetBSD hosts.
Izumi Tsutsui [Wed, 3 Jul 2013 08:58:14 +0000 (17:58 +0900)]
semaphore: fix a hangup problem under load on NetBSD hosts.

Fix following bugs in "fallback implementation of counting semaphores
with mutex+condvar" added in c166cb72f1676855816340666c3b618beef4b976:
 - waiting threads are not restarted properly if more than one threads
   are waiting unblock signals in qemu_sem_timedwait()
 - possible missing pthread_cond_signal(3) calls when waiting threads
   are returned by ETIMEDOUT
 - fix an uninitialized variable
The problem is analyzed by and fix is provided by Noriyuki Soda.

Also put additional cleanup suggested by Laszlo Ersek:
 - make QemuSemaphore.count unsigned (it won't be negative)
 - check a return value of in pthread_cond_wait() in qemu_sem_wait()

Change-Id: Ic785784de211427cd3d0db746dbc1dbac3c8bc33
Signed-off-by: Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Message-id: 1372841894-10634-1-git-send-email-tsutsui@ceres.dti.ne.jp
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
10 years agoskin: ImageRegistry refactoring
GiWoong Kim [Fri, 23 Aug 2013 10:08:22 +0000 (19:08 +0900)]
skin: ImageRegistry refactoring

and added blank-guide image loading

Change-Id: Idcf8880664f4a351c377ed1c6f3c0ef3df14b6dd
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agocommunication: added DRAW_BLANK_GUIDE protocol
GiWoong Kim [Fri, 23 Aug 2013 08:47:39 +0000 (17:47 +0900)]
communication: added DRAW_BLANK_GUIDE protocol

Change-Id: I93d4a0d3afc42fe2879c016aea8d8c044f040d61
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoMerge "YaGL: Fixed framebuffers and renderbuffers leak" into develop
Yeongkyoon Lee [Fri, 23 Aug 2013 10:35:46 +0000 (19:35 +0900)]
Merge "YaGL: Fixed framebuffers and renderbuffers leak" into develop

10 years agoMerge "YaGL: Support EGL_ALPHA_MASK_SIZE" into develop
Yeongkyoon Lee [Fri, 23 Aug 2013 10:35:37 +0000 (19:35 +0900)]
Merge "YaGL: Support EGL_ALPHA_MASK_SIZE" into develop

10 years agoMerge "YaGL: GL_EXT_texture_format_BGRA8888 implementation bug fixed" into develop
Yeongkyoon Lee [Fri, 23 Aug 2013 10:35:29 +0000 (19:35 +0900)]
Merge "YaGL: GL_EXT_texture_format_BGRA8888 implementation bug fixed" into develop

10 years agoMerge "YaGL: EGL_KHR_surfaceless_context implemented" into develop
Yeongkyoon Lee [Fri, 23 Aug 2013 10:35:18 +0000 (19:35 +0900)]
Merge "YaGL: EGL_KHR_surfaceless_context implemented" into develop

10 years agoMerge "YaGL: Don't check 'target' in eglCreateImageKHR" into develop
Yeongkyoon Lee [Fri, 23 Aug 2013 10:35:08 +0000 (19:35 +0900)]
Merge "YaGL: Don't check 'target' in eglCreateImageKHR" into develop

10 years agoMerge "YaGL: GL_EXT_texture_format_BGRA8888 implemented" into develop
Yeongkyoon Lee [Fri, 23 Aug 2013 10:34:56 +0000 (19:34 +0900)]
Merge "YaGL: GL_EXT_texture_format_BGRA8888 implemented" into develop

10 years agoMerge "YaGL: glFinish removed, using single render finish command winsys: added ...
Yeongkyoon Lee [Fri, 23 Aug 2013 10:34:45 +0000 (19:34 +0900)]
Merge "YaGL: glFinish removed, using single render finish command winsys: added 'set_dirty' to winsys_surface" into develop

10 years agoMerge "YaGL: Remove remaining X11 specific stuff from protocol" into develop
Yeongkyoon Lee [Fri, 23 Aug 2013 10:34:33 +0000 (19:34 +0900)]
Merge "YaGL: Remove remaining X11 specific stuff from protocol" into develop

10 years agoMerge "sdb: add device_serial_number" into develop
Yeongkyoon Lee [Fri, 23 Aug 2013 05:44:39 +0000 (14:44 +0900)]
Merge "sdb: add device_serial_number" into develop

10 years agosdb: add device_serial_number
munkyu.im [Thu, 22 Aug 2013 13:16:16 +0000 (22:16 +0900)]
sdb: add device_serial_number

device_serial_number = base_port + 1

Change-Id: I1cccf7f9135da3834dbf0f646f295b8564b97ee1
Signed-off-by: munkyu.im <munkyu.im@samsung.com>
10 years agoemulator: remove double quotation marks from the build info
GiWoong Kim [Fri, 23 Aug 2013 02:15:32 +0000 (11:15 +0900)]
emulator: remove double quotation marks from the build info

Change-Id: Ie48001d23c3ec79d02d36306d050d441a64668d4
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoguest_server: Changed sdcard path.
Kitae Kim [Thu, 22 Aug 2013 12:01:03 +0000 (21:01 +0900)]
guest_server: Changed sdcard path.

Since emulator-vms path under the tizen-sdk-data has been changed as emulator,
qemu is required to modify the path.

Change-Id: I87db74642d1a89af4ce0124659b973b24982ea37
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agoskin: optimize the hover drawing
GiWoong Kim [Thu, 22 Aug 2013 09:32:30 +0000 (18:32 +0900)]
skin: optimize the hover drawing

Change-Id: I59e726a9ada1cac4d8aef1ec50f708e22b1749c7
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoYaGL: Fixed framebuffers and renderbuffers leak
Stanislav Vorobiov [Thu, 22 Aug 2013 08:14:06 +0000 (12:14 +0400)]
YaGL: Fixed framebuffers and renderbuffers leak

10 years agopackage: version up
munkyu.im [Thu, 22 Aug 2013 07:39:54 +0000 (16:39 +0900)]
package: version up

Signed-off-by: munkyu.im <munkyu.im@samsung.com>
10 years agosdb: call sdb notify when get sensor server notification
munkyu.im [Thu, 22 Aug 2013 07:33:48 +0000 (16:33 +0900)]
sdb: call sdb notify when get sensor server notification

Signed-off-by: munkyu.im <munkyu.im@samsung.com>
10 years agoskin: modified qHD Hwkey region
GiWoong Kim [Thu, 22 Aug 2013 04:30:54 +0000 (13:30 +0900)]
skin: modified qHD Hwkey region

Change-Id: I73c9f4e3f3a258a82789fc859af3014bbcfae6f4
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoskin: added special keyWindow
GiWoong Kim [Thu, 22 Aug 2013 04:26:51 +0000 (13:26 +0900)]
skin: added special keyWindow

Change-Id: Id8a5f048d26be3a80f9b58917e1412ba1c49353e
Signed-off-by: hyunjin816.lee <hyunjin816.lee@samsung.com>
10 years agoMerge "tizen: Makefile clean-up." into develop
Yeongkyoon Lee [Thu, 22 Aug 2013 02:34:08 +0000 (11:34 +0900)]
Merge "tizen: Makefile clean-up." into develop

10 years agotizen: Makefile clean-up.
Kitae Kim [Wed, 21 Aug 2013 07:48:14 +0000 (16:48 +0900)]
tizen: Makefile clean-up.

There were duplicated commands in the Makefile because of host OS.

Change-Id: Ie40bf12b538b30f4b67f7c91f26b8b58d9605efa
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agoskin: remove previous hwkey hover always
GiWoong Kim [Thu, 22 Aug 2013 00:58:22 +0000 (09:58 +0900)]
skin: remove previous hwkey hover always

Change-Id: I26a30dbb5f59d5b3b5d1b4f32a61f1e3767957b4
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agodisplay: blank guide image processing & align
GiWoong Kim [Wed, 21 Aug 2013 09:07:38 +0000 (18:07 +0900)]
display: blank guide image processing & align

Change-Id: Iafe298eec18a7034f058e2f5397f5257f958f497
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: version up
GiWoong Kim [Tue, 20 Aug 2013 10:03:18 +0000 (19:03 +0900)]
package: version up

1.5.80

Change-Id: I206027160f073ed14d8d0f7ed614fb66a0b68c4b
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoskin: modified skin info.ini
GiWoong Kim [Tue, 20 Aug 2013 09:41:07 +0000 (18:41 +0900)]
skin: modified skin info.ini

added skin.profile property

Change-Id: Ifd4175c548aac3af75a1dc9a61b6b22b754274d4
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoskin: modified skin folder name
GiWoong Kim [Tue, 20 Aug 2013 09:18:53 +0000 (18:18 +0900)]
skin: modified skin folder name

emul-720x1280-3btn -> mobile-720x1280-3btn

Change-Id: I87aaf23e01d0e9e1880708f7afd4959213c1b66a
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoguest_server: unified string utility functions as glib.
Kitae Kim [Tue, 20 Aug 2013 07:58:55 +0000 (16:58 +0900)]
guest_server: unified string utility functions as glib.

c and glib string functions were mixed.

Change-Id: I39dc97ecabe73bada566dc5d27633a7a61428fe6
Signed-off-by: Kitae Kim <kt920.kim@samsung.com>
10 years agoFix bug when detect sdk data path in sdk.info
SeokYeon Hwang [Tue, 20 Aug 2013 05:28:41 +0000 (14:28 +0900)]
Fix bug when detect sdk data path in sdk.info

Change-Id: I9e59b916669a5af2fff9f38bc1706164dfa2ceaa
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
10 years agoskin: set states before menu creating
GiWoong Kim [Tue, 20 Aug 2013 07:23:22 +0000 (16:23 +0900)]
skin: set states before menu creating

Change-Id: I1642ed96fc1e2a2ae715db8a42841a97d3825c38
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoskin: modified qHD skin name
GiWoong Kim [Tue, 20 Aug 2013 05:13:05 +0000 (14:13 +0900)]
skin: modified qHD skin name

Phone 3btn 540x960 -> Phone 540x960

Change-Id: Idab6c65504d7f59d299c3d81202bb57484e75626
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoecs: fix select procedure
munkyu.im [Tue, 13 Aug 2013 08:08:56 +0000 (17:08 +0900)]
ecs: fix select procedure

Signed-off-by: munkyu.im <munkyu.im@samsung.com>
10 years agoskin: added qHD skin
GiWoong Kim [Tue, 13 Aug 2013 07:47:53 +0000 (16:47 +0900)]
skin: added qHD skin

emul-540x960-3btn

Change-Id: Ie0157cd253bc7687d39e9db60e4a8c9ec5319826
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: version up
GiWoong Kim [Tue, 13 Aug 2013 06:51:59 +0000 (15:51 +0900)]
package: version up

1.5.77

Change-Id: I70c8f9835d9c89df87778918491f9ee504b8c942
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoemulator: modified lib linking on Windows
GiWoong Kim [Tue, 13 Aug 2013 06:50:40 +0000 (15:50 +0900)]
emulator: modified lib linking on Windows

lpng -> lpng14

Change-Id: I2a2f37a05cb4e94926a42c3bae2934169bf064b7
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoYaGL: Support EGL_ALPHA_MASK_SIZE
Stanislav Vorobiov [Mon, 12 Aug 2013 14:45:48 +0000 (18:45 +0400)]
YaGL: Support EGL_ALPHA_MASK_SIZE

glmark2 requires it

10 years agoemulator: EMUL_DIR -> DIBS_COMMON_DIR
GiWoong Kim [Mon, 12 Aug 2013 13:21:44 +0000 (22:21 +0900)]
emulator: EMUL_DIR -> DIBS_COMMON_DIR

Change-Id: I656279a4215c165eb5702c636fd75c338ff1d02c
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agopackage: version up
GiWoong Kim [Mon, 12 Aug 2013 13:04:55 +0000 (22:04 +0900)]
package: version up

1.5.76

Change-Id: Ic64df1da2cce8dbc714da0ae37fa35dec43aac29
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agodisplay: added blank guide image
GiWoong Kim [Fri, 9 Aug 2013 11:07:55 +0000 (20:07 +0900)]
display: added blank guide image

Change-Id: I0f558f0e26f717d80c4d2641ac50c80c04e69dc5
Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
10 years agoYaGL: GL_EXT_texture_format_BGRA8888 implementation bug fixed
Stanislav Vorobiov [Mon, 12 Aug 2013 12:01:49 +0000 (16:01 +0400)]
YaGL: GL_EXT_texture_format_BGRA8888 implementation bug fixed

GL_BGRA is a valid value for format, but not for internalformat, fixed it