kdrive/fbdev: fix static color case
This commit is contained in:
parent
090a429573
commit
35d8b5f442
|
@ -21,7 +21,7 @@
|
||||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
/* $XFree86: xc/programs/Xserver/hw/kdrive/fbdev/fbdev.c,v 1.22 2001/06/21 00:58:51 keithp Exp $ */
|
/* $XFree86: xc/programs/Xserver/hw/kdrive/fbdev/fbdev.c,v 1.24 2001/07/11 16:42:17 keithp Exp $ */
|
||||||
|
|
||||||
#include "fbdev.h"
|
#include "fbdev.h"
|
||||||
|
|
||||||
|
@ -668,6 +668,8 @@ fbdevCreateColormap (ColormapPtr pmap)
|
||||||
pdefs = ALLOCATE_LOCAL (nent * sizeof (xColorItem));
|
pdefs = ALLOCATE_LOCAL (nent * sizeof (xColorItem));
|
||||||
if (!pdefs)
|
if (!pdefs)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
for (i = 0; i < nent; i++)
|
||||||
|
pdefs[i].pixel = i;
|
||||||
fbdevGetColors (pScreen, 0, nent, pdefs);
|
fbdevGetColors (pScreen, 0, nent, pdefs);
|
||||||
for (i = 0; i < nent; i++)
|
for (i = 0; i < nent; i++)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue