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

  /external/chromium_org/third_party/angle/src/libGLESv2/
Program.cpp 27 InfoLog::InfoLog() : mInfoLog(NULL)
33 delete[] mInfoLog;
39 if (!mInfoLog)
45 return strlen(mInfoLog) + 1;
55 if (mInfoLog)
57 index = std::min(bufSize - 1, (int)strlen(mInfoLog));
58 memcpy(infoLog, mInfoLog, index);
107 if (!mInfoLog)
109 mInfoLog = new char[infoLength + 2];
110 strcpy(mInfoLog, info)
    [all...]
Shader.cpp 30 mInfoLog = NULL;
43 delete[] mInfoLog;
93 if (!mInfoLog)
99 return strlen(mInfoLog) + 1;
109 if (mInfoLog)
111 index = std::min(bufSize - 1, (int)strlen(mInfoLog));
112 memcpy(infoLog, mInfoLog, index);
329 delete[] mInfoLog;
330 mInfoLog = NULL;
401 mInfoLog = new char[infoLogLen]
    [all...]
Program.h 62 char *mInfoLog;
126 InfoLog mInfoLog;
Shader.h 126 char *mInfoLog;

Completed in 82 milliseconds