Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3298 → Rev 3299

/drivers/video/Intel-2D/kgem.h
28,7 → 28,7
#ifndef KGEM_H
#define KGEM_H
 
#define HAS_DEBUG_FULL 1
#define HAS_DEBUG_FULL 0
 
#include <stdint.h>
#include <stdbool.h>
40,6 → 40,13
#include "compiler.h"
#include "intel_list.h"
 
static inline void delay(uint32_t time)
{
__asm__ __volatile__(
"int $0x40"
::"a"(5), "b"(time)
:"memory");
};
 
 
#if HAS_DEBUG_FULL