Searched refs:index_count (Results 1 - 16 of 16) 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
H A Dwined3d_private.h981 void draw_primitive(struct wined3d_device *device, UINT start_idx, UINT index_count,
/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
H A Dwined3d_private.h977 void drawPrimitive(IWineD3DDevice *iface, UINT index_count,
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/
H A Dwined3d.h7363 UINT index_count) = 0;
7371 UINT index_count,
7382 UINT index_count,
8146 UINT index_count);
8156 UINT index_count,
8169 UINT index_count,
8413 #define IWineD3DDevice_DrawIndexedPrimitive(This,start_idx,index_count) (This)->lpVtbl->DrawIndexedPrimitive(This,start_idx,index_count)
8415 #define IWineD3DDevice_DrawIndexedPrimitiveUP(This,index_count,index_data,index_data_format,stream_data,stream_stride) (This)->lpVtbl->DrawIndexedPrimitiveUP(This,index_count,index_dat
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dwined3d.h7364 UINT index_count) = 0;
7372 UINT index_count,
7383 UINT index_count,
8147 UINT index_count);
8157 UINT index_count,
8170 UINT index_count,
8414 #define IWineD3DDevice_DrawIndexedPrimitive(This,start_idx,index_count) (This)->lpVtbl->DrawIndexedPrimitive(This,start_idx,index_count)
8416 #define IWineD3DDevice_DrawIndexedPrimitiveUP(This,index_count,index_data,index_data_format,stream_data,stream_stride) (This)->lpVtbl->DrawIndexedPrimitiveUP(This,index_count,index_dat
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/
H A Dwined3d.h7363 UINT index_count) = 0;
7371 UINT index_count,
7382 UINT index_count,
8146 UINT index_count);
8156 UINT index_count,
8169 UINT index_count,
8413 #define IWineD3DDevice_DrawIndexedPrimitive(This,start_idx,index_count) (This)->lpVtbl->DrawIndexedPrimitive(This,start_idx,index_count)
8415 #define IWineD3DDevice_DrawIndexedPrimitiveUP(This,index_count,index_data,index_data_format,stream_data,stream_stride) (This)->lpVtbl->DrawIndexedPrimitiveUP(This,index_count,index_dat
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dwined3d.h7334 UINT index_count) = 0;
7342 UINT index_count,
7353 UINT index_count,
8095 UINT index_count);
8105 UINT index_count,
8118 UINT index_count,
8336 #define IWineD3DDevice_DrawIndexedPrimitive(This,start_idx,index_count) (This)->lpVtbl->DrawIndexedPrimitive(This,start_idx,index_count)
8338 #define IWineD3DDevice_DrawIndexedPrimitiveUP(This,index_count,index_data,index_data_format,stream_data,stream_stride) (This)->lpVtbl->DrawIndexedPrimitiveUP(This,index_count,index_dat
[all...]
H A Dwined3d.idl3365 [in] UINT index_count
3373 [in] UINT index_count,
3384 [in] UINT index_count,
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/vbox/libWineStub/include/wine/
H A Dwined3d.h7363 UINT index_count) = 0;
7371 UINT index_count,
7382 UINT index_count,
8146 UINT index_count);
8156 UINT index_count,
8169 UINT index_count,
8413 #define IWineD3DDevice_DrawIndexedPrimitive(This,start_idx,index_count) (This)->lpVtbl->DrawIndexedPrimitive(This,start_idx,index_count)
8415 #define IWineD3DDevice_DrawIndexedPrimitiveUP(This,index_count,index_data,index_data_format,stream_data,stream_stride) (This)->lpVtbl->DrawIndexedPrimitiveUP(This,index_count,index_dat
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dd3d.h1070 void *vertices, DWORD vertex_count, WORD *indices, DWORD index_count, DWORD flags) PURE;
1192 void *vertices, DWORD vertex_count, WORD *indices, DWORD index_count, DWORD flags) PURE;
1198 D3DDRAWPRIMITIVESTRIDEDDATA *strided_data, DWORD vertex_count, WORD *indices, DWORD index_count,
1203 WORD *indices, DWORD index_count, DWORD flags) PURE;
1342 void *vertices, DWORD vertex_count, WORD *indices, DWORD index_count, DWORD flags) PURE;
1348 D3DDRAWPRIMITIVESTRIDEDDATA *strided_data, DWORD vertex_count, WORD *indices, DWORD index_count,
1353 DWORD start_vertex, DWORD vertex_count, WORD *indices, DWORD index_count, DWORD flags) PURE;
H A Dd3dx9mesh.h811 DWORD ib_flags, struct IDirect3DIndexBuffer9 **index_buffer, DWORD *index_count);
813 DWORD ib_flags, struct IDirect3DIndexBuffer9 **index_buffer, DWORD *index_count,
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/
H A Dwined3d.h2103 HRESULT __cdecl wined3d_device_draw_indexed_primitive(struct wined3d_device *device, UINT start_idx, UINT index_count);
2105 UINT start_idx, UINT index_count, UINT start_instance, UINT instance_count);
/vbox/src/VBox/Devices/Graphics/shaderlib/
H A Dwined3d_private.h998 void drawPrimitive(IWineD3DDevice *iface, UINT index_count,

Completed in 5600 milliseconds