Home
last modified time | relevance | path

Searched refs:pszError (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
DPVRTBackground.cpp95 …ror CPVRTBackground::Init(const SPVRTContext * const pContext, bool bRotate, CPVRTString *pszError) in Init() argument
105 if(pszError) in Init()
106 *pszError = "Error: Insufficient memory to allocate SCPVRTBackgroundAPI."; in Init()
120 if(!pszError) in Init()
121 pszError = &sTmpErrStr; in Init()
127 GL_FRAGMENT_SHADER, GL_SGX_BINARY_IMG, &m_pAPI->m_ui32FragShader, pszError) == PVR_SUCCESS) in Init()
129 GL_VERTEX_SHADER, GL_SGX_BINARY_IMG, &m_pAPI->m_ui32VertexShader, pszError) == PVR_SUCCESS); in Init()
134 …ackgroundFragShader_fsh, GL_FRAGMENT_SHADER, &m_pAPI->m_ui32FragShader, pszError) == PVR_SUCCESS) … in Init()
135 …ackgroundVertShader_vsh, GL_VERTEX_SHADER, &m_pAPI->m_ui32VertexShader, pszError) == PVR_SUCCESS); in Init()
144 if(pszError) in Init()
[all …]
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTPFXParser.cpp207 char *pszError = (char *)malloc(n + 1); in GetSemanticDataFromString() local
208 strcpy(pszError, ""); in GetSemanticDataFromString()
209 strncat(pszError, pszString, n); in GetSemanticDataFromString()
210 …*pError = CPVRTString("'") + pszError + "' unexpected for " + c_psSemanticDefaultDataTypeInfo[eTyp… in GetSemanticDataFromString()
211 FREE(pszError); in GetSemanticDataFromString()
229 char *pszError = (char *)malloc(n + 1); in GetSemanticDataFromString() local
230 strcpy(pszError, ""); in GetSemanticDataFromString()
231 strncat(pszError, pszString, n); in GetSemanticDataFromString()
232 …*pError = CPVRTString("'") + pszError + "' unexpected for " + c_psSemanticDefaultDataTypeInfo[eTyp… in GetSemanticDataFromString()
233 FREE(pszError); in GetSemanticDataFromString()
[all …]
DPVRTBackground.h52 …EPVRTError Init(const SPVRTContext * const pContext, const bool bRotate, CPVRTString *pszError = 0…