Searched refs:transform (Results 1 - 25 of 1671) sorted by relevance

1234567891011>>

/xsrc/external/mit/xorg-server.old/dist/randr/
H A Drrtransform.c27 RRTransformInit (RRTransformPtr transform) argument
29 pixman_transform_init_identity (&transform->transform);
30 pixman_f_transform_init_identity (&transform->f_transform);
31 pixman_f_transform_init_identity (&transform->f_inverse);
32 transform->filter = NULL;
33 transform->params = NULL;
34 transform->nparams = 0;
38 RRTransformFini (RRTransformPtr transform) argument
40 free(transform
145 RRTransformCompute(int x,int y,int width,int height,Rotation rotation,RRTransformPtr rr_transform,PictTransformPtr transform,struct pixman_f_transform * f_transform,struct pixman_f_transform * f_inverse) argument
[all...]
H A Drrtransform.h32 PictTransform transform; member in struct:_rrTransform
43 RRTransformInit (RRTransformPtr transform);
46 RRTransformFini (RRTransformPtr transform);
64 * client-specified transform, rotation/reflection values and the crtc
67 * Return TRUE if the resulting transform is not a simple translation.
77 PictTransformPtr transform,
/xsrc/external/mit/xorg-server/dist/randr/
H A Drrtransform.c27 RRTransformInit(RRTransformPtr transform) argument
29 pixman_transform_init_identity(&transform->transform);
30 pixman_f_transform_init_identity(&transform->f_transform);
31 pixman_f_transform_init_identity(&transform->f_inverse);
32 transform->filter = NULL;
33 transform->params = NULL;
34 transform->nparams = 0;
38 RRTransformFini(RRTransformPtr transform) argument
40 free(transform
140 RRTransformCompute(int x,int y,int width,int height,Rotation rotation,RRTransformPtr rr_transform,PictTransformPtr transform,struct pixman_f_transform * f_transform,struct pixman_f_transform * f_inverse) argument
[all...]
H A Drrtransform.h32 PictTransform transform; member in struct:_rrTransform
43 RRTransformInit(RRTransformPtr transform);
46 RRTransformFini(RRTransformPtr transform);
62 * client-specified transform, rotation/reflection values and the crtc
65 * Return TRUE if the resulting transform is not a simple translation.
75 PictTransformPtr transform,
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/tgsi/
H A Dtgsi_vpos.c55 * TGSI transform prolog callback.
87 struct write_vpos_context transform; local in function:tgsi_write_vpos
93 memset(&transform, 0, sizeof(transform));
94 transform.base.prolog = write_vpos_prolog;
96 transform.imm_index = num_immediates;
103 /* transform the shader */
104 tgsi_transform_shader(tokens_in, new_tokens, new_len, &transform.base);
H A Dtgsi_aa_point.c59 * TGSI declaration transform callback.
83 * TGSI immediate declaration transform callback.
96 * TGSI transform prolog callback.
205 * TGSI instruction transform callback.
230 * TGSI transform epilog callback.
256 * TGSI utility to transform a fragment shader to support antialiasing point.
276 struct aa_transform_context transform; local in function:tgsi_add_aa_point
287 memset(&transform, 0, sizeof(transform));
288 transform
[all...]
H A Dtgsi_point_sprite.c110 * TGSI declaration transform callback.
152 * TGSI immediate declaration transform callback.
166 * TGSI transform prolog callback.
419 * TGSI instruction transform callback.
478 * TGSI property instruction transform callback.
499 * TGSI utility to transform a geometry shader to support point sprite.
508 struct psprite_transform_context transform; local in function:tgsi_add_point_sprite
514 memset(&transform, 0, sizeof(transform));
515 transform
[all...]
H A Dtgsi_two_side.c202 struct two_side_transform_context transform; local in function:tgsi_add_two_side
208 memset(&transform, 0, sizeof(transform));
209 transform.base.transform_declaration = xform_decl;
210 transform.base.transform_instruction = xform_inst;
211 transform.base.prolog = emit_prolog;
212 transform.face_input = INVALID_INDEX;
213 transform.front_color_input[0] = INVALID_INDEX;
214 transform.front_color_input[1] = INVALID_INDEX;
215 transform
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/virgl/
H A Dvirgl_tgsi.c25 so add a transform stage to remove things we don't want to send unless
107 struct virgl_transform_context transform; local in function:virgl_tgsi_transform
115 memset(&transform, 0, sizeof(transform));
116 transform.base.transform_declaration = virgl_tgsi_transform_declaration;
117 transform.base.transform_property = virgl_tgsi_transform_property;
118 transform.base.transform_instruction = virgl_tgsi_transform_instruction;
119 transform.cull_enabled = vscreen->caps.caps.v1.bset.has_cull;
120 transform.has_precise = vscreen->caps.caps.v2.capability_bits & VIRGL_CAP_TGSI_PRECISE;
121 transform
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/virgl/
H A Dvirgl_tgsi.c25 so add a transform stage to remove things we don't want to send unless
106 struct virgl_transform_context transform; local in function:virgl_tgsi_transform
114 memset(&transform, 0, sizeof(transform));
115 transform.base.transform_declaration = virgl_tgsi_transform_declaration;
116 transform.base.transform_property = virgl_tgsi_transform_property;
117 transform.base.transform_instruction = virgl_tgsi_transform_instruction;
118 transform.cull_enabled = vscreen->caps.caps.v1.bset.has_cull;
119 transform.has_precise = vscreen->caps.caps.v2.capability_bits & VIRGL_CAP_TGSI_PRECISE;
120 transform
[all...]
/xsrc/external/mit/pixman/dist/demos/
H A Dconical-test.c52 pixman_transform_t transform; local in function:main
64 pixman_transform_init_identity (&transform);
66 pixman_transform_translate (NULL, &transform,
70 pixman_transform_scale (NULL, &transform,
73 pixman_transform_translate (NULL, &transform,
85 pixman_image_set_transform (src_img, &transform);
H A Dradial-test.c140 pixman_transform_t transform; local in function:main
152 pixman_transform_init_identity (&transform);
161 pixman_transform_translate (NULL, &transform,
165 pixman_transform_scale (NULL, &transform,
173 * radial gradients tried to divide by 0 when using this transform
176 pixman_transform_translate (NULL, &transform,
183 pixman_image_set_transform (src_img, &transform);
/xsrc/external/mit/freetype/dist/src/base/
H A Dftsynth.c49 FT_Matrix transform; local in function:FT_GlyphSlot_Oblique
64 /* For italic, simply apply a shear transform, with an angle */
67 transform.xx = 0x10000L;
68 transform.yx = 0x00000L;
70 transform.xy = 0x0366AL;
71 transform.yy = 0x10000L;
73 FT_Outline_Transform( outline, &transform );
/xsrc/external/mit/xeyes/dist/
H A DMakefile.am32 transform.c \
33 transform.h \
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_pstipple.c192 * TGSI declaration transform callback.
248 * TGSI transform prolog
380 struct pstip_transform_context transform; local in function:util_pstipple_create_fragment_shader
391 memset(&transform, 0, sizeof(transform));
392 transform.wincoordInput = -1;
393 transform.wincoordFile = wincoordFile;
394 transform.maxInput = -1;
395 transform.coordOrigin = TGSI_FS_COORD_ORIGIN_UPPER_LEFT;
396 transform
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_pstipple.c192 * TGSI declaration transform callback.
248 * TGSI transform prolog
380 struct pstip_transform_context transform; local in function:util_pstipple_create_fragment_shader
391 memset(&transform, 0, sizeof(transform));
392 transform.wincoordInput = -1;
393 transform.wincoordFile = wincoordFile;
394 transform.maxInput = -1;
395 transform.coordOrigin = TGSI_FS_COORD_ORIGIN_UPPER_LEFT;
396 transform
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/
H A Dtgsi_aa_point.c59 * TGSI declaration transform callback.
83 * TGSI immediate declaration transform callback.
96 * TGSI transform prolog callback.
205 * TGSI instruction transform callback.
230 * TGSI transform epilog callback.
256 * TGSI utility to transform a fragment shader to support antialiasing point.
276 struct aa_transform_context transform; local in function:tgsi_add_aa_point
287 memset(&transform, 0, sizeof(transform));
288 transform
[all...]
H A Dtgsi_point_sprite.c110 * TGSI declaration transform callback.
152 * TGSI immediate declaration transform callback.
166 * TGSI transform prolog callback.
419 * TGSI instruction transform callback.
478 * TGSI property instruction transform callback.
499 * TGSI utility to transform a geometry shader to support point sprite.
508 struct psprite_transform_context transform; local in function:tgsi_add_point_sprite
514 memset(&transform, 0, sizeof(transform));
515 transform
[all...]
H A Dtgsi_two_side.c202 struct two_side_transform_context transform; local in function:tgsi_add_two_side
208 memset(&transform, 0, sizeof(transform));
209 transform.base.transform_declaration = xform_decl;
210 transform.base.transform_instruction = xform_inst;
211 transform.base.prolog = emit_prolog;
212 transform.face_input = INVALID_INDEX;
213 transform.front_color_input[0] = INVALID_INDEX;
214 transform.front_color_input[1] = INVALID_INDEX;
215 transform
[all...]
/xsrc/external/mit/xorg-server.old/dist/render/
H A Dmatrix.c77 PictureTransformPoint (PictTransformPtr transform, argument
80 return pixman_transform_point(transform, vector);
84 PictureTransformPoint3d (PictTransformPtr transform, argument
87 return pixman_transform_point_3d(transform, vector);
/xsrc/external/mit/xorg-server/dist/render/
H A Dmatrix.c77 PictureTransformPoint(PictTransformPtr transform, PictVectorPtr vector) argument
79 return pixman_transform_point(transform, vector);
83 PictureTransformPoint3d(PictTransformPtr transform, PictVectorPtr vector) argument
85 return pixman_transform_point_3d(transform, vector);
/xsrc/external/mit/brotli/dist/c/enc/
H A Dstatic_dict_lut.h21 uint8_t transform; member in struct:DictWord
/xsrc/external/mit/MesaLib.old/src/compiler/nir/
H A Dnir_opt_algebraic.c10 struct transform { struct
23302 static const struct transform nir_opt_algebraic_state3_xforms[] = {
23309 static const struct transform nir_opt_algebraic_state5_xforms[] = {
23312 static const struct transform nir_opt_algebraic_state6_xforms[] = {
23315 static const struct transform nir_opt_algebraic_state7_xforms[] = {
23319 static const struct transform nir_opt_algebraic_state8_xforms[] = {
23324 static const struct transform nir_opt_algebraic_state9_xforms[] = {
23328 static const struct transform nir_opt_algebraic_state10_xforms[] = {
23331 static const struct transform nir_opt_algebraic_state11_xforms[] = {
23334 static const struct transform nir_opt_algebraic_state12_xform
162588 struct transform { struct
164187 struct transform { struct
[all...]
/xsrc/external/mit/oclock/dist/
H A DMakefile.am34 transform.c \
35 transform.h
/xsrc/external/mit/pixman/dist/test/
H A Dinfinite-loop.c15 static const pixman_transform_t transform = { local in function:main
28 pixman_image_set_transform (src, &transform);

Completed in 54 milliseconds

1234567891011>>