summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_3dfx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libvo/vo_3dfx.c b/libvo/vo_3dfx.c
index 6751620082..02892d699e 100644
--- a/libvo/vo_3dfx.c
+++ b/libvo/vo_3dfx.c
@@ -468,12 +468,13 @@ flip_page(void)
static uint32_t
query_format(uint32_t format)
{
+ /* does this supports scaling? up & down? */
switch(format){
case IMGFMT_YV12:
// case IMGFMT_YUY2:
// case IMGFMT_RGB|24:
// case IMGFMT_BGR|24:
- return 1;
+ return VFCAP_CSP_SUPPORTED|VFCAP_CSP_SUPPORTED_BY_HW;
}
return 0;
}