mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
Added GL_ARB_point_parameters support for i830.
This commit is contained in:
parent
be3359bad5
commit
b9bbe78031
3 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -48,7 +48,6 @@
|
|||
static const char * const card_extensions[] =
|
||||
{
|
||||
"GL_ARB_fragment_program",
|
||||
"GL_ARB_point_parameters",
|
||||
"GL_ARB_texture_cube_map",
|
||||
NULL
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue