HomeSort by relevance Sort by last modified time
    Searched refs:glu (Results 1 - 25 of 647) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/modules/gles2/functional/
es2fShaderConstExprTests.cpp 55 const std::vector<tcu::TestNode*> children = createTests(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), cases, numCases, glu::GLSL_VERSION_100_ES);
74 {"radians", "radians(${T} (90.0))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatRadians(90.0f) },
75 {"degrees", "degrees(${T} (2.0))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatDegrees(2.0f) },
76 {"sin", "sin(${T} (3.0))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatSin(3.0f) },
77 {"cos", "cos(${T} (3.2))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatCos(3.2f) },
78 {"tan", "tan(${T} (1.5))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatTan(1.5f) }
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderConstExprTests.cpp 56 const std::vector<tcu::TestNode*> children = createTests(m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), cases, numCases, glu::GLSL_VERSION_300_ES);
75 {"radians", "radians(${T} (90.0))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatRadians(90.0f) },
76 {"degrees", "degrees(${T} (2.0))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatDegrees(2.0f) },
77 {"sin", "sin(${T} (3.0))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatSin(3.0f) },
78 {"cos", "cos(${T} (3.2))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatCos(3.2f) },
79 {"tan", "tan(${T} (1.5))", glu::TYPE_FLOAT, 1, 4, glu::TYPE_FLOAT, deFloatTan(1.5f) }
    [all...]
  /external/deqp/framework/platform/null/
tcuNullContextFactory.cpp 33 : glu::ContextFactory("null", "Null Render Context")
37 glu::RenderContext* NullGLContextFactory::createContext (const glu::RenderConfig& config, const tcu::CommandLine&) const
tcuNullContextFactory.hpp 34 class NullGLContextFactory : public glu::ContextFactory
38 glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine&) const;
tcuNullRenderContext.hpp 31 namespace glu namespace
37 } // glu
53 class RenderContext : public glu::RenderContext
56 RenderContext (const glu::RenderConfig& config);
59 virtual glu::ContextType getType (void) const { return m_ctxType; }
67 const glu::ContextType m_ctxType;
  /external/deqp/framework/platform/osx/
tcuOSXPlatform.hpp 33 class OSXPlatform : public tcu::Platform, private glu::Platform
39 const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&>(*this); }
  /external/eigen/Eigen/src/SparseLU/
SparseLU_pruneL.h 49 * \param glu Global LU data
54 const IndexVector& segrep, BlockIndexVector repfnz, IndexVector& xprune, GlobalLU_t& glu)
57 Index jsupno = glu.supno(jcol);
73 if (glu.supno(irep) == glu.supno(irep1) ) continue; // don't prune
76 if (glu.supno(irep) != jsupno )
78 if ( xprune (irep) >= glu.xlsub(irep1) )
80 kmin = glu.xlsub(irep);
81 kmax = glu.xlsub(irep1) - 1;
84 if (glu.lsub(krow) == pivrow)
    [all...]
SparseLU_Utils.h 21 void SparseLUImpl<Scalar,StorageIndex>::countnz(const Index n, Index& nnzL, Index& nnzU, GlobalLU_t& glu)
24 nnzU = (glu.xusub)(n);
25 Index nsuper = (glu.supno)(n);
32 fsupc = glu.xsup(i);
33 jlen = glu.xlsub(fsupc+1) - glu.xlsub(fsupc);
35 for (j = fsupc; j < glu.xsup(i+1); j++)
52 void SparseLUImpl<Scalar,StorageIndex>::fixupL(const Index n, const IndexVector& perm_r, GlobalLU_t& glu)
57 Index nsuper = (glu.supno)(n);
62 fsupc = glu.xsup(i);
    [all...]
SparseLU_copy_to_ucol.h 44 * \param glu Global LU data.
51 BlockIndexVector repfnz ,IndexVector& perm_r, BlockScalarVector dense, GlobalLU_t& glu)
55 Index jsupno = glu.supno(jcol);
59 StorageIndex nextu = glu.xusub(jcol);
66 ksupno = glu.supno(krep);
72 fsupc = glu.xsup(ksupno);
73 isub = glu.xlsub(fsupc) + kfnz - fsupc;
76 while (new_next > glu.nzumax)
78 mem = memXpand<ScalarVector>(glu.ucol, glu.nzumax, nextu, UCOL, glu.num_expansions);
    [all...]
SparseLU_Memory.h 144 * \param glu persistent data to facilitate multiple factors : will be deleted later ??
151 Index SparseLUImpl<Scalar,StorageIndex>::memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, GlobalLU_t& glu)
153 Index& num_expansions = glu.num_expansions; //No memory expansions so far
155 glu.nzumax = glu.nzlumax = (std::min)(fillratio * (annz+1) / n, m) * n; // estimated number of nonzeros in U
156 glu.nzlmax = (std::max)(Index(4), fillratio) * (annz+1) / 4; // estimated nnz in L factor
164 + (glu.nzlmax + glu.nzumax) * sizeof(Index) + (glu.nzlumax+glu.nzumax) * sizeof(Scalar) + n;
    [all...]
  /external/deqp/framework/egl/
egluGLContextFactory.hpp 39 class GLRenderContext : public glu::RenderContext
46 class GLContextFactory : public glu::ContextFactory
50 virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const;
  /external/deqp/framework/opengl/
gluPlatform.cpp 31 namespace glu namespace
42 } // glu
gluStateReset.hpp 28 namespace glu namespace
36 } // glu
  /external/deqp/modules/glshared/
glsShaderLibraryCase.hpp 30 namespace glu namespace
48 glu::RenderContext& renderCtx,
49 const glu::ContextInfo& contextInfo,
52 const glu::sl::ShaderCaseSpecification& specification);
64 glu::RenderContext& m_renderCtx;
65 const glu::ContextInfo& m_contextInfo;
66 const glu::sl::ShaderCaseSpecification m_spec;
glsShaderConstExprTests.cpp 40 static void addOutputVar (glu::sl::ValueBlock* dst, glu::DataType type, float output)
42 dst->outputs.push_back(glu::sl::Value());
45 glu::sl::Value& value = dst->outputs.back();
48 value.type = glu::VarType(type, glu::PRECISION_LAST);
53 case glu::TYPE_INT:
57 case glu::TYPE_UINT:
61 case glu::TYPE_BOOL:
65 case glu::TYPE_FLOAT
    [all...]
glsShaderLibrary.hpp 41 ShaderLibrary (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& contextInfo);
51 glu::RenderContext& m_renderCtx;
52 const glu::ContextInfo& m_contextInfo;
glsShaderConstExprTests.hpp 37 namespace glu namespace
48 using glu::DataType;
71 glu::RenderContext& renderContext,
72 const glu::ContextInfo& contextInfo,
75 glu::GLSLVersion version,
  /external/deqp/modules/gles2/
tes2Context.hpp 29 namespace glu namespace
52 glu::RenderContext& getRenderContext (void) { return *m_renderCtx; }
53 const glu::ContextInfo& getContextInfo (void) { return *m_contextInfo; }
58 glu::RenderContext* m_renderCtx;
59 glu::ContextInfo* m_contextInfo;
  /external/deqp/modules/gles3/
tes3Context.hpp 29 namespace glu namespace
52 glu::RenderContext& getRenderContext (void) { return *m_renderCtx; }
53 const glu::ContextInfo& getContextInfo (void) const { return *m_contextInfo; }
58 glu::RenderContext* m_renderCtx;
59 glu::ContextInfo* m_contextInfo;
  /external/deqp/framework/platform/raspi/
tcuRaspiPlatform.hpp 38 class Platform : public tcu::Platform, private eglu::Platform, private glu::Platform
44 virtual const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&> (*this); }
  /external/deqp/framework/platform/win32/
tcuWGLContextFactory.hpp 35 class ContextFactory : public glu::ContextFactory
39 virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const;
  /external/deqp/modules/gles31/functional/
es31fNegativeShaderFunctionTests.cpp 91 glu::DataType samplerDataType;
92 glu::DataType pDataType;
93 glu::DataType offsetsDataType;
94 glu::DataType fourthArgument;
99 static const glu::DataType s_floatTypes[] =
101 glu::TYPE_FLOAT,
102 glu::TYPE_FLOAT_VEC2,
103 glu::TYPE_FLOAT_VEC3,
104 glu::TYPE_FLOAT_VEC4
107 static const glu::DataType s_intTypes[]
    [all...]
es31fNegativeShaderStorageTests.cpp 41 void verifyProgram(NegativeTestContext& ctx, glu::ProgramSources sources)
44 const glu::ShaderProgram program (ctx.getRenderContext(), sources);
71 glu::ShaderType getGLUShaderType (glw::GLenum glShaderType)
75 case GL_VERTEX_SHADER: return glu::SHADERTYPE_VERTEX;
76 case GL_FRAGMENT_SHADER: return glu::SHADERTYPE_FRAGMENT;
77 case GL_TESS_CONTROL_SHADER: return glu::SHADERTYPE_TESSELLATION_CONTROL;
78 case GL_TESS_EVALUATION_SHADER: return glu::SHADERTYPE_TESSELLATION_EVALUATION;
79 case GL_GEOMETRY_SHADER: return glu::SHADERTYPE_GEOMETRY;
80 case GL_COMPUTE_SHADER: return glu::SHADERTYPE_COMPUTE;
83 return glu::SHADERTYPE_LAST
    [all...]
  /external/deqp/framework/platform/ios/
tcuIOSPlatform.hh 62 class ContextFactory : public glu::ContextFactory
68 glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const;
74 class Platform : public tcu::Platform, private glu::Platform
80 const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&>(*this); }
84 class RawContext : public glu::RenderContext
87 RawContext (glu::ContextType type);
90 virtual glu::ContextType getType (void) const { return m_type; }
100 glu::ContextType m_type
    [all...]
  /external/deqp/modules/gles31/
tes31Context.hpp 29 namespace glu namespace
52 glu::RenderContext& getRenderContext (void) { return *m_renderCtx; }
53 const glu::ContextInfo& getContextInfo (void) const { return *m_contextInfo; }
64 glu::RenderContext* m_renderCtx;
65 glu::ContextInfo* m_contextInfo;

Completed in 523 milliseconds

1 2 3 4 5 6 7 8 91011>>