Added GL_ARB_point_parameters support for i830.

This commit is contained in:
Ian Romanick 2004-09-19 07:15:38 +00:00
parent be3359bad5
commit b9bbe78031
3 changed files with 5 additions and 1 deletions

View file

@ -87,6 +87,10 @@ static void i830_render_start( intelContextPtr intel )
intel->coloroffset = 3;
}
if (index & _TNL_BIT_POINTSIZE) {
EMIT_ATTR( _TNL_ATTRIB_POINTSIZE, EMIT_1F, VFT0_POINT_WIDTH );
}
EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4UB_4F_BGRA, VFT0_DIFFUSE );
intel->specoffset = 0;

View file

@ -48,7 +48,6 @@
static const char * const card_extensions[] =
{
"GL_ARB_fragment_program",
"GL_ARB_point_parameters",
"GL_ARB_texture_cube_map",
NULL
};

View file

@ -142,6 +142,7 @@ static const char * const card_extensions[] =
{
"GL_ARB_multisample",
"GL_ARB_multitexture",
"GL_ARB_point_parameters",
"GL_ARB_texture_border_clamp",
"GL_ARB_texture_compression",
"GL_ARB_texture_env_add",