HomeSort by relevance Sort by last modified time
    Searched refs:CPVRTString (Results 1 - 19 of 19) sorted by null

  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTString.h 17 @class CPVRTString
22 class __declspec(dllexport) CPVRTString
24 class __declspec(dllimport) CPVRTString
26 class CPVRTString
53 @brief CPVRTString constructor
57 CPVRTString(const char* _Ptr, size_t _Count = npos);
60 @brief CPVRTString constructor
65 CPVRTString(const CPVRTString& _Right, size_t _Roff = 0, size_t _Count = npos);
68 @brief CPVRTString constructor
    [all...]
PVRTStringHash.h 28 explicit CPVRTStringHash(const char* _Ptr, size_t _Count = CPVRTString::npos);
34 explicit CPVRTStringHash(const CPVRTString& _Right);
53 CPVRTStringHash& append(const CPVRTString& _Str);
67 CPVRTStringHash& assign(const CPVRTString& _Str);
93 bool operator==(const CPVRTString& _Str) const;
123 const CPVRTString& String() const;
140 CPVRTString m_String;
PVRTString.cpp 28 const size_t CPVRTString::npos = (size_t) -1;
36 @Function CPVRTString
41 CPVRTString::CPVRTString(const char* _Ptr, size_t _Count) :
60 @Function CPVRTString
66 CPVRTString::CPVRTString(const CPVRTString& _Right, size_t _Roff, size_t _Count) :
73 @Function CPVRTString
78 CPVRTString::CPVRTString(size_t _Count, char _Ch)
    [all...]
PVRTPFXParser.h 107 CPVRTString Version;
108 CPVRTString Description;
109 CPVRTString Copyright;
223 CPVRTString NodeName; // POD Camera name.
224 CPVRTString SemanticName; // Name of this pass.
235 CPVRTString BufferType;
236 CPVRTString TargetName;
246 CPVRTString Annotation;
314 EPVRTError ParseFromMemory(const char * const pszScript, CPVRTString * const pReturnError);
324 EPVRTError ParseFromFile(const char * const pszFileName, CPVRTString * const pReturnError)
    [all...]
PVRTStringHash.cpp 21 @Function CPVRTString
33 @Function CPVRTString
37 CPVRTStringHash::CPVRTStringHash(const CPVRTString& _Right) :
44 @Function CPVRTString
70 CPVRTStringHash& CPVRTStringHash::append(const CPVRTString& _Str)
96 CPVRTStringHash& CPVRTStringHash::assign(const CPVRTString& _Str)
146 bool CPVRTStringHash::operator==(const CPVRTString& _Str) const
178 const CPVRTString& CPVRTStringHash::String() const
PVRTResourceFile.h 36 static CPVRTString GetReadPath();
108 static CPVRTString s_ReadPath;
PVRTBackground.h 52 EPVRTError Init(const SPVRTContext * const pContext, const bool bRotate, CPVRTString *pszError = 0);
PVRTHash.h 37 @param[in] String CPVRTString to create the CPVRTHash with.
39 CPVRTHash(const CPVRTString& String) : m_uiHash(0)
102 @brief Generates a hash from a CPVRTString.
106 static CPVRTHash MakeHash(const CPVRTString& String)
PVRTResourceFile.cpp 25 CPVRTString CPVRTResourceFile::s_ReadPath;
89 CPVRTString CPVRTResourceFile::GetReadPath()
91 return CPVRTString(s_ReadPath);
127 CPVRTString Path(s_ReadPath);
PVRTPFXParser.cpp 159 static bool GetSemanticDataFromString(SPVRTSemanticDefaultData *pDataItem, const char * const pszArgumentString, ESemanticDefaultDataType eType, CPVRTString *pError)
168 *pError = CPVRTString("Missing '(' after ") + c_psSemanticDefaultDataTypeInfo[eType].pszName;
177 *pError = c_psSemanticDefaultDataTypeInfo[eType].pszName + CPVRTString(" missing arguments");
210 *pError = CPVRTString("'") + pszError + "' unexpected for " + c_psSemanticDefaultDataTypeInfo[eType].pszName;
222 *pError = c_psSemanticDefaultDataTypeInfo[eType].pszName + CPVRTString(" missing arguments");
232 *pError = CPVRTString("'") + pszError + "' unexpected for " + c_psSemanticDefaultDataTypeInfo[eType].pszName;
242 *pError = c_psSemanticDefaultDataTypeInfo[eType].pszName + CPVRTString(" missing arguments");
275 *pError = CPVRTString("'") + pszError + "' unexpected for " + c_psSemanticDefaultDataTypeInfo[eType].pszName;
290 *pError = CPVRTString("'") + pszError + "' found when expecting ')' for " + c_psSemanticDefaultDataTypeInfo[eType].pszName;
300 *pError = CPVRTString("'") + pszString + "' unexpected after ')'"
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
PVRTShader.h 36 CPVRTString* const pReturnError,
54 CPVRTString* const pReturnError);
75 CPVRTString* const pReturnError,
94 CPVRTString* const pReturnError);
PVRTShader.cpp 40 CPVRTString* const pReturnError,
44 CPVRTString pszShaderString;
65 pszShaderString = CPVRTString(pszShaderCode, length);
70 pszShaderString = CPVRTString(pszShaderCode) + "\n";
102 *pReturnError = CPVRTString("Failed to compile shader: ") + pszInfoLog + "\n";
127 CPVRTString* const pReturnError)
148 *pReturnError = CPVRTString("Failed to load binary shader\n");
157 *pReturnError = CPVRTString("Failed to load binary shader\n");
182 CPVRTString* const pReturnError,
204 *pReturnError += CPVRTString("Failed to open shader ") + pszBinFile + "\n"
    [all...]
PVRTPFXParserAPI.h 49 CPVRTString sValueName; /*!< The name of the variable referenced in shader code */
110 PVRTPFXEffectDelegate* pDelegate, unsigned int& uiUnknownUniforms, CPVRTString *pReturnError);
169 EPVRTError RegisterUniformSemantic(const SPVRTPFXUniformSemantic* const psUniforms, unsigned int uiNumUniforms, CPVRTString* pReturnError);
178 EPVRTError RemoveUniformSemantic(unsigned int uiSemanticID, CPVRTString* pReturnError);
205 EPVRTError LoadShadersForEffect(CPVRTPFXParser &src, const char * const pszFileName, CPVRTString *pReturnError);
212 EPVRTError LoadTexturesForEffect(PVRTPFXEffectDelegate* pDelegate, CPVRTString *pReturnError);
220 EPVRTError RebuildUniformTable(unsigned int& uiUnknownSemantics, CPVRTString* pReturnError);
PVRTPFXParserAPI.cpp 80 PVRTPFXEffectDelegate* pDelegate, unsigned int& uiUnknownUniforms, CPVRTString *pReturnError)
153 EPVRTError CPVRTPFXEffect::LoadTexturesForEffect(PVRTPFXEffectDelegate* pDelegate, CPVRTString *pReturnError)
199 EPVRTError CPVRTPFXEffect::LoadShadersForEffect(CPVRTPFXParser &src, const char * const pszFileName, CPVRTString *pReturnError)
278 CPVRTString error;
305 *pReturnError = CPVRTString("ERROR: Vertex Shader compile error in file '") + pszFileName + "':\n" + error;
315 *pReturnError = CPVRTString("ERROR: Vertex shader ") + ParserEffect.VertexShaderName.String() + " not found in " + pszFileName + ".\n";
319 *pReturnError = CPVRTString("ERROR: Binary vertex shader ") + ParserEffect.VertexShaderName.String() + " not supported.\n";
352 *pReturnError = CPVRTString("ERROR: Fragment Shader compile error in file '") + pszFileName + "':\n" + error;
362 *pReturnError = CPVRTString("ERROR: Fragment shader ") + ParserEffect.FragmentShaderName.String() + " not found in " + pszFileName + ".\n";
366 *pReturnError = CPVRTString("ERROR: Binary Fragment shader ") + ParserEffect.FragmentShaderName.String() + " not supported.\n"
    [all...]
PVRTBackground.cpp 95 EPVRTError CPVRTBackground::Init(const SPVRTContext * const pContext, bool bRotate, CPVRTString *pszError)
117 CPVRTString sTmpErrStr;
170 *pszError = CPVRTString("Failed to link: ") + pszInfoLog + "\n";
PVRTPrint3DAPI.cpp 377 CPVRTString error;
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/DisplacementMap/OGLES2/
OGLES2DisplacementMap.cpp 104 bool LoadTextures(CPVRTString* pErrorStr);
105 bool LoadShaders(CPVRTString* pErrorStr);
106 bool LoadVbos(CPVRTString* pErrorStr);
129 bool OGLES2DisplacementMap::LoadTextures(CPVRTString* pErrorStr)
163 CPVRTString sTextureName = m_Scene.pTexture[pMaterial->nIdxTexDiffuse].pszName;
170 CPVRTString sFileExtension = PVRTStringGetFileExtension(sTextureName);
183 *pErrorStr = "ERROR: Failed to load " + CPVRTString(c_szDisMapFile) + ".";
201 bool OGLES2DisplacementMap::LoadShaders(CPVRTString* pErrorStr)
248 bool OGLES2DisplacementMap::LoadVbos(CPVRTString* pErrorStr)
365 CPVRTString ErrorStr;
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Advanced/ChameleonMan/OGLES2/
OGLES2ChameleonMan.cpp 183 bool LoadTextures(CPVRTString* pErrorStr);
184 bool LoadShaders(CPVRTString* pErrorStr);
196 bool OGLES2ChameleonMan::LoadTextures(CPVRTString* const pErrorStr)
201 *pErrorStr = CPVRTString("ERROR: Failed to load texture for Upper Body.\n");
207 *pErrorStr = CPVRTString("ERROR: Failed to load texture for Legs.\n");
213 *pErrorStr = CPVRTString("ERROR: Failed to load normalmap texture for Upper Body.\n");
219 *pErrorStr = CPVRTString("ERROR: Failed to load normalmap texture for Legs.\n");
225 *pErrorStr = CPVRTString("ERROR: Failed to load normalmap texture for Belt.\n");
231 *pErrorStr = CPVRTString("ERROR: Failed to load texture for SkyLine.\n");
237 *pErrorStr = CPVRTString("ERROR: Failed to load texture for Wall.\n")
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/ColourGrading/OGLES3/
OGLES3ColourGrading.cpp 175 bool LoadShaders(CPVRTString& ErrorStr);
243 bool OGLES3ColourGrading::LoadShaders(CPVRTString& ErrorStr)
577 CPVRTString ErrorStr;

Completed in 332 milliseconds