Searched defs:plane (Results 1 - 20 of 20) sorted by relevance

/vbox/src/VBox/HostServices/SharedOpenGL/unpacker/
H A Dunpack_clipplane.c13 GLenum plane = READ_DATA( 0, GLenum ); local
17 cr_unpackDispatch.ClipPlane( plane, equation );
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_clipplane.c10 void PACK_APIENTRY crPackClipPlane( GLenum plane, const GLdouble *equation ) argument
14 int packet_length = sizeof( plane ) + 4*sizeof(*equation);
16 WRITE_DATA( 0, GLenum, plane );
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_transform.c217 void STATE_APIENTRY crStateClipPlane (GLenum plane, const GLdouble *equation) argument
241 i = plane - GL_CLIP_PLANE0;
245 "ClipPlane called with bad enumerant: %d", plane);
870 void STATE_APIENTRY crStateGetClipPlane(GLenum plane, GLdouble *equation) argument
883 i = plane - GL_CLIP_PLANE0;
887 "GetClipPlane called with bad enumerant: %d", plane);
H A Dstate_feedback.c133 const GLvectord *plane = g->transform.clipPlane + i; local
134 if (plane->x * v->eyePos.x +
135 plane->y * v->eyePos.y +
136 plane->z * v->eyePos.z +
137 plane->w * v->eyePos.w < 0.0)
192 * For each plane, we define the OUTSIDE and COMPUTE_INTERSECTION
/vbox/src/VBox/Additions/common/crOpenGL/
H A Ddri_drv.c315 vboxDDClipPlane(GLcontext *ctx, GLenum plane, const GLfloat *equation) argument
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-win.cpp214 float plane[4]; member in struct:__anon13197
5160 int vmsvga3dSetClipPlane(PVGASTATE pThis, uint32_t cid, uint32_t index, float plane[4])
5167 Log(("vmsvga3dSetClipPlane %x %d (%d,%d)(%d,%d)\n", cid, index, (unsigned)(plane[0] * 100.0), (unsigned)(plane[1] * 100.0), (unsigned)(plane[2] * 100.0), (unsigned)(plane[3] * 100.0)));
5180 memcpy(pContext->state.aClipPlane[index].plane, plane, sizeof(plane));
5182 hr = pContext->pDevice->SetClipPlane(index, plane);
[all...]
H A DDevVGA-SVGA3d-ogl.cpp601 float plane[4]; member in struct:__anon13178
4780 vmsvga3dSetClipPlane(pThis, cid, j, pContext->state.aClipPlane[j].plane);
6664 int vmsvga3dSetClipPlane(PVGASTATE pThis, uint32_t cid, uint32_t index, float plane[4])
6671 Log(("vmsvga3dSetClipPlane cid=%x %d (%d,%d)(%d,%d)\n", cid, index, (unsigned)(plane[0] * 100.0), (unsigned)(plane[1] * 100.0), (unsigned)(plane[2] * 100.0), (unsigned)(plane[3] * 100.0)));
6685 memcpy(pContext->state.aClipPlane[index].plane, plane, sizeof(pContext->state.aClipPlane[index].plane));
[all...]
H A DDevVGA.cpp740 || pThis->sr_index == 2 /* plane mask */)
1185 int memory_map_mode, plane; local
1237 plane = (pThis->gr[4] & 2) | (addr & 1);
1239 RTGCPHYS off = ((addr & ~1) << 2) | plane;
1249 plane = pThis->gr[4];
1250 ret = GET_PLANE(pThis->latch, plane);
1266 int memory_map_mode, plane, write_mode, b, func_select, mask; local
1300 plane = addr & 3;
1301 mask = (1 << plane);
1323 plane
3171 unsigned plane = (pThis->gr[4] & 2) | (GCPhysAddr & 1); local
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/
H A Ddevice.c1427 static HRESULT WINAPI d3d8_device_SetClipPlane(IDirect3DDevice8 *iface, DWORD index, const float *plane) argument
1432 TRACE("iface %p, index %u, plane %p.\n", iface, index, plane);
1435 hr = wined3d_device_set_clip_plane(device->wined3d_device, index, (const struct wined3d_vec4 *)plane);
1441 static HRESULT WINAPI d3d8_device_GetClipPlane(IDirect3DDevice8 *iface, DWORD index, float *plane) argument
1446 TRACE("iface %p, index %u, plane %p.\n", iface, index, plane);
1449 hr = wined3d_device_get_clip_plane(device->wined3d_device, index, (struct wined3d_vec4 *)plane);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/
H A Ddevice.c1767 static HRESULT WINAPI d3d9_device_SetClipPlane(IDirect3DDevice9Ex *iface, DWORD index, const float *plane) argument
1772 TRACE("iface %p, index %u, plane %p.\n", iface, index, plane);
1775 hr = wined3d_device_set_clip_plane(device->wined3d_device, index, (const struct wined3d_vec4 *)plane);
1781 static HRESULT WINAPI d3d9_device_GetClipPlane(IDirect3DDevice9Ex *iface, DWORD index, float *plane) argument
1786 TRACE("iface %p, index %u, plane %p.\n", iface, index, plane);
1789 hr = wined3d_device_get_clip_plane(device->wined3d_device, index, (struct wined3d_vec4 *)plane);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Ddevice.c2090 UINT plane_idx, const struct wined3d_vec4 *plane)
2092 TRACE("device %p, plane_idx %u, plane %p.\n", device, plane_idx, plane);
2103 if (!memcmp(&device->updateStateBlock->state.clip_planes[plane_idx], plane, sizeof(*plane)))
2109 device->updateStateBlock->state.clip_planes[plane_idx] = *plane;
2124 UINT plane_idx, struct wined3d_vec4 *plane)
2126 TRACE("device %p, plane_idx %u, plane %p.\n", device, plane_idx, plane);
2135 *plane
2089 wined3d_device_set_clip_plane(struct wined3d_device *device, UINT plane_idx, const struct wined3d_vec4 *plane) argument
2123 wined3d_device_get_clip_plane(const struct wined3d_device *device, UINT plane_idx, struct wined3d_vec4 *plane) argument
[all...]
H A Dstate.c655 checkGLcall("clip plane enable");
663 checkGLcall("clip plane disable");
3490 checkGLcall("WINED3DTSS_TCI_CAMERASPACEPOSITION - Set eye plane.");
3521 checkGLcall("WINED3DTSS_TCI_CAMERASPACENORMAL - Set eye plane.");
3552 checkGLcall("WINED3DTSS_TCI_CAMERASPACEREFLECTIONVECTOR - Set eye plane.");
3814 GLdouble plane[4]; local
3830 plane[0] = state->clip_planes[index].x;
3831 plane[1] = state->clip_planes[index].y;
3832 plane[2] = state->clip_planes[index].z;
3833 plane[
[all...]
/vbox/src/VBox/Devices/Graphics/vmsvga/
H A Dsvga3d_reg.h1637 float plane[4]; member in struct:__anon14746
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dglapitemp.h833 KEYWORD1 void KEYWORD2 NAME(ClipPlane)(GLenum plane, const GLdouble * equation) argument
835 DISPATCH(ClipPlane, (plane, equation), (F, "glClipPlane(0x%x, %p);\n", plane, (const void *) equation));
1378 KEYWORD1 void KEYWORD2 NAME(GetClipPlane)(GLenum plane, GLdouble * equation) argument
1380 DISPATCH(GetClipPlane, (plane, equation), (F, "glGetClipPlane(0x%x, %p);\n", plane, (const void *) equation));
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dglapitemp.h833 KEYWORD1 void KEYWORD2 NAME(ClipPlane)(GLenum plane, const GLdouble * equation) argument
835 DISPATCH(ClipPlane, (plane, equation), (F, "glClipPlane(0x%x, %p);\n", plane, (const void *) equation));
1378 KEYWORD1 void KEYWORD2 NAME(GetClipPlane)(GLenum plane, GLdouble * equation) argument
1380 DISPATCH(GetClipPlane, (plane, equation), (F, "glGetClipPlane(0x%x, %p);\n", plane, (const void *) equation));
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dglapitemp.h833 KEYWORD1 void KEYWORD2 NAME(ClipPlane)(GLenum plane, const GLdouble * equation) argument
835 DISPATCH(ClipPlane, (plane, equation), (F, "glClipPlane(0x%x, %p);\n", plane, (const void *) equation));
1378 KEYWORD1 void KEYWORD2 NAME(GetClipPlane)(GLenum plane, GLdouble * equation) argument
1380 DISPATCH(GetClipPlane, (plane, equation), (F, "glGetClipPlane(0x%x, %p);\n", plane, (const void *) equation));
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dglapitemp.h833 KEYWORD1 void KEYWORD2 NAME(ClipPlane)(GLenum plane, const GLdouble * equation) argument
835 DISPATCH(ClipPlane, (plane, equation), (F, "glClipPlane(0x%x, %p);\n", plane, (const void *) equation));
1378 KEYWORD1 void KEYWORD2 NAME(GetClipPlane)(GLenum plane, GLdouble * equation) argument
1380 DISPATCH(GetClipPlane, (plane, equation), (F, "glGetClipPlane(0x%x, %p);\n", plane, (const void *) equation));
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dglapitemp.h833 KEYWORD1 void KEYWORD2 NAME(ClipPlane)(GLenum plane, const GLdouble * equation) argument
835 DISPATCH(ClipPlane, (plane, equation), (F, "glClipPlane(0x%x, %p);\n", plane, (const void *) equation));
1378 KEYWORD1 void KEYWORD2 NAME(GetClipPlane)(GLenum plane, GLdouble * equation) argument
1380 DISPATCH(GetClipPlane, (plane, equation), (F, "glGetClipPlane(0x%x, %p);\n", plane, (const void *) equation));
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dglapitemp.h833 KEYWORD1 void KEYWORD2 NAME(ClipPlane)(GLenum plane, const GLdouble * equation) argument
835 DISPATCH(ClipPlane, (plane, equation), (F, "glClipPlane(0x%x, %p);\n", plane, (const void *) equation));
1378 KEYWORD1 void KEYWORD2 NAME(GetClipPlane)(GLenum plane, GLdouble * equation) argument
1380 DISPATCH(GetClipPlane, (plane, equation), (F, "glGetClipPlane(0x%x, %p);\n", plane, (const void *) equation));
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/glapi/
H A Dglapitemp.h833 KEYWORD1 void KEYWORD2 NAME(ClipPlane)(GLenum plane, const GLdouble * equation) argument
835 DISPATCH(ClipPlane, (plane, equation), (F, "glClipPlane(0x%x, %p);\n", plane, (const void *) equation));
1378 KEYWORD1 void KEYWORD2 NAME(GetClipPlane)(GLenum plane, GLdouble * equation) argument
1380 DISPATCH(GetClipPlane, (plane, equation), (F, "glGetClipPlane(0x%x, %p);\n", plane, (const void *) equation));

Completed in 329 milliseconds