Searched refs:LineWidth (Results 1 - 25 of 60) sorted by relevance

123

/xsrc/external/mit/mesa-demos/dist/src/tests/
H A Dlinehacks.c22 static GLfloat LineWidth = 1.0, MaxLineWidth = 3.0; variable in typeref:typename:GLfloat
109 glLineWidth(LineWidth);
144 if (Anti || LineWidth > 1.5) {
151 s = 2.0 * LineWidth / MaxLineWidth;
153 s = 1.5 * LineWidth / MaxLineWidth;
224 LineWidth -= 0.25;
225 if (LineWidth < 1.0)
226 LineWidth = 1.0;
229 LineWidth += 0.25;
230 if (LineWidth > MaxLineWidt
[all...]
H A Dtexline.c22 static GLfloat LineWidth = 1.0; variable in typeref:typename:GLfloat
148 LineWidth -= 0.25;
149 if (LineWidth < 0.25)
150 LineWidth = 0.25;
151 glLineWidth(LineWidth);
152 glPointSize(LineWidth);
155 LineWidth += 0.25;
156 if (LineWidth > 8.0)
157 LineWidth = 8.0;
158 glLineWidth(LineWidth);
[all...]
/xsrc/external/mit/mesa-demos/dist/src/glsl/
H A Dgeom-wide-lines.c23 static GLfloat LineWidth = 10.0; variable in typeref:typename:GLfloat
56 glUniform1f(uLineWidth, LineWidth);
60 glLineWidth(LineWidth);
133 LineWidth -= 0.5;
134 if (LineWidth < 1.0)
135 LineWidth = 1.0;
136 printf("Line width: %f\n", LineWidth);
139 LineWidth += 0.5;
140 if (LineWidth > MaxLineWidth)
141 LineWidth
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dlines.c55 * "Wide lines and line stipple - LineWidth is not deprecated, but
74 if (ctx->Driver.LineWidth)
75 ctx->Driver.LineWidth(ctx, width);
H A Ddd.h634 void (*LineWidth)(struct gl_context *ctx, GLfloat width); member in struct:dd_function_table
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dlines.c55 * "Wide lines and line stipple - LineWidth is not deprecated, but
74 if (ctx->Driver.LineWidth)
75 ctx->Driver.LineWidth(ctx, width);
/xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
H A Dgen8_cmd_buffer.c397 sf.LineWidth = d->line_width;
400 sf.LineWidth = d->line_width,
H A Dgen7_cmd_buffer.c191 .LineWidth = d->line_width,
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/common/
H A Ddriverfuncs.c146 driver->LineWidth = NULL;
283 ctx->Driver.LineWidth(ctx, ctx->Line.Width);
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/common/
H A Ddriverfuncs.c148 driver->LineWidth = NULL;
285 ctx->Driver.LineWidth(ctx, ctx->Line.Width);
/xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
H A Dgfx8_cmd_buffer.c447 sf.LineWidth = d->line_width;
450 sf.LineWidth = d->line_width,
H A Dgfx7_cmd_buffer.c249 .LineWidth = d->line_width,
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
H A Dnouveau_state.c528 ctx->Driver.LineWidth = nouveau_line_width;
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
H A Dnouveau_state.c529 ctx->Driver.LineWidth = nouveau_line_width;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/wgl/
H A Dstw_icd.h218 void (GLAPIENTRY * LineWidth)(GLfloat);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
H A Di830_state.c1127 functions->LineWidth = i830LineWidth;
H A Di915_state.c1069 functions->LineWidth = i915LineWidth;
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
H A Di830_state.c1127 functions->LineWidth = i830LineWidth;
H A Di915_state.c1069 functions->LineWidth = i915LineWidth;
/xsrc/external/mit/MesaLib.old/src/intel/genxml/
H A Dgen45_pack.h960 float LineWidth; member in struct:GEN45_SF_STATE
1043 __gen_ufixed(values->LineWidth, 24, 27, 1) |
H A Dgen4_pack.h941 float LineWidth; member in struct:GEN4_SF_STATE
1020 __gen_ufixed(values->LineWidth, 24, 27, 1) |
H A Dgen5_pack.h1022 float LineWidth; member in struct:GEN5_SF_STATE
1104 __gen_ufixed(values->LineWidth, 24, 27, 1) |
/xsrc/external/mit/MesaLib/src/intel/genxml/
H A Dgen45_pack.h976 float LineWidth; member in struct:GFX45_SF_STATE
1059 __gen_ufixed(values->LineWidth, 24, 27, 1) |
H A Dgen4_pack.h957 float LineWidth; member in struct:GFX4_SF_STATE
1036 __gen_ufixed(values->LineWidth, 24, 27, 1) |
/xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/tests/
H A Dcheck_table.cpp732 { "glLineWidth", _O(LineWidth) },

Completed in 73 milliseconds

123