/* * Copyright 2009 VMware, Inc. * All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * on the rights to use, copy, modify, merge, publish, distribute, sub * license, and/or sell copies of the Software, and to permit persons to whom * the Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL * VMWARE AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE * USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "u_indices.h" #include "u_indices_priv.h" static void translate_memcpy_ushort( const void *in, unsigned start, unsigned in_nr, unsigned out_nr, unsigned restart_index, void *out ) { memcpy(out, &((short *)in)[start], out_nr*sizeof(short)); } static void translate_memcpy_uint( const void *in, unsigned start, unsigned in_nr, unsigned out_nr, unsigned restart_index, void *out ) { memcpy(out, &((int *)in)[start], out_nr*sizeof(int)); } static void translate_byte_to_ushort( const void *in, unsigned start, UNUSED unsigned in_nr, unsigned out_nr, UNUSED unsigned restart_index, void *out ) { uint8_t *src = (uint8_t *)in + start; uint16_t *dst = out; while (out_nr--) { *dst++ = *src++; } } enum pipe_prim_type u_index_prim_type_convert(unsigned hw_mask, enum pipe_prim_type prim, bool pv_matches) { if ((hw_mask & (1< 0xfffe) ? 4 : 2; out_idx = out_size_idx(*out_index_size); *out_prim = u_index_prim_type_convert(hw_mask, prim, in_pv == out_pv); *out_nr = u_index_count_converted_indices(hw_mask, in_pv == out_pv, prim, nr); if ((hw_mask & (1<