| /xsrc/external/mit/mesa-demos/dist/src/trivial/ |
| tri-point-line-clipped.c | 5 * The top vertex is clipped by a user clipping plane. 44 static const GLdouble plane[4] = { 0, -1.0, 0, 0.5 }; local 51 glClipPlane(GL_CLIP_PLANE0, plane);
|
| line-userclip-clip.c | 39 static GLdouble plane[4] = { -.5, 0, 1, 0 }; local 47 glClipPlane(GL_CLIP_PLANE0, plane);
|
| line-userclip-nop-clip.c | 39 static GLdouble plane[4] = { 0, 0, 1, 0 }; local 47 glClipPlane(GL_CLIP_PLANE0, plane);
|
| line-userclip-nop.c | 39 static GLdouble plane[4] = { 0, 0, 1, 0 }; local 47 glClipPlane(GL_CLIP_PLANE0, plane);
|
| line-userclip.c | 39 static GLdouble plane[4] = { -.5, 0, 1, 0 }; local 47 glClipPlane(GL_CLIP_PLANE0, plane);
|
| tri-unfilled-userclip-stip.c | 39 static GLdouble plane[4] = { -.5, 0, 1, 0 }; local 47 glClipPlane(GL_CLIP_PLANE0, plane);
|
| tri-unfilled-userclip.c | 39 static GLdouble plane[4] = { -.5, 0, 1, 0 }; local 47 glClipPlane(GL_CLIP_PLANE0, plane);
|
| tri-userclip.c | 39 static GLdouble plane[4] = { -.5, 0, 1, 0 }; local 47 glClipPlane(GL_CLIP_PLANE0, plane);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_lower_clip_disable.c | 34 * value if the plane is disabled 38 * then overwrite it if that plane isn't enabled 44 /* store the original value again if the clip plane is enabled */ 67 unsigned plane; local 99 plane = nir_src_as_uint(deref->arr.index); 100 /* no need to make changes if the clip plane is enabled */ 101 if (clip_plane_enable & (1 << plane))
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/include/frontend/ |
| winsys_handle.h | 33 * Input for texture_get_handle, allows to export of a specific plane of a 36 unsigned plane; member in struct:winsys_handle
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| st_nir_lower_tex_src_plane.c | 40 * case of 3-plane YUV format, the V plane is next sampler after U. 76 nir_const_value *plane = nir_src_as_const_value(tex->src[plane_index].src); local 77 assume(plane); 79 if (plane[0].i32 > 0) { 83 assume(((state->lower_3plane & (1 << y_samp)) && plane[0].i32 < 3) || 84 (plane[0].i32 < 2)); 87 state->sampler_map[y_samp][plane[0].i32 - 1];
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/ |
| panvk_image.c | 40 panvk_image_get_plane_size(const struct panvk_image *image, unsigned plane) 42 assert(!plane); 264 unsigned plane = panvk_plane_index(image->vk_format, pSubresource->aspectMask); local 265 assert(plane < PANVK_MAX_PLANES);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/virgl/ |
| virgl_resource.h | 49 uint32_t plane, plane_offset, total_size; member in struct:virgl_resource_metadata
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/va/ |
| postproc.c | 92 unsigned plane = buf->interlaced ? idx / 2: idx; local 100 vl_video_buffer_adjust_size(&x, &y, plane, 103 vl_video_buffer_adjust_size(&width, &height, plane,
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| st_nir_lower_tex_src_plane.c | 44 * case of 3-plane YUV format, the V plane is next sampler after U. 97 /* single additional UV plane: */ 119 nir_const_value *plane = nir_src_as_const_value(tex->src[plane_index].src); local 120 assume(plane); 122 if (plane[0].i32 > 0) { 130 assume(((state->lower_3plane & (1 << y_samp)) && plane[0].i32 < 3) || 131 (plane[0].i32 < 2)); 133 unsigned u_v_samp = state->sampler_map[y_samp][plane[0].i32 - 1];
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/ |
| t_vb_fog.c | 92 * near and far clip plane distances). 166 GLfloat plane[4]; local 172 plane[0] = m[2]; 173 plane[1] = m[6]; 174 plane[2] = m[10]; 175 plane[3] = m[14]; 182 VB->AttribPtr[_TNL_ATTRIB_POS], plane );
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/va/ |
| postproc.c | 92 unsigned plane = buf->interlaced ? idx / 2: idx; local 100 vl_video_buffer_adjust_size(&x, &y, plane, buf->chroma_format, 102 vl_video_buffer_adjust_size(&width, &height, plane, buf->chroma_format,
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/ |
| prog_statevars.c | 270 const GLuint plane = (GLuint) state[1]; local 271 COPY_4V(value, ctx->Transform.EyeUserPlane[plane]); 986 append_token(str, state[2]); /* plane coef */ 993 append_index(str, state[1]); /* plane [i] */ 994 append(str, ".plane");
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/ |
| t_vb_fog.c | 92 * near and far clip plane distances). 166 GLfloat plane[4]; local 172 plane[0] = m[2]; 173 plane[1] = m[6]; 174 plane[2] = m[10]; 175 plane[3] = m[14]; 182 VB->AttribPtr[_TNL_ATTRIB_POS], plane );
|
| /xsrc/external/mit/mesa-demos/dist/src/samples/ |
| fog.c | 34 double plane[4] = { variable
|
| /xsrc/external/mit/xorg-server/dist/miext/shadow/ |
| shplanar.c | 105 int plane; local 124 for (plane = 0; plane < 4; plane++) { 137 (plane), 154 GetBits(plane, 0, s1); 155 GetBits(plane, 1, s2); 156 GetBits(plane, 2, s3); 157 GetBits(plane, 3, s4);
|
| shplanar8.c | 109 int plane; local 126 for (plane = 0; plane < 4; plane++) { 139 (plane), 156 GetBits(plane, 0, s1); 157 GetBits(plane, 2, s2); 158 GetBits(plane, 4, s3); 159 GetBits(plane, 6, s4);
|
| /xsrc/external/mit/xorg-server.old/dist/miext/shadow/ |
| shplanar.c | 106 int plane; local 126 for (plane = 0; plane < 4; plane++) 140 (scr << 4) | (plane), 158 GetBits(plane,0,s1); 159 GetBits(plane,1,s2); 160 GetBits(plane,2,s3); 161 GetBits(plane,3,s4);
|
| shplanar8.c | 110 int plane; local 128 for (plane = 0; plane < 4; plane++) 142 (scr << 4) | (plane), 160 GetBits(plane,0,s1); 161 GetBits(plane,2,s2); 162 GetBits(plane,4,s3); 163 GetBits(plane,6,s4);
|
| /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/ |
| radv_nir_lower_ycbcr_textures.c | 117 create_plane_tex_instr_implicit(struct ycbcr_state *state, uint32_t plane) 127 if (plane && true /*state->conversion->chroma_reconstruction*/) { 140 tex->src[tex->num_srcs - 1].src = nir_src_for_ssa(nir_imm_int(b, plane)); 163 unsigned plane[4]; member in struct:swizzle_info 179 unreachable("unhandled plane count for ycbcr swizzling"); 203 values[i] = nir_channel(builder, plane_values[plane_swizzle.plane[channel]], 244 * instruction apply to the first plane.
|