W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
類說(shuō)明
圖像渲染
CARenderImage 方法
方法 | 說(shuō)明 |
visit | 訪問(wèn) |
draw | 顯示 |
create | 創(chuàng)建,指定Format和DepthStencilFormat |
create | 創(chuàng)建,指定Format |
create | 創(chuàng)建 |
initWithWidthAndHeight | 初始化指定格Format |
initWithWidthAndHeight | 初始化指定格Format和DepthStencilFormat |
printscreenWithView | 截圖并指定view |
printscreenWithView | 截圖并指定view和offset |
printscreenWithView | 截圖并指定view和backgroundColor |
printscreenWithView | 截圖并指定view、offset和backgroundColor |
clear | 清除背景顏色 |
clearDepth | 清除depthValue |
clearStencil | 清除Stencil |
saveToFile | 保存到文件 |
listenToBackground | 監(jiān)聽(tīng)背景 |
listenToForeground | 監(jiān)聽(tīng)前景 |
getClearFlags | 獲取清除的標(biāo)志 |
setClearFlags | 設(shè)置清除的標(biāo)志 |
getClearColor | 獲取清除的顏色 |
setClearColor | 設(shè)置清除的顏色 |
getClearDepth | 獲取清除的深度 |
setClearDepth | 設(shè)置清除的深度 |
getClearStencil | 獲取清除的模板 |
setClearStencil | 設(shè)置清除的模板 |
isAutoDraw | 查看是否自動(dòng)顯示 |
setAutoDraw | 設(shè)置自動(dòng)顯示 |
CARenderImage 方法說(shuō)明
返回值:void
參數(shù):
解釋:訪問(wèn)
返回值:void
參數(shù):
解釋:顯示
static CARenderImage* create(int w ,int h, CAImage::PixelFormat eFormat, GLuint uDepthStencilFormat);
返回值:CARenderImage*
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
int | w | Width |
int | h | height |
CAImage::PixelFormat | eFormat | 格式 |
GLuint | uDepthStencilFormat | DepthStencilFormat |
解釋:創(chuàng)建,指定Format和DepthStencilFormat
static CARenderImage* create(int w, int h, CAImage::PixelFormat eFormat);
返回值:CARenderImage*
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
int | w | Width |
int | h | height |
CAImage::PixelFormat | eFormat | 格式 |
解釋:創(chuàng)建,指定Format
static CARenderImage* create(int w, int h);
返回值:CARenderImage*
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
int | w | Width |
int | h | height |
解釋:創(chuàng)建
bool initWithWidthAndHeight(int w, int h, CAImage::PixelFormat eFormat);
返回值:bool
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
int | w | Width |
int | h | height |
CAImage::PixelFormat | eFormat | 格式 |
解釋:初始化指定格Format
bool initWithWidthAndHeight(int w, int h, CAImage::PixelFormat eFormat, GLuint uDepthStencilFormat);
返回值:bool
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
int | w | Width |
int | h | height |
CAImage::PixelFormat | eFormat | 格式 |
GLuint | uDepthStencilFormat | DepthStencilFormat |
解釋:初始化指定格Format和DepthStencilFormat
void printscreenWithView(CAView* view);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
CAView* | view | 圖像 |
解釋:截圖并指定view
void printscreenWithView(CAView* view, DPoint offset);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
CAView* | view | 圖像 |
DPoint | offset | offset |
解釋:截圖并指定view和offset
void printscreenWithView(CAView* view, const CAColor4B& backgroundColor);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
CAView* | view | 圖像 |
const CAColor4B& | backgroundColor | 背景顏色 |
解釋:截圖并指定view和backgroundColor
void printscreenWithView(CAView* view, DPoint offset, const CAColor4B& backgroundColor);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
CAView* | view | 圖像 |
DPoint | offset | offset |
const CAColor4B& | backgroundColor | 背景顏色 |
解釋:截圖并指定view、offset和backgroundColor
void clear(const CAColor4B& backgroundColor);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
const CAColor4B& | backgroundColor | 背景顏色 |
解釋:清除背景顏色
void clearDepth(float depthValue);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
float | depthValue | depthValue |
解釋:清除depthValue
void clearStencil(int stencilValue);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
int | stencilValue | stencilValue |
解釋:清除Stencil
bool saveToFile(const char* szFilePath);
返回值:bool
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
const char * | szFilePath | 文件 |
解釋:保存到文件
void listenToBackground(CAObject *obj);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
CAObject* | obj | obj |
解釋:監(jiān)聽(tīng)背景
void listenToForeground(CAObject *obj);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
CAObject* | obj | obj |
解釋:監(jiān)聽(tīng)前景
unsigned int getClearFlags() const;
返回值:unsigned int
參數(shù):
解釋:獲取清除的標(biāo)志
void setClearFlags(unsigned int uClearFlags);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
unsigned int | uClearFlags | 標(biāo)志 |
解釋:設(shè)置清除的標(biāo)志
const CAColor4F& getClearColor() const;
返回值:const CAColor4F&
參數(shù):
解釋:獲取清除的顏色
void setClearColor(const CAColor4F &clearColor);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
const CAColor4F& | clearColor | 顏色 |
解釋:設(shè)置清除的顏色
返回值:float
參數(shù):
解釋:獲取清除的深度
void setClearDepth(float fClearDepth);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
float | fClearDepth | Depth |
解釋:設(shè)置清除的深度
返回值:int
參數(shù):
解釋:獲取清除的模板
void setClearStencil(float fClearStencil);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
float | fClearStencil | Stencil |
解釋:設(shè)置清除的模板
返回值:bool
參數(shù):
解釋:查看是否自動(dòng)顯示
void setAutoDraw(bool bAutoDraw);
返回值:void
參數(shù):
類型 | 參數(shù)名 | 說(shuō)明 |
bool | bAutoDraw | 自動(dòng)顯示 |
解釋:設(shè)置自動(dòng)顯示
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: