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

1 2 3 4 5 6 7 8

  /external/mesa3d/src/mesa/main/
clip.h 42 _mesa_ClipPlane( GLenum plane, const GLdouble *equation );
45 _mesa_GetClipPlane( GLenum plane, GLdouble *equation );
clip.c 56 GLfloat equation[4]; local
65 equation[0] = (GLfloat) eq[0];
66 equation[1] = (GLfloat) eq[1];
67 equation[2] = (GLfloat) eq[2];
68 equation[3] = (GLfloat) eq[3];
71 * The equation is transformed by the transpose of the inverse of the
81 _mesa_transform_vector( equation, equation,
84 if (TEST_EQ_4V(ctx->Transform.EyeUserPlane[p], equation))
88 COPY_4FV(ctx->Transform.EyeUserPlane[p], equation);
    [all...]
es1_conversion.h 11 _es_ClipPlanef(GLenum plane, const GLfloat *equation);
14 _es_ClipPlanex(GLenum plane, const GLfixed *equation);
46 _es_GetClipPlanef(GLenum plane, GLfloat *equation);
49 _es_GetClipPlanex(GLenum plane, GLfixed *equation);
es1_conversion.c 60 _es_ClipPlanef(GLenum plane, const GLfloat *equation)
66 converted_equation[i] = (GLdouble) (equation[i]);
73 _es_ClipPlanex(GLenum plane, const GLfixed *equation)
79 converted_equation[i] = (GLdouble) (equation[i] / 65536.0);
210 _es_GetClipPlanef(GLenum plane, GLfloat *equation)
217 equation[i] = (GLfloat) (converted_equation[i]);
222 _es_GetClipPlanex(GLenum plane, GLfixed *equation)
229 equation[i] = (GLfixed) (converted_equation[i] * 65536);
  /external/deqp/framework/opengl/simplereference/
sglrReferenceUtils.hpp 47 rr::BlendEquation mapGLBlendEquation (deUint32 equation);
48 rr::BlendEquationAdvanced mapGLBlendEquationAdvanced (deUint32 equation);
sglrReferenceUtils.cpp 251 rr::BlendEquation mapGLBlendEquation (deUint32 equation)
253 switch (equation)
266 rr::BlendEquationAdvanced mapGLBlendEquationAdvanced (deUint32 equation)
268 switch (equation)
  /external/deqp/modules/gles31/functional/
es31fNegativeAdvancedBlendEquationTests.cpp 21 * \brief Negative Advanced Blend Equation Tests
81 std::string getShaderLayoutEquation (BlendEquation equation)
83 switch (equation)
102 DE_FATAL("Equation not supported.");
107 glw::GLenum getEquation (BlendEquation equation)
109 switch (equation)
127 DE_FATAL("Equation not supported.");
147 std::string generateFragmentShaderSource (NegativeTestContext& ctx, BlendEquation equation)
155 << "layout(" << getShaderLayoutEquation(equation) << ") out;\n"
165 glu::ProgramSources generateProgramSources (NegativeTestContext& ctx, BlendEquation equation)
    [all...]
  /external/deqp/modules/glshared/
glsInteractionTestUtil.hpp 45 deUint32 equation; member in struct:deqp::gls::InteractionTestUtil::BlendState
50 : equation (0)
glsInteractionTestUtil.cpp 194 state.blendRGBState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquationsES2), DE_ARRAY_END(blendEquationsES2));
198 state.blendAState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquationsES2), DE_ARRAY_END(blendEquationsES2));
204 state.blendRGBState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquations), DE_ARRAY_END(blendEquations));
208 state.blendAState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquations), DE_ARRAY_END(blendEquations));
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
localcom-1.s 1 ! The implicit equation from a datalabel to the main symbol was incorrect
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
common.py 153 :param a_values: the a-values of the above equation
154 :param modulo_values: the m-values of the above equation
  /external/skia/src/gpu/glsl/
GrGLSLFragmentShaderBuilder.cpp 19 static const char* specific_layout_qualifier_name(GrBlendEquation equation) {
20 SkASSERT(GrBlendEquationIsAdvanced(equation));
39 return kLayoutQualifierNames[equation - kFirstAdvancedGrBlendEquation];
240 void GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded(GrBlendEquation equation) {
241 SkASSERT(GrBlendEquationIsAdvanced(equation));
251 this->addLayoutQualifier(specific_layout_qualifier_name(equation), kOut_InterfaceQualifier);
  /external/skia/include/gpu/
GrCaps.h 168 kAdvancedCoherent_BlendEquationSupport, //<! Advanced blend equation support that does not
184 bool canUseAdvancedBlendEquation(GrBlendEquation equation) const {
185 SkASSERT(GrBlendEquationIsAdvanced(equation));
186 return SkToBool(fAdvBlendEqBlacklist & (1 << equation));
GrBlend.h 77 * Given a known blend equation in the form of srcCoeff * srcColor + dstCoeff * dstColor where
171 template<GrBlendEquation Equation>
172 struct GrTBlendEquationIsAdvanced : skstd::bool_constant<Equation >= kFirstAdvancedGrBlendEquation> {};
174 #define GR_BLEND_EQUATION_IS_ADVANCED(EQUATION) \
175 GrTBlendEquationIsAdvanced<EQUATION>::value
177 inline bool GrBlendEquationIsAdvanced(GrBlendEquation equation) {
178 return equation >= kFirstAdvancedGrBlendEquation;
188 #define GR_BLEND_MODIFIES_DST(EQUATION, SRC_COEFF, DST_COEFF) \
189 GrTBlendModifiesDst<EQUATION, SRC_COEFF, DST_COEFF>::value
195 * For "add" and "reverse subtract" the blend equation with f=coverage is
    [all...]
  /frameworks/native/opengl/libagl/
vertex.cpp 124 GLfixed d = dot4(c->clipPlanes.plane[i].equation.v, v->eye.v);
172 vec4_t& equation = c->clipPlanes.plane[p].equation; local
173 memcpy(equation.v, equ, sizeof(vec4_t));
177 mvit.point4(&mvit, &equation, &equation);
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Tween.java 344 private TweenEquation equation; field in class:Tween
378 equation = null;
418 * Sets the easing equation of the tween. Existing equations are located in
422 * equations. Default equation is Quad.INOUT.
443 this.equation = easeEquation;
739 * Gets the easing equation.
742 return equation;
821 if (target == null || equation == null) return;
856 float t = equation.compute(time/duration);
  /external/deqp/framework/referencerenderer/
rrRenderState.hpp 198 BlendEquation equation; member in struct:rr::BlendState
203 : equation (BLENDEQUATION_ADD)
  /external/skia/src/gpu/vk/
GrVkPipeline.cpp 303 static VkBlendOp blend_equation_to_vk_blend_op(GrBlendEquation equation) {
314 SkASSERT((unsigned)equation < kGrBlendCoeffCnt);
315 return gTable[equation];
353 GrBlendEquation equation = blendInfo.fEquation; local
356 bool blendOff = (kAdd_GrBlendEquation == equation || kSubtract_GrBlendEquation == equation) &&
364 attachmentState->colorBlendOp = blend_equation_to_vk_blend_op(equation);
367 attachmentState->alphaBlendOp = blend_equation_to_vk_blend_op(equation);
  /external/chromium-trace/catapult/dashboard/dashboard/
ttest.py 92 # considered a very clear difference. Also, in the equation, as the
108 "Welch-Satterthwaite equation".
  /frameworks/base/opengl/java/android/opengl/
GLES11.java 179 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
183 float[] equation,
187 // C function void glClipPlanef ( GLenum plane, const GLfloat *equation )
191 java.nio.FloatBuffer equation
194 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
198 int[] equation,
202 // C function void glClipPlanex ( GLenum plane, const GLfixed *equation )
206 java.nio.IntBuffer equation
GLES11Ext.java 294 // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
298 int[] equation,
302 // C function void glClipPlanexOES ( GLenum plane, const GLfixed *equation )
306 java.nio.IntBuffer equation
968 // C function void glClipPlanefOES ( GLenum plane, const GLfloat *equation )
972 float[] equation,
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL11.java 168 float[] equation,
174 java.nio.FloatBuffer equation
179 int[] equation,
185 java.nio.IntBuffer equation
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES11.spec 4 void glClipPlanef ( GLenum plane, const GLfloat *equation )
5 void glClipPlanex ( GLenum plane, const GLfixed *equation )
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btGImpactCollisionAlgorithm.cpp 35 //! Class for accessing the plane equation
45 void get_plane_equation(btVector4 &equation)
47 equation[0] = m_planeNormal[0];
48 equation[1] = m_planeNormal[1];
49 equation[2] = m_planeNormal[2];
50 equation[3] = m_planeConstant;
54 void get_plane_equation_transformed(const btTransform & trans,btVector4 &equation) const
56 equation[0] = trans.getBasis().getRow(0).dot(m_planeNormal);
57 equation[1] = trans.getBasis().getRow(1).dot(m_planeNormal);
58 equation[2] = trans.getBasis().getRow(2).dot(m_planeNormal)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 673 public void glClipPlanef(int plane, float[] equation, int offset) {
674 mgl11.glClipPlanef(plane, equation, offset);
677 public void glClipPlanef(int plane, FloatBuffer equation) {
678 mgl11.glClipPlanef(plane, equation);
681 public void glClipPlanex(int plane, int[] equation, int offset) {
682 mgl11.glClipPlanex(plane, equation, offset);
685 public void glClipPlanex(int plane, IntBuffer equation) {
686 mgl11.glClipPlanex(plane, equation);

Completed in 1830 milliseconds

1 2 3 4 5 6 7 8