Home | History | Annotate | Download | only in qphelper

Lines Matching refs:deBool

163 	deBool						bindToTextureRGB;
164 deBool bindToTextureRGBA;
176 deBool nativeRenderable;
192 deBool qpTestLog_startCase (qpTestLog* log, const char* testCasePath, qpTestCaseType testCaseType);
193 deBool qpTestLog_endCase (qpTestLog* log, qpTestResult result, const char* description);
194 deBool qpTestLog_terminateCase (qpTestLog* log, qpTestResult result);
196 deBool qpTestLog_writeMessage (qpTestLog* log, const char* format, ...) DE_PRINTF_FUNC_ATTR(2,3);
197 deBool qpTestLog_startSection (qpTestLog* log, const char* name, const char* description);
198 deBool qpTestLog_endSection (qpTestLog* log);
199 deBool qpTestLog_writeText (qpTestLog* log, const char* name, const char* description, qpKeyValueTag tag, const char* value);
200 deBool qpTestLog_writeInteger (qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value);
201 deBool qpTestLog_writeFloat (qpTestLog* log, const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value);
203 deBool qpTestLog_startImageSet (qpTestLog* log, const char* name, const char* description);
204 deBool qpTestLog_endImageSet (qpTestLog* log);
205 deBool qpTestLog_writeImage (qpTestLog* log, const char* name, const char* description, qpImageCompressionMode compressionMode, qpImageFormat format, int width, int height, int stride, const void* data);
207 deBool qpTestLog_startEglConfigSet (qpTestLog* log, const char* key, const char* description);
208 deBool qpTestLog_writeEglConfig (qpTestLog* log, const qpEglConfigInfo* config);
209 deBool qpTestLog_endEglConfigSet (qpTestLog* log);
213 deBool qpTestLog_startShaderProgram (qpTestLog* log, deBool linkOk, const char* linkInfoLog);
214 deBool qpTestLog_endShaderProgram (qpTestLog* log);
215 deBool qpTestLog_writeShader (qpTestLog* log, qpShaderType type, const char* source, deBool compileOk, const char* infoLog);
217 deBool qpTestLog_writeKernelSource (qpTestLog* log, const char* source);
218 deBool qpTestLog_writeCompileInfo (qpTestLog* log, const char* name, const char* description, deBool compileOk, const char* infoLog);
220 deBool qpTestLog_startSampleList (qpTestLog* log, const char* name, const char* description);
221 deBool qpTestLog_startSampleInfo (qpTestLog* log);
222 deBool qpTestLog_writeValueInfo (qpTestLog* log, const char* name, const char* description, const char* unit, qpSampleValueTag tag);
223 deBool qpTestLog_endSampleInfo (qpTestLog* log);
224 deBool qpTestLog_startSample (qpTestLog* log);
225 deBool qpTestLog_writeValueFloat (qpTestLog* log, double value);
226 deBool qpTestLog_writeValueInteger (qpTestLog* log, deInt64 value);
227 deBool qpTestLog_endSample (qpTestLog* log);
228 deBool qpTestLog_endSampleList (qpTestLog* log);