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

  /frameworks/base/libs/rs/
rsProgramFragment.h 46 uint32_t mTextureFormats[MAX_TEXTURE];
47 uint32_t mTextureDimensions[MAX_TEXTURE];
48 RsTexEnvMode mEnvModes[MAX_TEXTURE];
63 ObjectBaseRef<Type> mTextureTypes[ProgramFragment::MAX_TEXTURE];
rsProgram.h 35 const static uint32_t MAX_TEXTURE = 2;
94 ObjectBaseRef<Allocation> mTextures[MAX_TEXTURE];
95 ObjectBaseRef<Sampler> mSamplers[MAX_TEXTURE];
rsProgram.cpp 129 if (slot >= MAX_TEXTURE) {
130 LOGE("Attempt to bind a texture to a slot > MAX_TEXTURE");
141 if (slot >= MAX_TEXTURE) {
142 LOGE("Attempt to bind a Sampler to a slot > MAX_TEXTURE");
rsProgramFragment.cpp 77 for (uint32_t ct=0; ct < MAX_TEXTURE; ct++) {
152 for (uint32_t ct=0; ct < MAX_TEXTURE; ct++) {
  /frameworks/base/graphics/java/android/renderscript/
ProgramFragment.java 66 public static final int MAX_TEXTURE = 2;
105 mSlots = new Slot[MAX_TEXTURE];
111 if((slot < 0) || (slot >= MAX_TEXTURE)) {
112 throw new IllegalArgumentException("MAX_TEXTURE exceeded.");
123 int[] tmp = new int[MAX_TEXTURE * 2 + 1];
135 pf.mTextureCount = MAX_TEXTURE;
Program.java 32 public static final int MAX_TEXTURE = 8;

Completed in 676 milliseconds