Searched refs:sampler (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DSamplerThunker.java141 SamplerThunker sampler = new SamplerThunker(0, mRS);
142 sampler.mMin = mMin;
143 sampler.mMag = mMag;
144 sampler.mWrapS = mWrapS;
145 sampler.mWrapT = mWrapT;
146 sampler.mWrapR = mWrapR;
147 sampler.mAniso = mAniso;
148 sampler.mN = s;
150 return sampler;
H A DSampler.java70 * @return minification setting for the sampler
77 * @return magnification setting for the sampler
84 * @return S wrapping mode for the sampler
91 * @return T wrapping mode for the sampler
98 * @return anisotropy setting for the sampler
105 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
108 * @param rs Context to which the sampler will belong.
125 * Retrieve a sampler with min and mag set to linear and wrap modes set to
128 * @param rs Context to which the sampler will belong.
145 * Retrieve a sampler wit
[all...]
/frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
H A Dsample.rs25 void setSampleData(rs_allocation dest, rs_allocation source, rs_sampler sampler) {
28 allocSampler = sampler;
H A DSampleRSActivity.java47 TextureViewUpdater(Allocation outAlloc, Sampler sampler) { argument
49 mSampler = sampler;
155 private synchronized void filterAlloc(Allocation alloc, Sampler sampler) { argument
157 mScript.invoke_setSampleData(alloc, mTwoByTwoAlloc, sampler);
/frameworks/base/rs/java/android/renderscript/
H A DSampler.java57 * @return minification setting for the sampler
64 * @return magnification setting for the sampler
71 * @return S wrapping mode for the sampler
78 * @return T wrapping mode for the sampler
85 * @return anisotropy setting for the sampler
92 * Retrieve a sampler with min and mag set to nearest and wrap modes set to
95 * @param rs Context to which the sampler will belong.
112 * Retrieve a sampler with min and mag set to linear and wrap modes set to
115 * @param rs Context to which the sampler will belong.
132 * Retrieve a sampler wit
[all...]
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_apitest.java48 Sampler sampler = Sampler.CLAMP_NEAREST(pRS);
53 s.set_samplerNonNull(sampler);
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A Dfisheye.rsh18 rs_sampler sampler;
55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
H A Dfisheye_approx.rsh18 rs_sampler sampler;
55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A Dfisheye.rsh18 rs_sampler sampler;
55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
H A Dfisheye_approx.rsh18 rs_sampler sampler;
55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A Dfisheye.rsh18 rs_sampler sampler;
55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
H A Dfisheye_approx.rsh18 rs_sampler sampler;
55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES31Ext.spec31 void glSamplerParameterIivEXT ( GLuint sampler, GLenum pname, const GLint *param )
32 void glSamplerParameterIuivEXT ( GLuint sampler, GLenum pname, const GLuint *param )
33 void glGetSamplerParameterIivEXT ( GLuint sampler, GLenum pname, GLint *params )
34 void glGetSamplerParameterIuivEXT ( GLuint sampler, GLenum pname, GLuint *params )
H A DGLES30.spec88 GLboolean glIsSampler ( GLuint sampler )
89 void glBindSampler ( GLuint unit, GLuint sampler )
90 void glSamplerParameteri ( GLuint sampler, GLenum pname, GLint param )
91 void glSamplerParameteriv ( GLuint sampler, GLenum pname, const GLint *param )
92 void glSamplerParameterf ( GLuint sampler, GLenum pname, GLfloat param )
93 void glSamplerParameterfv ( GLuint sampler, GLenum pname, const GLfloat *param )
94 void glGetSamplerParameteriv ( GLuint sampler, GLenum pname, GLint *params )
95 void glGetSamplerParameterfv ( GLuint sampler, GLenum pname, GLfloat *params )
/frameworks/base/opengl/java/android/opengl/
H A DGLES31Ext.java592 // C function void glSamplerParameterIivEXT ( GLuint sampler, GLenum pname, const GLint *param )
595 int sampler,
601 // C function void glSamplerParameterIivEXT ( GLuint sampler, GLenum pname, const GLint *param )
604 int sampler,
609 // C function void glSamplerParameterIuivEXT ( GLuint sampler, GLenum pname, const GLuint *param )
612 int sampler,
618 // C function void glSamplerParameterIuivEXT ( GLuint sampler, GLenum pname, const GLuint *param )
621 int sampler,
626 // C function void glGetSamplerParameterIivEXT ( GLuint sampler, GLenum pname, GLint *params )
629 int sampler,
594 glSamplerParameterIivEXT( int sampler, int pname, int[] param, int offset ) argument
603 glSamplerParameterIivEXT( int sampler, int pname, java.nio.IntBuffer param ) argument
611 glSamplerParameterIuivEXT( int sampler, int pname, int[] param, int offset ) argument
620 glSamplerParameterIuivEXT( int sampler, int pname, java.nio.IntBuffer param ) argument
628 glGetSamplerParameterIivEXT( int sampler, int pname, int[] params, int offset ) argument
637 glGetSamplerParameterIivEXT( int sampler, int pname, java.nio.IntBuffer params ) argument
645 glGetSamplerParameterIuivEXT( int sampler, int pname, int[] params, int offset ) argument
654 glGetSamplerParameterIuivEXT( int sampler, int pname, java.nio.IntBuffer params ) argument
[all...]
H A DGLES30.java1514 // C function GLboolean glIsSampler ( GLuint sampler )
1517 int sampler
1520 // C function void glBindSampler ( GLuint unit, GLuint sampler )
1524 int sampler
1527 // C function void glSamplerParameteri ( GLuint sampler, GLenum pname, GLint param )
1530 int sampler,
1535 // C function void glSamplerParameteriv ( GLuint sampler, GLenum pname, const GLint *param )
1538 int sampler,
1544 // C function void glSamplerParameteriv ( GLuint sampler, GLenum pname, const GLint *param )
1547 int sampler,
1529 glSamplerParameteri( int sampler, int pname, int param ) argument
1537 glSamplerParameteriv( int sampler, int pname, int[] param, int offset ) argument
1546 glSamplerParameteriv( int sampler, int pname, java.nio.IntBuffer param ) argument
1554 glSamplerParameterf( int sampler, int pname, float param ) argument
1562 glSamplerParameterfv( int sampler, int pname, float[] param, int offset ) argument
1571 glSamplerParameterfv( int sampler, int pname, java.nio.FloatBuffer param ) argument
1579 glGetSamplerParameteriv( int sampler, int pname, int[] params, int offset ) argument
1588 glGetSamplerParameteriv( int sampler, int pname, java.nio.IntBuffer params ) argument
1596 glGetSamplerParameterfv( int sampler, int pname, float[] params, int offset ) argument
1605 glGetSamplerParameterfv( int sampler, int pname, java.nio.FloatBuffer params ) argument
[all...]
/frameworks/rs/
H A DrsSampler.cpp44 mRSC->mHal.funcs.sampler.init(mRSC, this);
48 mRSC->mHal.funcs.sampler.destroy(mRSC, this);
111 ALOGE("pointer for sampler: %p", s);
112 ALOGE("pointer for sampler.drv: %p", &s->mHal.drv);
H A Drsg.spec116 param RsScript sampler
/frameworks/rs/tests/cppbasic/
H A Dmono.rs48 rs_sampler sampler;
/frameworks/rs/tests/cppbasic-shared/
H A Dmono.rs48 rs_sampler sampler;
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31Ext.cpp1030 /* void glSamplerParameterIivEXT ( GLuint sampler, GLenum pname, const GLint *param ) */
1033 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray param_ref, jint offset) {
1059 (GLuint)sampler,
1074 /* void glSamplerParameterIivEXT ( GLuint sampler, GLenum pname, const GLint *param ) */
1077 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) {
1089 (GLuint)sampler,
1098 /* void glSamplerParameterIuivEXT ( GLuint sampler, GLenum pname, const GLuint *param ) */
1101 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray param_ref, jint offset) {
1127 (GLuint)sampler,
1142 /* void glSamplerParameterIuivEXT ( GLuint sampler, GLenu
1032 android_glSamplerParameterIivEXT__II_3II(JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray param_ref, jint offset) argument
1076 android_glSamplerParameterIivEXT__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) argument
1100 android_glSamplerParameterIuivEXT__II_3II(JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray param_ref, jint offset) argument
1144 android_glSamplerParameterIuivEXT__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) argument
1168 android_glGetSamplerParameterIivEXT__II_3II(JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray params_ref, jint offset) argument
1212 android_glGetSamplerParameterIivEXT__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) argument
1236 android_glGetSamplerParameterIuivEXT__II_3II(JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray params_ref, jint offset) argument
1280 android_glGetSamplerParameterIuivEXT__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) argument
[all...]
H A Dandroid_opengl_GLES30.cpp4145 /* GLboolean glIsSampler ( GLuint sampler ) */
4148 (JNIEnv *_env, jobject _this, jint sampler) {
4151 (GLuint)sampler
4156 /* void glBindSampler ( GLuint unit, GLuint sampler ) */
4159 (JNIEnv *_env, jobject _this, jint unit, jint sampler) {
4162 (GLuint)sampler
4166 /* void glSamplerParameteri ( GLuint sampler, GLenum pname, GLint param ) */
4169 (JNIEnv *_env, jobject _this, jint sampler, jint pname, jint param) {
4171 (GLuint)sampler,
4177 /* void glSamplerParameteriv ( GLuint sampler, GLenu
4147 android_glIsSampler__I(JNIEnv *_env, jobject _this, jint sampler) argument
4158 android_glBindSampler__II(JNIEnv *_env, jobject _this, jint unit, jint sampler) argument
4168 android_glSamplerParameteri__III(JNIEnv *_env, jobject _this, jint sampler, jint pname, jint param) argument
4179 android_glSamplerParameteriv__II_3II(JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray param_ref, jint offset) argument
4223 android_glSamplerParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) argument
4247 android_glSamplerParameterf__IIF(JNIEnv *_env, jobject _this, jint sampler, jint pname, jfloat param) argument
4258 android_glSamplerParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint sampler, jint pname, jfloatArray param_ref, jint offset) argument
4302 android_glSamplerParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject param_buf) argument
4326 android_glGetSamplerParameteriv__II_3II(JNIEnv *_env, jobject _this, jint sampler, jint pname, jintArray params_ref, jint offset) argument
4370 android_glGetSamplerParameteriv__IILjava_nio_IntBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) argument
4394 android_glGetSamplerParameterfv__II_3FI(JNIEnv *_env, jobject _this, jint sampler, jint pname, jfloatArray params_ref, jint offset) argument
4438 android_glGetSamplerParameterfv__IILjava_nio_FloatBuffer_2(JNIEnv *_env, jobject _this, jint sampler, jint pname, jobject params_buf) argument
[all...]
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DColladaParser.java276 // This will find the actual texture node, which is sometimes hidden behind a sampler
281 // Check to see if the image file is hidden by a sampler surface link combo
282 Element sampler = mDom.getElementById(samplerName);
283 if (sampler != null) {
284 NodeList nl = sampler.getElementsByTagName("source");
/frameworks/native/opengl/include/GLES3/
H A Dgl3.h910 GL_APICALL GLboolean GL_APIENTRY glIsSampler (GLuint sampler);
911 GL_APICALL void GL_APIENTRY glBindSampler (GLuint unit, GLuint sampler);
912 GL_APICALL void GL_APIENTRY glSamplerParameteri (GLuint sampler, GLenum pname, GLint param);
913 GL_APICALL void GL_APIENTRY glSamplerParameteriv (GLuint sampler, GLenum pname, const GLint *param);
914 GL_APICALL void GL_APIENTRY glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param);
915 GL_APICALL void GL_APIENTRY glSamplerParameterfv (GLuint sampler, GLenum pname, const GLfloat *param);
916 GL_APICALL void GL_APIENTRY glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params);
917 GL_APICALL void GL_APIENTRY glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params);
H A Dgl31.h910 GL_APICALL GLboolean GL_APIENTRY glIsSampler (GLuint sampler);
911 GL_APICALL void GL_APIENTRY glBindSampler (GLuint unit, GLuint sampler);
912 GL_APICALL void GL_APIENTRY glSamplerParameteri (GLuint sampler, GLenum pname, GLint param);
913 GL_APICALL void GL_APIENTRY glSamplerParameteriv (GLuint sampler, GLenum pname, const GLint *param);
914 GL_APICALL void GL_APIENTRY glSamplerParameterf (GLuint sampler, GLenum pname, GLfloat param);
915 GL_APICALL void GL_APIENTRY glSamplerParameterfv (GLuint sampler, GLenum pname, const GLfloat *param);
916 GL_APICALL void GL_APIENTRY glGetSamplerParameteriv (GLuint sampler, GLenum pname, GLint *params);
917 GL_APICALL void GL_APIENTRY glGetSamplerParameterfv (GLuint sampler, GLenum pname, GLfloat *params);

Completed in 895 milliseconds

12