mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-12 04:40:42 +01:00
minor re-org, doxygen comments
This commit is contained in:
parent
fee08575cd
commit
ff07d6de4c
1 changed files with 13 additions and 11 deletions
|
|
@ -5,9 +5,9 @@
|
|||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
* Version: 6.5
|
||||
* Version: 6.5.2
|
||||
*
|
||||
* Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
|
||||
* Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
|
|
@ -511,7 +511,18 @@ do { \
|
|||
(DST)[1] += S; \
|
||||
} while (0)
|
||||
|
||||
/** Assign scalers to short vectors */
|
||||
#define ASSIGN_2V( V, V0, V1 ) \
|
||||
do { \
|
||||
V[0] = V0; \
|
||||
V[1] = V1; \
|
||||
} while(0)
|
||||
|
||||
/*@}*/
|
||||
|
||||
|
||||
/** \name Linear interpolation macros */
|
||||
/*@{*/
|
||||
|
||||
/**
|
||||
* Linear interpolation
|
||||
|
|
@ -585,15 +596,6 @@ do { \
|
|||
} \
|
||||
} while(0)
|
||||
|
||||
|
||||
|
||||
/** Assign scalers to short vectors */
|
||||
#define ASSIGN_2V( V, V0, V1 ) \
|
||||
do { \
|
||||
V[0] = V0; \
|
||||
V[1] = V1; \
|
||||
} while(0)
|
||||
|
||||
/*@}*/
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue