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

1 2 3 4

  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
ProgramStoreTest.java 20 import android.renderscript.ProgramStore.DepthFunc;
52 for (DepthFunc df : DepthFunc.values()) {
117 assertEquals(DepthFunc.ALWAYS,
118 DepthFunc.valueOf("ALWAYS"));
119 assertEquals(DepthFunc.LESS,
120 DepthFunc.valueOf("LESS"));
121 assertEquals(DepthFunc.LESS_OR_EQUAL,
122 DepthFunc.valueOf("LESS_OR_EQUAL"));
123 assertEquals(DepthFunc.GREATER
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ProgramStore.java 43 * buffer. DepthFunc is only valid when depth buffer is present
46 public enum DepthFunc {
84 DepthFunc(int id) {
139 DepthFunc mDepthFunc;
158 public DepthFunc getDepthFunc() {
241 builder.setDepthFunc(ProgramStore.DepthFunc.LESS);
262 builder.setDepthFunc(ProgramStore.DepthFunc.ALWAYS);
286 builder.setDepthFunc(ProgramStore.DepthFunc.LESS);
308 builder.setDepthFunc(ProgramStore.DepthFunc.ALWAYS);
324 DepthFunc mDepthFunc
    [all...]
  /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...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
depth.c 97 if (ctx->Driver.DepthFunc)
98 ctx->Driver.DepthFunc( ctx, func );
  /external/mesa3d/src/mesa/main/
depth.c 97 if (ctx->Driver.DepthFunc)
98 ctx->Driver.DepthFunc( ctx, func );
  /frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
RsListRS.java 24 import android.renderscript.ProgramStore.DepthFunc;
RsRenderStatesRS.java 25 import android.renderscript.ProgramStore.DepthFunc;
133 builder.setDepthFunc(ProgramStore.DepthFunc.ALWAYS);
177 builder.setDepthFunc(ProgramStore.DepthFunc.ALWAYS);
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SgTransform.java 26 import android.renderscript.ProgramStore.DepthFunc;
SceneGraphRS.java 27 import android.renderscript.ProgramStore.DepthFunc;
96 b.setDepthFunc(ProgramStore.DepthFunc.LESS);
SimpleModelRS.java 23 import android.renderscript.ProgramStore.DepthFunc;
80 b.setDepthFunc(ProgramStore.DepthFunc.LESS);
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_0_autogen.h 50 EXPECT_CALL(*gl_, DepthFunc(GL_LESS))
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
TestAppLoadingScreen.java 35 import android.renderscript.ProgramStore.DepthFunc;
  /frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
FBOSyncRS.java 25 import android.renderscript.ProgramStore.DepthFunc;
82 b.setDepthFunc(ProgramStore.DepthFunc.LESS);
FBOTestRS.java 25 import android.renderscript.ProgramStore.DepthFunc;
81 b.setDepthFunc(ProgramStore.DepthFunc.LESS);
  /frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
ShadersTestRS.java 30 import android.renderscript.ProgramStore.DepthFunc;
88 b.setDepthFunc(DepthFunc.LESS);
  /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...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaScene.java 39 import android.renderscript.ProgramStore.DepthFunc;
  /frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/
BallsRS.java 82 builder.setDepthFunc(ProgramStore.DepthFunc.ALWAYS);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
driverfuncs.c 131 driver->DepthFunc = NULL;
256 ctx->Driver.DepthFunc(ctx, ctx->Depth.Func);
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 131 driver->DepthFunc = NULL;
256 ctx->Driver.DepthFunc(ctx, ctx->Depth.Func);
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_ids_autogen.h 59 OP(DepthFunc) /* 302 */ \
  /packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
GalaxyRS.java 21 import static android.renderscript.ProgramStore.DepthFunc.*;
  /packages/wallpapers/Basic/src/com/android/wallpaper/nexus/
NexusRS.java 21 import static android.renderscript.ProgramStore.DepthFunc.ALWAYS;
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis4/
Visualization4RS.java 19 import static android.renderscript.ProgramStore.DepthFunc.ALWAYS;
  /external/chromium_org/gpu/GLES2/
gl2chromium_autogen.h 48 #define glDepthFunc GLES2_GET_FUN(DepthFunc)

Completed in 495 milliseconds

1 2 3 4