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

  /frameworks/rs/driver/
rsdProgramStore.cpp 36 GLenum depthFunc;
49 switch (ps->mHal.state.depthFunc) {
52 drv->depthFunc = GL_ALWAYS;
55 drv->depthFunc = GL_LESS;
58 drv->depthFunc = GL_LEQUAL;
61 drv->depthFunc = GL_GREATER;
64 drv->depthFunc = GL_GEQUAL;
67 drv->depthFunc = GL_EQUAL;
70 drv->depthFunc = GL_NOTEQUAL;
175 RSD_CALL_GL(glDepthFunc, drv->depthFunc);
    [all...]
  /frameworks/rs/
rsProgramStore.cpp 28 RsDepthFunc depthFunc) : ProgramBase(rsc) {
41 mHal.state.depthFunc = depthFunc;
91 RsDepthFunc depthFunc) {
104 if (existing->mHal.state.depthFunc != depthFunc) continue;
115 srcFunc, destFunc, depthFunc);
150 RsDepthFunc depthFunc) {
157 srcFunc, destFunc, depthFunc);
rsProgramStore.h 54 RsDepthFunc depthFunc;
70 RsDepthFunc depthFunc);
81 RsDepthFunc depthFunc);
rsg.spec 11 param RsDepthFunc depthFunc
  /frameworks/compile/libbcc/lib/Renderscript/runtime/
rs_structs.h 90 rs_depth_func depthFunc;
rs_program.c 14 return prog->mHal.state.depthFunc;
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_program_store.java 25 import android.renderscript.ProgramStore.DepthFunc;
38 ProgramStore depthFunc;
49 b.setDepthFunc(ProgramStore.DepthFunc.ALWAYS);
83 depthFunc = b.setDepthFunc(ProgramStore.DepthFunc.GREATER).create();
93 s.set_depthFunc(depthFunc);
107 DepthFunc df,
128 DepthFunc df,
155 for (DepthFunc df : DepthFunc.values())
    [all...]
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselRS.java 446 final ProgramStore.DepthFunc depthFunc = mForceBlendCardsWithZ ?
447 ProgramStore.DepthFunc.LESS : ProgramStore.DepthFunc.ALWAYS;
453 .setDepthFunc(depthFunc)
462 .setDepthFunc(depthFunc)
471 .setDepthFunc(ProgramStore.DepthFunc.ALWAYS)
575 final ProgramStore.DepthFunc depthFunc = depthReads ?
576 ProgramStore.DepthFunc.LESS
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Context.h 149 GLenum depthFunc;
249 void setDepthFunc(GLenum depthFunc);
Context.cpp 48 mState.depthFunc = GL_LESS;
405 void Context::setDepthFunc(GLenum depthFunc)
407 if (mState.depthFunc != depthFunc)
409 mState.depthFunc = depthFunc;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 205 IGLProperty depthFunc = new GLEnumProperty(GLStateType.DEPTH_FUNC, GLEnum.GL_LESS);
227 depthTest, depthFunc, blend, dither);
  /system/core/include/pixelflinger/
pixelflinger.h 289 void (*depthFunc)(void* c, GGLenum func);
  /frameworks/base/graphics/java/android/renderscript/
RenderScript.java 729 int srcMode, int dstMode, int depthFunc);
732 int srcMode, int dstMode, int depthFunc) {
735 dstMode, depthFunc);
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebGraphicsContext3D.h 207 virtual void depthFunc(WGC3Denum func) = 0;
  /external/webkit/Source/WebKit/chromium/src/
GraphicsContext3DInternal.h 118 void depthFunc(GC3Denum func);
GraphicsContext3DChromium.cpp 469 DELEGATE_TO_IMPL_1(depthFunc, GC3Denum)
    [all...]
  /frameworks/native/opengl/libagl/
state.cpp 546 c->rasterizer.procs.depthFunc(c, func);
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.h 123 void depthFunc(GC3Denum);
WebGLRenderingContext.idl 501 [StrictTypeChecking] void depthFunc(in unsigned long func);
    [all...]
WebGLRenderingContext.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 644 void depthFunc(GC3Denum func);
    [all...]
  /system/core/libpixelflinger/
pixelflinger.cpp 779 GGL_INIT_PROC(procs, depthFunc);
  /frameworks/base/graphics/jni/
android_renderscript_RenderScript.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 575 void GraphicsContext3D::depthFunc(GC3Denum func)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp     [all...]

Completed in 546 milliseconds