comparison libvo/vo_tga.c @ 31653:39dbcbd0d1d5

Use the proper imgfmt names.
author reimar
date Sun, 11 Jul 2010 21:30:45 +0000
parents c49231cc0f95
children 827ea30d89ee
comparison
equal deleted inserted replaced
31652:c49231cc0f95 31653:39dbcbd0d1d5
192 } 192 }
193 193
194 static int query_format(uint32_t format) 194 static int query_format(uint32_t format)
195 { 195 {
196 switch(format){ 196 switch(format){
197 case IMGFMT_BGR|15: 197 case IMGFMT_BGR15:
198 case IMGFMT_BGR|24: 198 case IMGFMT_BGR24:
199 case IMGFMT_BGRA: 199 case IMGFMT_BGRA:
200 return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW; 200 return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW;
201 } 201 }
202 return 0; 202 return 0;
203 } 203 }