• Home
  • Raw
  • Download

Lines Matching full:find

173     return mUniformRegisterMap.find(uniformName)->second;  in getUniformRegister()
179 return mUniformBlockRegisterMap.find(blockName)->second; in getUniformBlockRegister()
185 return mUniformBlockUseStructuredBufferMap.find(blockName)->second; in shouldUniformBlockUseStructuredBuffer()
191 return mShaderStorageBlockRegisterMap.find(blockName)->second; in getShaderStorageBlockRegister()
206 return mUsedImage2DFunctionNames.find(functionName) != mUsedImage2DFunctionNames.end(); in useImage2DFunction()
307 mUsesMultipleRenderTargets = translatedSource.find("GL_USES_MRT") != std::string::npos; in compile()
308 mUsesFragColor = translatedSource.find("GL_USES_FRAG_COLOR") != std::string::npos; in compile()
309 mUsesFragData = translatedSource.find("GL_USES_FRAG_DATA") != std::string::npos; in compile()
310 mUsesSecondaryColor = translatedSource.find("GL_USES_SECONDARY_COLOR") != std::string::npos; in compile()
311 mUsesFragCoord = translatedSource.find("GL_USES_FRAG_COORD") != std::string::npos; in compile()
312 mUsesFrontFacing = translatedSource.find("GL_USES_FRONT_FACING") != std::string::npos; in compile()
313 mUsesSampleID = translatedSource.find("GL_USES_SAMPLE_ID") != std::string::npos; in compile()
314 mUsesSamplePosition = translatedSource.find("GL_USES_SAMPLE_POSITION") != std::string::npos; in compile()
315 mUsesSampleMaskIn = translatedSource.find("GL_USES_SAMPLE_MASK_IN") != std::string::npos; in compile()
316 mUsesSampleMask = translatedSource.find("GL_USES_SAMPLE_MASK_OUT") != std::string::npos; in compile()
318 translatedSource.find("GL_USES_HELPER_INVOCATION") != std::string::npos; in compile()
319 mUsesPointSize = translatedSource.find("GL_USES_POINT_SIZE") != std::string::npos; in compile()
320 mUsesPointCoord = translatedSource.find("GL_USES_POINT_COORD") != std::string::npos; in compile()
321 mUsesDepthRange = translatedSource.find("GL_USES_DEPTH_RANGE") != std::string::npos; in compile()
322 mHasMultiviewEnabled = translatedSource.find("GL_MULTIVIEW_ENABLED") != std::string::npos; in compile()
323 mUsesVertexID = translatedSource.find("GL_USES_VERTEX_ID") != std::string::npos; in compile()
324 mUsesViewID = translatedSource.find("GL_USES_VIEW_ID") != std::string::npos; in compile()
326 translatedSource.find("ANGLE_USES_DISCARD_REWRITING") != std::string::npos; in compile()
327 mUsesNestedBreak = translatedSource.find("ANGLE_USES_NESTED_BREAK") != std::string::npos; in compile()
329 translatedSource.find("ANGLE_REQUIRES_IEEE_STRICT_COMPILING") != std::string::npos; in compile()
333 if (translatedSource.find("GL_USES_FRAG_DEPTH_GREATER") != std::string::npos) in compile()
337 else if (translatedSource.find("GL_USES_FRAG_DEPTH_LESS") != std::string::npos) in compile()
341 else if (translatedSource.find("GL_USES_FRAG_DEPTH") != std::string::npos) in compile()
405 return mUniformRegisterMap.find(name) != mUniformRegisterMap.end(); in hasUniform()