OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:blendRGBState
(Results
1 - 12
of
12
) sorted by null
/external/deqp/modules/glshared/
glsInteractionTestUtil.cpp
194
state.
blendRGBState
.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquationsES2), DE_ARRAY_END(blendEquationsES2));
195
state.
blendRGBState
.srcFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendFuncs), DE_ARRAY_END(blendFuncs));
196
state.
blendRGBState
.dstFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendFuncsDstES2), DE_ARRAY_END(blendFuncsDstES2));
204
state.
blendRGBState
.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquations), DE_ARRAY_END(blendEquations));
205
state.
blendRGBState
.srcFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendFuncs), DE_ARRAY_END(blendFuncs));
206
state.
blendRGBState
.dstFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendFuncs), DE_ARRAY_END(blendFuncs));
glsInteractionTestUtil.hpp
94
BlendState
blendRGBState
;
glsFragOpInteractionCase.cpp
264
ctx.blendEquationSeparate(state.
blendRGBState
.equation, state.blendAState.equation);
265
ctx.blendFuncSeparate(state.
blendRGBState
.srcFunc, state.
blendRGBState
.dstFunc, state.blendAState.srcFunc, state.blendAState.dstFunc);
/external/deqp/framework/referencerenderer/
rrFragmentOperations.hpp
140
void executeBlendFactorComputeRGB (const tcu::Vec4& blendColor, const BlendState&
blendRGBState
);
142
void executeBlend (const BlendState&
blendRGBState
, const BlendState& blendAState);
rrRenderState.hpp
243
BlendState
blendRGBState
;
275
,
blendRGBState
()
rrFragmentOperations.cpp
304
void FragmentProcessor::executeBlendFactorComputeRGB (const Vec4& blendColor, const BlendState&
blendRGBState
)
323
switch (
blendRGBState
.FUNC_NAME) \
406
void FragmentProcessor::executeBlend (const BlendState&
blendRGBState
, const BlendState& blendAState)
421
switch (
blendRGBState
.equation)
[
all
...]
/external/deqp/modules/gles2/functional/
es2fRandomFragmentOpTests.cpp
123
translateBlendState(src.
blendRGBState
, dst.
blendRGBState
);
193
wrapper.glBlendEquationSeparate(state.
blendRGBState
.equation, state.blendAState.equation);
194
wrapper.glBlendFuncSeparate(state.
blendRGBState
.srcFunc, state.
blendRGBState
.dstFunc, state.blendAState.srcFunc, state.blendAState.dstFunc);
es2fBlendTests.cpp
235
referenceState.
blendRGBState
.equation = sglr::rr_util::mapGLBlendEquation(paramSet.equationRGB);
236
referenceState.
blendRGBState
.srcFunc = sglr::rr_util::mapGLBlendFunc(paramSet.srcFuncRGB);
237
referenceState.
blendRGBState
.dstFunc = sglr::rr_util::mapGLBlendFunc(paramSet.dstFuncRGB);
/external/deqp/modules/gles3/functional/
es3fRandomFragmentOpTests.cpp
123
translateBlendState(src.
blendRGBState
, dst.
blendRGBState
);
193
wrapper.glBlendEquationSeparate(state.
blendRGBState
.equation, state.blendAState.equation);
194
wrapper.glBlendFuncSeparate(state.
blendRGBState
.srcFunc, state.
blendRGBState
.dstFunc, state.blendAState.srcFunc, state.blendAState.dstFunc);
es3fBlendTests.cpp
288
referenceState.
blendRGBState
.equation = sglr::rr_util::mapGLBlendEquation(paramSet.equationRGB);
289
referenceState.
blendRGBState
.srcFunc = sglr::rr_util::mapGLBlendFunc(paramSet.srcFuncRGB);
290
referenceState.
blendRGBState
.dstFunc = sglr::rr_util::mapGLBlendFunc(paramSet.dstFuncRGB);
/external/deqp/modules/egl/
teglRenderTests.cpp
256
state.fragOps.
blendRGBState
.srcFunc = rr::BLENDFUNC_ONE;
257
state.fragOps.
blendRGBState
.dstFunc = rr::BLENDFUNC_ONE;
258
state.fragOps.
blendRGBState
.equation = rr::BLENDEQUATION_ADD;
259
state.fragOps.blendAState = state.fragOps.
blendRGBState
;
263
state.fragOps.
blendRGBState
.srcFunc = rr::BLENDFUNC_SRC_ALPHA;
264
state.fragOps.
blendRGBState
.dstFunc = rr::BLENDFUNC_ONE_MINUS_SRC_ALPHA;
265
state.fragOps.
blendRGBState
.equation = rr::BLENDEQUATION_ADD;
266
state.fragOps.blendAState = state.fragOps.
blendRGBState
;
[
all
...]
/external/deqp/framework/opengl/simplereference/
sglrReferenceContext.cpp
[
all
...]
Completed in 210 milliseconds