⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fglconfig.h

📁 s3c6410 官方测试代码
💻 H
字号:
/**
 * Samsung Project
 * Copyright (c) 2007 Mobile XG, Samsung Electronics, Inc.
 * All right reserved.
 *
 * This software is the confidential and proprietary information
 * of Samsung Electronics Inc. ("Confidential Information"). You
 * shall not disclose such Confidential Information and shall use
 * it only in accordance with the terms of the license agreement
 * you entered into with Samsung Electronics.
 */

/**
 * @file	fglconfig.h
 * @brief	This is the configuration header file for fgl.
 * @author	Cheolkyoo Kim
 * @version	1.5
 */

#if !defined(__FIMG_CONFIG_H__)
#define __FIMG_CONFIG_H__

/*----------------------------------------------------------------------------*/

#define FIMG_MAJOR 		1
#define FIMG_MINOR 		0
#define FIMG_BUILD 		00

/*----------------------------------------------------------------------------*/
/*
#define FIMG_DEBUG
#define VIP_WORKAROUND
#define FPGA_WORKAROUND

#define HOST_RENDER_STATUS		0x00000100
#define HOST_EXCUTE_FUNCTION	0x00000104
#define HOST_ERROR_CODE			0x00000108
*/
#define _FIMG3DSE_VER_1_1       /* Cancel */

#define _FIMG3DSE_VER_1_2       1
#define _FIMG3DSE_VER_1_2_1     2

#define TARGET_FIMG_VERSION     _FIMG3DSE_VER_1_2_1

#define _FIMG_PIPELINE_SINGLE

#define FPGA_BOARD 		2
#define EVAL_BOARD  	3

#define TARGET_PLATFORM FPGA_BOARD

#if TARGET_PLATFORM == FPGA_BOARD
#define DUMP_FRAME_BUFFER
#endif


/*
#if TARGET_PLATFORM == WIN32_VIP
#define MemAlloc malloc
#define MemFree free
#define AcMemcpy memcpy
	typedef HDC NativeUART_PrintflayType;
	typedef HWND NativeWindowType;
	typedef HBITMAP NativePixmapType;
#elif TARGET_PLATFORM == FPGA_BOARD
#define MemAlloc malloc
#define MemFree free
#define AcMemcpy memcpy
#include "2460addr.h"
#include "lcdlib.h"
	typedef unsigned char NativeUART_PrintflayType;
	typedef unsigned char NativeWindowType;
	typedef unsigned char NativePixmapType;
#elif TARGET_PLATFORM == EVAL_BOARD
#include "WmCrayon.h"
#include "WmGrpInterface.h"
#define malloc MemAlloc
#define free(x) MemFree(x)
	typedef unsigned char NativeWindowType;
	typedef WmScreen NativeUART_PrintflayType;
	typedef unsigned char NativePixmapType;
#endif
*/
/*----------------------------------------------------------------------------*/



#if defined(FIMG_DEBUG)
#define FIMG_PDUMP
#define FIMG_TRACE
#endif

/*
#if defined(FIMG_SOLENG)
#if !defined(SOLENG)
#define SOLENG
#endif
#endif
*/




#endif	/* __FIMG_CONFIG_H__ */


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -