30 lines
426 B
C
30 lines
426 B
C
/*
|
|
* Graphic Manager - The TI-NESulator Project
|
|
* os/macos/graphics.c
|
|
*
|
|
* Created by Manoel TRAPIER on 08/05/08.
|
|
* Copyright (c) 2003-2008 986Corp. All rights reserved.
|
|
*
|
|
* $LastChangedDate$
|
|
* $Author$
|
|
* $HeadURL$
|
|
* $Revision$
|
|
*
|
|
*/
|
|
#include <os_dependent.h>
|
|
|
|
int graphics_init()
|
|
{
|
|
|
|
}
|
|
|
|
int graphics_drawpixel(long x, long y, long color)
|
|
{
|
|
|
|
}
|
|
|
|
int graphics_blit(long x, long y, long w, long h)
|
|
{
|
|
|
|
}
|