HomeSort by relevance Sort by last modified time
    Searched refs:glu (Results 1 - 25 of 454) 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/
tcuNullPlatform.hpp 35 class Platform : public tcu::Platform, private glu::Platform
41 virtual const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&>(*this); }
tcuNullPlatform.cpp 32 class NullContextFactory : public glu::ContextFactory
36 : glu::ContextFactory("null", "Null Render Context")
40 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
53 void SparseLUImpl<Scalar,Index>::pruneL(const Index jcol, const IndexVector& perm_r, const Index pivrow, const Index nseg, const IndexVector& segrep, BlockIndexVector repfnz, IndexVector& xprune, GlobalLU_t& glu)
56 Index jsupno = glu.supno(jcol);
72 if (glu.supno(irep) == glu.supno(irep1) ) continue; // don't prune
75 if (glu.supno(irep) != jsupno )
77 if ( xprune (irep) >= glu.xlsub(irep1) )
79 kmin = glu.xlsub(irep);
80 kmax = glu.xlsub(irep1) - 1;
83 if (glu.lsub(krow) == pivrow)
    [all...]
SparseLU_Utils.h 21 void SparseLUImpl<Scalar,Index>::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,Index>::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.
50 Index SparseLUImpl<Scalar,Index>::copy_to_ucol(const Index jcol, const Index nseg, IndexVector& segrep, BlockIndexVector repfnz ,IndexVector& perm_r, BlockScalarVector dense, GlobalLU_t& glu)
54 Index jsupno = glu.supno(jcol);
58 Index nextu = glu.xusub(jcol);
65 ksupno = glu.supno(krep);
71 fsupc = glu.xsup(ksupno);
72 isub = glu.xlsub(fsupc) + kfnz - fsupc;
75 while (new_next > glu.nzumax)
77 mem = memXpand<ScalarVector>(glu.ucol, glu.nzumax, nextu, UCOL, glu.num_expansions);
    [all...]
SparseLU_Memory.h 145 * \param glu persistent data to facilitate multiple factors : will be deleted later ??
152 Index SparseLUImpl<Scalar,Index>::memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, GlobalLU_t& glu)
154 Index& num_expansions = glu.num_expansions; //No memory expansions so far
156 glu.nzumax = glu.nzlumax = (std::min)(fillratio * annz / n, m) * n; // estimated number of nonzeros in U
157 glu.nzlmax = (std::max)(Index(4), fillratio) * annz / 4; // estimated nnz in L factor
165 + (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
35 } // glu
  /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/common/
tcuPlatform.hpp 28 namespace glu namespace
59 * API-specific platform interfaces (glu::Platform and eglu::Platform)
88 * GL-specific platform interface is defined by glu::Platform. If your
95 virtual const glu::Platform& getGLPlatform (void) const;
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.hpp 37 class Platform : public tcu::Platform, private eglu::Platform, private glu::Platform
45 virtual const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&>(*this); }
  /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 33 class WGLContextFactory : public glu::ContextFactory
37 virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) const;
tcuWin32Platform.hpp 40 class Win32Platform : public tcu::Platform, private glu::Platform
51 const glu::Platform& getGLPlatform (void) const { return static_cast<const glu::Platform&>(*this); }
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinition.hpp 59 std::vector<glu::VariableDeclaration> variables;
60 std::vector<glu::InterfaceBlock> interfaceBlocks;
66 glu::ShaderType getType (void) const { return m_shaderType; }
67 glu::GLSLVersion getVersion (void) const { return m_version; }
74 Shader (glu::ShaderType type, glu::GLSLVersion version);
80 const glu::ShaderType m_shaderType;
81 const glu::GLSLVersion m_version;
93 Shader* addShader (glu::ShaderType type, glu::GLSLVersion version)
    [all...]
es31fProgramInterfaceDefinitionUtil.hpp 46 VariablePathComponent (const glu::VarType* type) :m_type(TYPE_TYPE) { m_data.type = type; }
47 VariablePathComponent (const glu::InterfaceBlock* block) :m_type(TYPE_INTERFACEBLOCK) { m_data.block = block; }
48 VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.declaration = decl; }
57 const glu::VarType* getVariableType (void) const { DE_ASSERT(isVariableType()); return m_data.type; }
58 const glu::InterfaceBlock* getInterfaceBlock (void) const { DE_ASSERT(isInterfaceBlock()); return m_data.block; }
59 const glu::VariableDeclaration* getDeclaration (void) const { DE_ASSERT(isDeclaration()); return m_data.declaration; }
73 const glu::VarType* type;
74 const glu::InterfaceBlock* block;
75 const glu::VariableDeclaration* declaration;
85 VariableSearchFilter (glu::ShaderType shaderType, glu::Storage storage) : m_shaderType(shaderType), m_storage(storage), m_nu (…)
    [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;
  /external/deqp/modules/glshared/
glsShaderConstExprTests.hpp 37 namespace glu namespace
48 using glu::DataType;
71 glu::RenderContext& renderContext,
72 const glu::ContextInfo& contextInfo,
75 glu::GLSLVersion version,

Completed in 2463 milliseconds

1 2 3 4 5 6 7 8 91011>>