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

1 2

  /external/llvm/lib/Target/R600/
R600TextureIntrinsicsReplacer.cpp 38 void getAdjustmentFromTextureTarget(unsigned TextureType, bool hasLOD,
61 switch (TextureType) {
90 if (TextureType == TEXTURE_RECT ||
91 TextureType == TEXTURE_SHADOWRECT) {
96 if (TextureType == TEXTURE_CUBE_ARRAY ||
97 TextureType == TEXTURE_SHADOWCUBE_ARRAY)
100 if (TextureType == TEXTURE_1D_ARRAY ||
101 TextureType == TEXTURE_SHADOW1D_ARRAY) {
108 } else if (TextureType == TEXTURE_2D_ARRAY ||
109 TextureType == TEXTURE_SHADOW2D_ARRAY)
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Shader.java 39 protected ArrayList<Program.TextureType > mShaderTextureTypes;
41 protected ArrayList<Program.TextureType > mTextureTypes;
49 mShaderTextureTypes = new ArrayList<Program.TextureType>();
51 mTextureTypes = new ArrayList<Program.TextureType>();
FragmentShader.java 66 public Builder addShaderTexture(Program.TextureType texType, String name) {
72 public Builder addTexture(Program.TextureType texType, String name) {
ColladaScene.java 38 import android.renderscript.Program.TextureType;
  /frameworks/base/rs/java/android/renderscript/
Program.java 43 * TextureType specifies what textures are attached to Program
47 public enum TextureType {
52 TextureType(int id) {
72 TextureType mTextures[];
117 public TextureType getTextureType(int slot) {
171 mTextures[slot] != TextureType.TEXTURE_CUBE) {
206 TextureType mTextureTypes[];
224 mTextureTypes = new TextureType[MAX_TEXTURE];
328 public BaseProgramBuilder addTexture(TextureType texType) throws IllegalArgumentException {
342 public BaseProgramBuilder addTexture(TextureType texType, String texName
    [all...]
ProgramFragmentFixedFunction.java 312 sb.addTexture(TextureType.TEXTURE_2D);
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
TorusTest.java 27 import android.renderscript.Program.TextureType;
178 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
201 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
209 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
FillTest.java 113 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
119 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
124 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
  /external/deqp/modules/gles31/functional/
es31fShaderTextureSizeTests.cpp 58 enum TextureType
70 TextureSizeCase (Context& context, const char* name, const char* desc, TextureType type, int samples);
87 const TextureType m_type;
101 TextureSizeCase::TextureSizeCase (Context& context, const char* name, const char* desc, TextureType type, int samples)
494 TextureSizeCase::TextureType type;
es31fShaderImageLoadStoreTests.cpp 88 static inline IVec3 defaultImageSize (TextureType type)
119 static const char* getTextureTypeName (TextureType type)
236 static inline string getShaderSamplerOrImageType (TextureFormat::ChannelType formatType, TextureType textureType, bool isSampler)
242 const char* const imageTypePart = textureType == TEXTURETYPE_BUFFER ? "Buffer"
243 : textureType == TEXTURETYPE_2D ? "2D"
244 : textureType == TEXTURETYPE_3D ? "3D"
245 : textureType == TEXTURETYPE_CUBE ? "Cube"
246 : textureType == TEXTURETYPE_2D_ARRAY ? "2DArray"
252 static inline string getShaderImageType (TextureFormat::ChannelType formatType, TextureType imageType
    [all...]
es31fTextureGatherTests.cpp 67 using gls::TextureTestUtil::TextureType;
831 static inline glu::DataType getSamplerType (TextureType textureType, const tcu::TextureFormat& format)
835 switch (textureType)
845 switch (textureType)
883 static inline int getNumTextureSamplingDimensions (TextureType type)
894 static deUint32 getGLTextureType (TextureType type)
940 TextureType textureType,
999 static glu::ProgramSources genProgramSources (GatherType, TextureType, const tcu::TextureFormat&, const GatherArgs&, const string& refZExpr, const IVec2& offsetRange)
    [all...]
  /external/deqp/modules/glshared/
glsTextureTestUtil.hpp 60 enum TextureType
103 RenderParams (TextureType texType_)
115 TextureType texType; //!< Texture type.
217 void renderQuad (int texUnit, const float* texCoord, TextureType texType);
326 ReferenceParams (TextureType texType_)
337 ReferenceParams (TextureType texType_, const tcu::Sampler& sampler_, LodMode lodMode_ = LODMODE_EXACT)
glsLongStressCase.hpp 134 gls::TextureTestUtil::TextureType textureType;
149 TextureSpec (const gls::TextureTestUtil::TextureType texType,
163 : textureType (texType)
  /external/deqp/modules/gles2/functional/
es2fVertexTextureTests.cpp 126 template <TextureType> struct TexTypeTcuClass;
130 template <TextureType> struct TexTypeSizeDims;
134 template <TextureType> struct TexTypeCoordDims;
138 template <TextureType TexType> struct TexTypeSizeIVec { typedef tcu::Vector<int, TexTypeSizeDims<TexType>::V> t; };
139 template <TextureType TexType> struct TexTypeCoordVec { typedef tcu::Vector<float, TexTypeCoordDims<TexType>::V> t; };
141 template <TextureType> struct TexTypeCoordParams;
177 template <TextureType TexType>
207 template <TextureType TexType>
219 template <TextureType TexType>
225 template <TextureType TexType
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
TestAppRS.java 32 import android.renderscript.Program.TextureType;
140 fb.addTexture(TextureType.TEXTURE_2D, "diffuse");
142 fb.addShaderTexture(TextureType.TEXTURE_CUBE, "reflection");
TestAppLoadingScreen.java 34 import android.renderscript.Program.TextureType;
SimpleAppRS.java 32 import android.renderscript.Program.TextureType;
144 fb.addTexture(TextureType.TEXTURE_2D, "diffuse");
FullscreenBlur.java 32 import android.renderscript.Program.TextureType;
164 fb.addTexture(TextureType.TEXTURE_2D, "color");
  /external/chromium_org/third_party/angle/src/libGLESv2/
ResourceManager.h 73 void checkTextureAllocation(GLuint texture, TextureType type);
ProgramBinary.h 93 TextureType getSamplerTextureType(SamplerType type, unsigned int samplerIndex);
215 static TextureType getTextureType(GLenum samplerType, InfoLog &infoLog);
261 TextureType textureType;
Context.h 357 Texture *getSamplerTexture(unsigned int sampler, TextureType type) const;
471 void applyTextures(SamplerType shaderType, Texture *textures[], TextureType *textureTypes, SamplerState *samplers,
488 TextureType *outTextureTypes, SamplerState *outSamplers);
489 Texture *getIncompleteTexture(TextureType type);
angletypes.h 22 enum TextureType
  /frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
RsRenderStatesRS.java 24 import android.renderscript.Program.TextureType;
248 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
264 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
279 pfbCustom.addTexture(Program.TextureType.TEXTURE_CUBE);
285 pfbCustom.addTexture(Program.TextureType.TEXTURE_2D);
  /packages/wallpapers/Galaxy4/src/com/android/galaxy4/
GalaxyRS.java 226 builder.addTexture(Program.TextureType.TEXTURE_2D);
241 builder.addTexture(Program.TextureType.TEXTURE_2D);
242 builder.addTexture(Program.TextureType.TEXTURE_2D);
  /external/deqp/modules/gles3/functional/
es3fVertexTextureTests.cpp 154 template <TextureType> struct TexTypeTcuClass;
160 template <TextureType> struct TexTypeSizeDims;
166 template <TextureType> struct TexTypeCoordDims;
172 template <TextureType TexType> struct TexTypeSizeIVec { typedef tcu::Vector<int, TexTypeSizeDims<TexType>::V> t; };
173 template <TextureType TexType> struct TexTypeCoordVec { typedef tcu::Vector<float, TexTypeCoordDims<TexType>::V> t; };
175 template <TextureType> struct TexTypeCoordParams;
227 template <TextureType TexType>
257 template <TextureType TexType>
269 template <TextureType TexType>
275 template <TextureType TexType
    [all...]

Completed in 278 milliseconds

1 2