Searched defs:index_count (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Ddrawprim.c619 void draw_primitive(struct wined3d_device *device, UINT start_idx, UINT index_count, argument
633 if (!index_count) return;
692 device->czvDrawVertices = index_count;
799 drawStridedSlowVs(gl_info, state, stream_info, index_count,
804 drawStridedSlow(device, context, stream_info, index_count,
811 drawStridedInstanced(gl_info, state, stream_info, index_count, state->gl_primitive_type,
816 drawStridedFast(gl_info, state->gl_primitive_type, index_count, idx_size, idx_data,
H A Ddevice.c4104 HRESULT CDECL wined3d_device_draw_indexed_primitive(struct wined3d_device *device, UINT start_idx, UINT index_count) argument
4108 TRACE("device %p, start_idx %u, index_count %u.\n", device, start_idx, index_count);
4133 draw_primitive(device, start_idx, index_count, 0, 0, TRUE);
4139 UINT start_idx, UINT index_count, UINT start_instance, UINT instance_count)
4141 TRACE("device %p, start_idx %u, index_count %u.\n", device, start_idx, index_count);
4143 draw_primitive(device, start_idx, index_count, start_instance, instance_count, TRUE);
4138 wined3d_device_draw_indexed_primitive_instanced(struct wined3d_device *device, UINT start_idx, UINT index_count, UINT start_instance, UINT instance_count) argument
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Ddrawprim.c586 void drawPrimitive(IWineD3DDevice *iface, UINT index_count, UINT StartIdx, UINT idxSize, const void *idxData) argument
594 if (!index_count) return;
694 drawStridedSlowVs(iface, stream_info, index_count, glPrimType, idxData, idxSize, StartIdx);
696 drawStridedSlow(iface, context, stream_info, index_count,
701 drawStridedInstanced(iface, &This->strided_streams, index_count,
704 drawStridedFast(iface, glPrimType, index_count, idxSize, idxData, StartIdx);
H A Ddevice.c4759 static HRESULT WINAPI IWineD3DDeviceImpl_DrawIndexedPrimitive(IWineD3DDevice *iface, UINT startIndex, UINT index_count) argument
4787 TRACE("(%p) : startIndex %u, index count %u.\n", This, startIndex, index_count);
4800 drawPrimitive(iface, index_count, startIndex, idxStride,
4845 UINT index_count, const void *pIndexData, WINED3DFORMAT IndexDataFormat,
4854 This, index_count, pIndexData, IndexDataFormat, pVertexStreamZeroData, VertexStreamZeroStride);
4882 drawPrimitive(iface, index_count, 0 /* start_idx */, idxStride, pIndexData);
4844 IWineD3DDeviceImpl_DrawIndexedPrimitiveUP(IWineD3DDevice *iface, UINT index_count, const void *pIndexData, WINED3DFORMAT IndexDataFormat, const void *pVertexStreamZeroData, UINT VertexStreamZeroStride) argument

Completed in 93 milliseconds