i965: Turn brw_get_line_width_float() into brw_get_line_width().

Drop the old brw_get_line_width() helper which return the unsigned
fixed-point encoding of the line width - it's been dead since the
conversion to GENXML (which does the encoding for us).

Then rename brw_get_line_width_float() to the shorter name.

Reviewed-by: Rafael Antognolli <rafael.antognolli@intel.com>
This commit is contained in:
Kenneth Graunke 2017-05-08 22:39:25 -07:00
parent 620f12a53f
commit 774db15aaf
2 changed files with 4 additions and 12 deletions

View File

@ -41,7 +41,7 @@ extern GLuint brw_translate_blend_equation( GLenum mode );
extern GLenum brw_fix_xRGB_alpha(GLenum function);
static inline float
brw_get_line_width_float(struct brw_context *brw)
brw_get_line_width(struct brw_context *brw)
{
/* From the OpenGL 4.4 spec:
*
@ -72,12 +72,4 @@ brw_get_line_width_float(struct brw_context *brw)
return line_width;
}
static inline uint32_t
brw_get_line_width(struct brw_context *brw)
{
float line_width = brw_get_line_width_float(brw);
return U_FIXED(line_width, 7);
}
#endif

View File

@ -1405,11 +1405,11 @@ genX(upload_sf)(struct brw_context *brw)
/* _NEW_LINE */
#if GEN_GEN == 8
if (brw->is_cherryview)
sf.CHVLineWidth = brw_get_line_width_float(brw);
sf.CHVLineWidth = brw_get_line_width(brw);
else
sf.LineWidth = brw_get_line_width_float(brw);
sf.LineWidth = brw_get_line_width(brw);
#else
sf.LineWidth = brw_get_line_width_float(brw);
sf.LineWidth = brw_get_line_width(brw);
#endif
if (ctx->Line.SmoothFlag) {