evas-drm: Handle render mode for 4 buffers

Summary: If we are using 4 buffers, we should be returning
MODE_QUADRUPLE for render_mode_get function

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-04-16 09:56:59 -04:00
parent 24033fa486
commit eff4a0abe7
1 changed files with 2 additions and 0 deletions

View File

@ -185,6 +185,8 @@ evas_outbuf_buffer_state_get(Outbuf *ob)
return MODE_DOUBLE;
case 2:
return MODE_TRIPLE;
case 3:
return MODE_QUADRUPLE;
default:
return MODE_FULL;
}