mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
hw: include hw header files with full paths
Done with this script: cd hw for i in `find . -name '*.h' | sed 's/^..//'`; do echo '\,^#.*include.*["<]'$i'[">], s,'$i',hw/&,' done | sed -i -f - `find . -type f` This is so that paths remain valid as files are moved. Instead, files in hw/dataplane are referenced with the relative path. We know they are not going to move to include/, and they are the only include files that are in subdirectories _and_ move. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
7948b4b009
commit
83c9f4ca79
487 changed files with 1604 additions and 1604 deletions
26
hw/vga.c
26
hw/vga.c
|
@ -21,15 +21,15 @@
|
|||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*/
|
||||
#include "hw.h"
|
||||
#include "vga.h"
|
||||
#include "hw/hw.h"
|
||||
#include "hw/vga.h"
|
||||
#include "ui/console.h"
|
||||
#include "pc.h"
|
||||
#include "pci/pci.h"
|
||||
#include "vga_int.h"
|
||||
#include "hw/pc.h"
|
||||
#include "hw/pci/pci.h"
|
||||
#include "hw/vga_int.h"
|
||||
#include "ui/pixel_ops.h"
|
||||
#include "qemu/timer.h"
|
||||
#include "xen.h"
|
||||
#include "hw/xen.h"
|
||||
#include "trace.h"
|
||||
|
||||
//#define DEBUG_VGA
|
||||
|
@ -986,28 +986,28 @@ typedef void vga_draw_line_func(VGACommonState *s1, uint8_t *d,
|
|||
const uint8_t *s, int width);
|
||||
|
||||
#define DEPTH 8
|
||||
#include "vga_template.h"
|
||||
#include "hw/vga_template.h"
|
||||
|
||||
#define DEPTH 15
|
||||
#include "vga_template.h"
|
||||
#include "hw/vga_template.h"
|
||||
|
||||
#define BGR_FORMAT
|
||||
#define DEPTH 15
|
||||
#include "vga_template.h"
|
||||
#include "hw/vga_template.h"
|
||||
|
||||
#define DEPTH 16
|
||||
#include "vga_template.h"
|
||||
#include "hw/vga_template.h"
|
||||
|
||||
#define BGR_FORMAT
|
||||
#define DEPTH 16
|
||||
#include "vga_template.h"
|
||||
#include "hw/vga_template.h"
|
||||
|
||||
#define DEPTH 32
|
||||
#include "vga_template.h"
|
||||
#include "hw/vga_template.h"
|
||||
|
||||
#define BGR_FORMAT
|
||||
#define DEPTH 32
|
||||
#include "vga_template.h"
|
||||
#include "hw/vga_template.h"
|
||||
|
||||
static unsigned int rgb_to_pixel8_dup(unsigned int r, unsigned int g, unsigned b)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue