Lines Matching full:mhlsl
27 mHlsl = NULL;
63 delete[] mHlsl;
186 return mHlsl != NULL;
191 return mHlsl;
237 if (mHlsl)
239 const char *input = strstr(mHlsl, "// Varyings") + 12;
267 mUsesFragCoord = strstr(mHlsl, "GL_USES_FRAG_COORD") != NULL;
268 mUsesFrontFacing = strstr(mHlsl, "GL_USES_FRONT_FACING") != NULL;
269 mUsesPointSize = strstr(mHlsl, "GL_USES_POINT_SIZE") != NULL;
270 mUsesPointCoord = strstr(mHlsl, "GL_USES_POINT_COORD") != NULL;
292 mHlsl = new char[objCodeLen];
293 ShGetObjectCode(compiler, mHlsl);
295 TRACE("\n%s", mHlsl);
467 if (mHlsl)
469 const char *input = strstr(mHlsl, "// Attributes") + 14;