HomeSort by: relevance | last modified time | path
    Searched refs:component (Results 1 - 25 of 319) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/
glutColor.cpp 25 GLfloat glutGetColor(int cell, int component) {
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/
tgsi_util.h 46 unsigned component);
52 unsigned component );
57 unsigned component);
68 unsigned component);
  /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
glut_cindex.c 59 if (cmap->cells[i].component[GLUT_RED] >= 0.0) {
61 newcmap->cells[i].component[GLUT_RED] =
62 cmap->cells[i].component[GLUT_RED];
64 cmap->cells[i].component[GLUT_RED];
65 newcmap->cells[i].component[GLUT_GREEN] =
66 cmap->cells[i].component[GLUT_GREEN];
68 cmap->cells[i].component[GLUT_GREEN];
69 newcmap->cells[i].component[GLUT_BLUE] =
70 cmap->cells[i].component[GLUT_BLUE];
72 cmap->cells[i].component[GLUT_BLUE]
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/
sfn_emitinstruction.cpp 48 PValue EmitInstruction::from_nir(const nir_src& v, unsigned component, unsigned swizzled)
50 return m_proc.from_nir(v, component, swizzled);
53 PValue EmitInstruction::from_nir(const nir_alu_src& v, unsigned component)
55 return m_proc.from_nir(v, component);
58 PValue EmitInstruction::from_nir(const nir_tex_src& v, unsigned component)
60 return m_proc.from_nir(v, component);
63 PValue EmitInstruction::from_nir(const nir_alu_dest& v, unsigned component)
65 return m_proc.from_nir(v, component);
68 PValue EmitInstruction::from_nir(const nir_dest& v, unsigned component)
70 return m_proc.from_nir(v, component);
    [all...]
sfn_emitinstruction.h 55 PValue from_nir(const nir_src& v, unsigned component, unsigned swizzled);
56 PValue from_nir(const nir_src& v, unsigned component);
57 PValue from_nir(const nir_alu_src& v, unsigned component);
58 PValue from_nir(const nir_tex_src& v, unsigned component);
59 PValue from_nir(const nir_alu_dest& v, unsigned component);
60 PValue from_nir(const nir_dest& v, unsigned component);
74 PValue from_nir_with_fetch_constant(const nir_src& src, unsigned component, int channel = -1);
sfn_valuepool.h 95 PValue from_nir(const nir_src& v, unsigned component, unsigned swizzled);
97 PValue from_nir(const nir_src& v, unsigned component);
103 PValue from_nir(const nir_alu_src& v, unsigned component);
108 PValue from_nir(const nir_tex_src& v, unsigned component);
113 PValue from_nir(const nir_alu_dest& v, unsigned component);
118 PValue from_nir(const nir_dest& v, unsigned component);
201 /** Allocate a register index with the given component mask.
211 * \param swizzle register component, can also be 4,5, and 7
sfn_valuepool.cpp 78 PValue ValuePool::from_nir(const nir_src& v, unsigned component, unsigned swizzled)
94 component);
121 return PValue(new LiteralValue(literal_val[swizzled].b ? 0xffffffff : 0, component));
127 return PValue(new LiteralValue(literal_val[swizzled].u32, component));
134 PValue ValuePool::from_nir(const nir_src& v, unsigned component)
136 return from_nir(v, component, component);
139 PValue ValuePool::from_nir(const nir_tex_src &v, unsigned component)
141 return from_nir(v.src, component, component);
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/tgsi/
tgsi_util.h 47 unsigned component);
53 unsigned component );
58 unsigned component);
tgsi_util.c 55 unsigned component)
57 switch (component) {
76 unsigned component)
78 return tgsi_util_get_src_register_swizzle(&reg->Register, component);
85 unsigned component)
87 switch (component) {
449 * Given a TGSI_TEXTURE_x target, return register component where the
451 * 0 and 1 are the (s,t) texcoords and component 2 or 3 hold the shadow
453 * found in the 0th component of the second coordinate argument to the
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
texcompress_bptc_tmp.h 54 uint8_t component; member in struct:bptc_float_bitfield
359 int component; local
365 /* Extract each color component */
366 for (component = 0; component < 3; component++) {
369 endpoints[subset * 2 + endpoint][component] =
402 for (component = 0; component < n_components; component++)
553 int component; local
675 int component; local
883 int endpoint, component; local
978 int component; local
1060 int component; local
1418 int component, endpoint; local
1525 int endpoint, component; local
1687 int component, endpoint; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
texcompress_bptc_tmp.h 54 uint8_t component; member in struct:bptc_float_bitfield
359 int component; local
365 /* Extract each color component */
366 for (component = 0; component < 3; component++) {
369 endpoints[subset * 2 + endpoint][component] =
402 for (component = 0; component < n_components; component++)
553 int component; local
676 int component; local
888 int endpoint, component; local
983 int component; local
1065 int component; local
1421 int component, endpoint; local
1528 int endpoint, component; local
1690 int component, endpoint; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_nir_tcs_workarounds.c 76 load_output(nir_builder *b, int num_components, int offset, int component)
80 .component = component);
101 .component = 2,
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_inline_uniforms.c 50 src_only_uses_uniforms(const nir_src *src, int component,
56 assert(component < src->ssa->num_components);
64 /* Vector ops only need to check the corresponding component. */
66 nir_alu_src *alu_src = alu->src + component;
77 /* For ops which has no input size, each component of dest is
78 * only determined by the same component of srcs.
80 if (!src_only_uses_uniforms(&alu_src->src, alu_src->swizzle[component],
109 uint32_t offset = nir_src_as_uint(intr->src[1]) + component * 4;
139 is_induction_variable(const nir_src *src, int component, nir_loop_info *info,
145 assert(component < src->ssa->num_components)
190 unsigned component = 0; local
    [all...]
nir_lower_ubo_vec4.c 123 * offset's component.
127 /* If we're loading a single component, that component alone won't
130 nir_ssa_def *component = local
135 result = nir_vector_extract(b, result, component);
165 nir_ssa_def *component = local
177 component);
nir_lower_passthrough_edgeflags.c 57 .component = 0,
68 .component = 0,
  /xsrc/external/mit/MesaLib/dist/src/freedreno/vulkan/
vk_format.h 122 unsigned component)
136 colorspace, component);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/vl/
vl_vertex_buffers.h 124 struct pipe_vertex_buffer vl_vb_get_ycbcr(struct vl_vertex_buffer *buffer, int component);
126 struct vl_ycbcr_block *vl_vb_get_ycbcr_stream(struct vl_vertex_buffer *buffer, int component);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/vl/
vl_vertex_buffers.h 124 struct pipe_vertex_buffer vl_vb_get_ycbcr(struct vl_vertex_buffer *buffer, int component);
126 struct vl_ycbcr_block *vl_vb_get_ycbcr_stream(struct vl_vertex_buffer *buffer, int component);
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
vk_format.h 82 radv_swizzle_conv(VkComponentSwizzle component, const unsigned char chan[4],
86 vk_swiz = component;
196 unsigned component)
206 assert(component < 4);
222 switch (desc->swizzle[component]) {
  /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/
EXT_shader_integer_mix.spec 62 genIType mix(genIType x, Selects which vector each returned component comes
63 genIType y, from. For a component of a that is false, the
64 genBType a) corresponding component of x is returned. For a
65 genUType mix(genUType x, component of a that is true, the corresponding
66 genUType y, component of y is returned.
114 third component?
  /xsrc/external/mit/MesaLib/dist/src/amd/llvm/
ac_shader_abi.h 76 unsigned driver_location, unsigned component,
82 unsigned driver_location, unsigned component,
89 unsigned component, unsigned location, unsigned driver_location);
  /xsrc/external/mit/MesaLib.old/dist/docs/specs/
EXT_shader_integer_mix.spec 62 genIType mix(genIType x, Selects which vector each returned component comes
63 genIType y, from. For a component of a that is false, the
64 genBType a) corresponding component of x is returned. For a
65 genUType mix(genUType x, component of a that is true, the corresponding
66 genUType y, component of y is returned.
114 third component?
  /xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
helpers.h 299 /* Duplicate bits to convert a per-component to duplicated 8-bit format,
363 midgard_ldst_comp(unsigned reg, unsigned component, unsigned size)
370 assert(component < 2);
371 component <<= 1;
373 assert((component & 1) == 0);
374 component >>= 1;
377 return component;
  /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/OLD/
MESA_packed_depth_stencil.spec 86 DEPTH_COMPONENT Depth Depth component
87 RED Color R component
88 GREEN Color G component
89 BLUE Color B component
90 ALPHA Color A component
97 LUMINANCE Color Luminance component
99 DEPTH_STENCIL Depth, Depth component, stencil index.
  /xsrc/external/mit/MesaLib.old/dist/docs/specs/OLD/
MESA_packed_depth_stencil.spec 86 DEPTH_COMPONENT Depth Depth component
87 RED Color R component
88 GREEN Color G component
89 BLUE Color B component
90 ALPHA Color A component
97 LUMINANCE Color Luminance component
99 DEPTH_STENCIL Depth, Depth component, stencil index.

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>