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

1 2 3 4 5 6 7 8 91011

  /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
64 equation[0] = (GLfloat) eq[0];
65 equation[1] = (GLfloat) eq[1];
66 equation[2] = (GLfloat) eq[2];
67 equation[3] = (GLfloat) eq[3];
70 * The equation is transformed by the transpose of the inverse of the
80 _mesa_transform_vector( equation, equation,
83 if (TEST_EQ_4V(ctx->Transform.EyeUserPlane[p], equation))
87 COPY_4FV(ctx->Transform.EyeUserPlane[p], equation);
    [all...]
es1_conversion.h 41 _mesa_ClipPlanef(GLenum plane, const GLfloat *equation);
44 _mesa_ClipPlanex(GLenum plane, const GLfixed *equation);
76 _mesa_GetClipPlanef(GLenum plane, GLfloat *equation);
79 _mesa_GetClipPlanex(GLenum plane, GLfixed *equation);
es1_conversion.c 54 _mesa_ClipPlanef(GLenum plane, const GLfloat *equation)
60 converted_equation[i] = (GLdouble) (equation[i]);
67 _mesa_ClipPlanex(GLenum plane, const GLfixed *equation)
73 converted_equation[i] = (GLdouble) (equation[i] / 65536.0);
204 _mesa_GetClipPlanef(GLenum plane, GLfloat *equation)
211 equation[i] = (GLfloat) (converted_equation[i]);
216 _mesa_GetClipPlanex(GLenum plane, GLfixed *equation)
223 equation[i] = (GLfixed) (converted_equation[i] * 65536);
  /external/skia/include/gpu/
GrBlend.h 99 static constexpr bool GrBlendEquationIsAdvanced(GrBlendEquation equation) {
100 return equation >= kFirstAdvancedGrBlendEquation;
103 static constexpr bool GrBlendModifiesDst(GrBlendEquation equation, GrBlendCoeff srcCoeff,
105 return (kAdd_GrBlendEquation != equation && kReverseSubtract_GrBlendEquation != equation) ||
112 * For "add" and "reverse subtract" the blend equation with f=coverage is:
136 static constexpr bool GrBlendAllowsCoverageAsAlpha(GrBlendEquation equation,
139 return GrBlendEquationIsAdvanced(equation) ||
140 !GrBlendModifiesDst(equation, srcCoeff, dstCoeff) ||
141 ((kAdd_GrBlendEquation == equation || kReverseSubtract_GrBlendEquation == equation) &
    [all...]
GrCaps.h 84 kAdvancedCoherent_BlendEquationSupport, //<! Advanced blend equation support that does not
100 bool canUseAdvancedBlendEquation(GrBlendEquation equation) const {
101 SkASSERT(GrBlendEquationIsAdvanced(equation));
102 return SkToBool(fAdvBlendEqBlacklist & (1 << equation));
  /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...]
es31fFboSRGBWriteControlTests.cpp 288 deUint32 equation; member in struct:deqp::gles31::Functional::__anon17499::BlendConfig
298 blendConfigs[0].equation = GL_FUNC_ADD;
299 blendConfigs[1].equation = GL_FUNC_ADD;
300 blendConfigs[2].equation = GL_FUNC_ADD;
301 blendConfigs[3].equation = GL_FUNC_ADD;
313 blendConfigs[4].equation = GL_FUNC_SUBTRACT;
314 blendConfigs[5].equation = GL_FUNC_SUBTRACT;
315 blendConfigs[6].equation = GL_FUNC_SUBTRACT;
316 blendConfigs[7].equation = GL_FUNC_SUBTRACT;
328 blendConfigs[8].equation = GL_FUNC_REVERSE_SUBTRACT
1223 std::string equation, src, dst; local
    [all...]
es31fAdvancedBlendTests.cpp 89 static const char* getEquationName (glw::GLenum equation)
91 switch (equation)
185 const char* getBlendLayoutQualifier (rr::BlendEquationAdvanced equation)
206 DE_ASSERT(de::inBounds<int>(equation, 0, rr::BLENDEQUATION_ADVANCED_LAST));
207 return s_qualifiers[equation];
210 glu::ProgramSources getBlendProgramSrc (rr::BlendEquationAdvanced equation, glu::RenderContext& renderContext)
236 args["SUPPORT_QUALIFIER"] = getBlendLayoutQualifier(equation);
  /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/skia/src/gpu/glsl/
GrGLSLFragmentShaderBuilder.cpp 32 static const char* specific_layout_qualifier_name(GrBlendEquation equation) {
33 SkASSERT(GrBlendEquationIsAdvanced(equation));
52 return kLayoutQualifierNames[equation - kFirstAdvancedGrBlendEquation];
210 void GrGLSLFragmentShaderBuilder::enableAdvancedBlendEquationIfNeeded(GrBlendEquation equation) {
211 SkASSERT(GrBlendEquationIsAdvanced(equation));
221 this->addLayoutQualifier(specific_layout_qualifier_name(equation), kOut_InterfaceQualifier);
  /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 209 BlendEquation equation; member in struct:rr::BlendState
214 : equation (BLENDEQUATION_ADD)
  /external/skia/src/gpu/vk/
GrVkPipeline.cpp 301 static VkBlendOp blend_equation_to_vk_blend_op(GrBlendEquation equation) {
312 SkASSERT((unsigned)equation < kGrBlendCoeffCnt);
313 return gTable[equation];
350 GrBlendEquation equation = blendInfo.fEquation;
353 bool blendOff = (kAdd_GrBlendEquation == equation || kSubtract_GrBlendEquation == equation) &&
361 attachmentState->colorBlendOp = blend_equation_to_vk_blend_op(equation);
364 attachmentState->alphaBlendOp = blend_equation_to_vk_blend_op(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 )
  /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);
  /external/mesa3d/src/mapi/glapi/
glapi_dispatch.c 101 GL_API void GL_APIENTRY glClipPlanef (GLenum plane, const GLfloat *equation);
109 GL_API void GL_APIENTRY glClipPlanex (GLenum plane, const GLfixed *equation);

Completed in 550 milliseconds

1 2 3 4 5 6 7 8 91011