當前位置: 首頁>>代碼示例>>C++>>正文


C++ CSFML_CALL_RETURN函數代碼示例

本文整理匯總了C++中CSFML_CALL_RETURN函數的典型用法代碼示例。如果您正苦於以下問題:C++ CSFML_CALL_RETURN函數的具體用法?C++ CSFML_CALL_RETURN怎麽用?C++ CSFML_CALL_RETURN使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了CSFML_CALL_RETURN函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。

示例1: sfWindow_GetHeight

unsigned int sfWindow_GetHeight(const sfWindow* window)
{
    CSFML_CALL_RETURN(window, GetHeight(), 0);
}
開發者ID:deadalnix,項目名稱:CSFML,代碼行數:4,代碼來源:Window.cpp

示例2: sfTcpSocket_IsBlocking

sfBool sfTcpSocket_IsBlocking(const sfTcpSocket* socket)
{
    CSFML_CALL_RETURN(socket, IsBlocking(), sfFalse);
}
開發者ID:deadalnix,項目名稱:CSFML,代碼行數:4,代碼來源:TcpSocket.cpp

示例3: sfSprite_GetRotation

float sfSprite_GetRotation(const sfSprite* sprite)
{
    CSFML_CALL_RETURN(sprite, GetRotation(), 0.f);
}
開發者ID:deadalnix,項目名稱:CSFML,代碼行數:4,代碼來源:Sprite.cpp

示例4: sfShape_getRotation

float sfShape_getRotation(const sfShape* shape)
{
    CSFML_CALL_RETURN(shape, getRotation(), 0.f);
}
開發者ID:colinc,項目名稱:CSFML,代碼行數:4,代碼來源:Shape.cpp

示例5: sfFtpDirectoryResponse_isOk

sfBool sfFtpDirectoryResponse_isOk(const sfFtpDirectoryResponse* ftpDirectoryResponse)
{
    CSFML_CALL_RETURN(ftpDirectoryResponse, isOk(), sfFalse);
}
開發者ID:DJMaster,項目名稱:CSFML,代碼行數:4,代碼來源:Ftp.cpp

示例6: sfImage_GetHeight

////////////////////////////////////////////////////////////
/// Return the height of the image
////////////////////////////////////////////////////////////
unsigned int sfImage_GetHeight(sfImage* Image)
{
    CSFML_CALL_RETURN(Image, GetHeight(), 0);
}
開發者ID:freemaul,項目名稱:SFML,代碼行數:7,代碼來源:Image.cpp

示例7: sfShape_getOutlineThickness

float sfShape_getOutlineThickness(const sfShape* shape)
{
    CSFML_CALL_RETURN(shape, getOutlineThickness(), 0.f);
}
開發者ID:colinc,項目名稱:CSFML,代碼行數:4,代碼來源:Shape.cpp

示例8: sfText_getStyle

sfUint32 sfText_getStyle(const sfText* text)
{
    CSFML_CALL_RETURN(text, getStyle(), 0);
}
開發者ID:Jebbs,項目名稱:CSFML,代碼行數:4,代碼來源:Text.cpp

示例9: sfRenderTexture_isSmooth

sfBool sfRenderTexture_isSmooth(const sfRenderTexture* renderTexture)
{
    CSFML_CALL_RETURN(renderTexture, isSmooth(), sfFalse);
}
開發者ID:colinc,項目名稱:CSFML,代碼行數:4,代碼來源:RenderTexture.cpp

示例10: sfText_getRotation

float sfText_getRotation(const sfText* text)
{
    CSFML_CALL_RETURN(text, getRotation(), 0.f);
}
開發者ID:Jebbs,項目名稱:CSFML,代碼行數:4,代碼來源:Text.cpp

示例11: sfText_getCharacterSize

unsigned int sfText_getCharacterSize(const sfText* text)
{
    CSFML_CALL_RETURN(text, getCharacterSize(), 0);
}
開發者ID:Jebbs,項目名稱:CSFML,代碼行數:4,代碼來源:Text.cpp

示例12: sfFtpResponse_IsOk

sfBool sfFtpResponse_IsOk(const sfFtpResponse* ftpResponse)
{
    CSFML_CALL_RETURN(ftpResponse, IsOk(), sfFalse);
}
開發者ID:deadalnix,項目名稱:CSFML,代碼行數:4,代碼來源:Ftp.cpp

示例13: sfWindow_IsOpen

sfBool sfWindow_IsOpen(const sfWindow* window)
{
    CSFML_CALL_RETURN(window, IsOpen(), sfFalse);
}
開發者ID:deadalnix,項目名稱:CSFML,代碼行數:4,代碼來源:Window.cpp

示例14: sfWindow_SetActive

sfBool sfWindow_SetActive(sfWindow* window, sfBool active)
{
    CSFML_CALL_RETURN(window, SetActive(active == sfTrue), sfFalse);
}
開發者ID:deadalnix,項目名稱:CSFML,代碼行數:4,代碼來源:Window.cpp

示例15: sfImage_GetPixelsPtr

////////////////////////////////////////////////////////////
/// Get a read-only pointer to the array of pixels of an image (8 bits integers RGBA)
/// Array size is sfImage_GetWidth() x sfImage_GetHeight() x 4
/// This pointer becomes invalid if you reload or resize the image
////////////////////////////////////////////////////////////
const sfUint8* sfImage_GetPixelsPtr(sfImage* Image)
{
    CSFML_CALL_RETURN(Image, GetPixelsPtr(), NULL);
}
開發者ID:freemaul,項目名稱:SFML,代碼行數:9,代碼來源:Image.cpp


注:本文中的CSFML_CALL_RETURN函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。