Home
last modified time | relevance | path

Searched refs:radius2 (Results 1 – 3 of 3) sorted by relevance

/reactos/sdk/include/dxsdk/
H A Dd3dx9shape.h30 HRESULT WINAPI D3DXCreateCylinder(struct IDirect3DDevice9 *device, float radius1, float radius2,
/reactos/modules/rostests/winetests/d3dx9_36/
H A Dmesh.c3104 static BOOL compute_cylinder(struct mesh *mesh, FLOAT radius1, FLOAT radius2, FLOAT length, UINT sl… in compute_cylinder() argument
3135 delta_radius = radius1 - radius2; in compute_cylinder()
3250 static void test_cylinder(IDirect3DDevice9 *device, FLOAT radius1, FLOAT radius2, FLOAT length, UIN… in test_cylinder() argument
3257 hr = D3DXCreateCylinder(device, radius1, radius2, length, slices, stacks, &cylinder, NULL); in test_cylinder()
3265 if (!compute_cylinder(&mesh, radius1, radius2, length, slices, stacks)) in test_cylinder()
3274 sprintf(name, "cylinder (%g, %g, %g, %u, %u)", radius1, radius2, length, slices, stacks); in test_cylinder()
/reactos/dll/directx/wine/d3dx9_36/
H A Dmesh.c4975 HRESULT WINAPI D3DXCreateCylinder(struct IDirect3DDevice9 *device, float radius1, float radius2, in D3DXCreateCylinder() argument
4989 …TRACE("(%p, %f, %f, %f, %u, %u, %p, %p)\n", device, radius1, radius2, length, slices, stacks, mesh… in D3DXCreateCylinder()
4991 …if (device == NULL || radius1 < 0.0f || radius2 < 0.0f || length < 0.0f || slices < 2 || stacks < … in D3DXCreateCylinder()
5034 delta_radius = radius1 - radius2; in D3DXCreateCylinder()