OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:blenddst
(Results
1 - 9
of
9
) sorted by null
/frameworks/base/libs/rs/driver/
rsdProgramStore.cpp
33
GLenum
blendDst
;
81
(ps->mHal.state.
blendDst
== RS_BLEND_DST_ZERO)) {
118
switch (ps->mHal.state.
blendDst
) {
120
drv->
blendDst
= GL_ZERO;
123
drv->
blendDst
= GL_ONE;
126
drv->
blendDst
= GL_SRC_COLOR;
129
drv->
blendDst
= GL_ONE_MINUS_SRC_COLOR;
132
drv->
blendDst
= GL_SRC_ALPHA;
135
drv->
blendDst
= GL_ONE_MINUS_SRC_ALPHA;
138
drv->
blendDst
= GL_DST_ALPHA
[
all
...]
/development/tools/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmValidate.h
24
static bool
blendDst
(GLenum d);
GLEScmValidate.cpp
202
bool GLEScmValidate::
blendDst
(GLenum d) {
GLEScmImp.cpp
337
SET_ERROR_IF(!GLEScmValidate::blendSrc(sfactor) || !GLEScmValidate::
blendDst
(dfactor),GL_INVALID_ENUM)
[
all
...]
/development/tools/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Validate.h
27
static bool
blendDst
(GLenum d);
GLESv2Validate.cpp
47
bool GLESv2Validate::
blendDst
(GLenum d) {
GLESv2Imp.cpp
291
SET_ERROR_IF(!GLESv2Validate::blendSrc(sfactor) || !GLESv2Validate::
blendDst
(dfactor),GL_INVALID_ENUM)
298
!(GLESv2Validate::blendSrc(srcRGB) && GLESv2Validate::
blendDst
(dstRGB) && GLESv2Validate::blendSrc(srcAlpha) && GLESv2Validate::
blendDst
(dstAlpha)),GL_INVALID_ENUM);
[
all
...]
/frameworks/base/libs/rs/
rsProgramStore.cpp
38
mHal.state.
blendDst
= destFunc;
102
if (existing->mHal.state.
blendDst
!= destFunc) continue;
rsProgramStore.h
57
RsBlendDstFunc
blendDst
;
Completed in 179 milliseconds