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

📄 vram.h

📁 psp下pmf文件播放器源码
💻 H
字号:
#ifndef common_vram_h#define common_vram_h#ifdef __cplusplusextern "C" {#endif/*	The following are a few helperfunctions to help manage vram in gu-examples.	Do not use for your own code, it's better you manage it in your own way.*//* make a static allocation of vram memory and return pointer relative to vram start */void* getStaticVramBuffer(unsigned int width, unsigned int height, unsigned int psm);/* make a static allocation of vram memory and return absolute pointer */void* getStaticVramTexture(unsigned int width, unsigned int height, unsigned int psm);// the following is not yet implemented/*void beginDynamicVramFrame();void endDynamicVramFrame();void* getDynamicVramBuffer(unsigned int width, unsigned int height, unsigned int psm);void* getDynamicVramTexture(unsigned int width, unsigned int height, unsigned int psm);*/#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

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