Home
last modified time | relevance | path

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

/frameworks/rs/scriptc/
Drs_sampler.rsh30 * Get sampler minification value
32 * @param s sampler to query
39 * Get sampler magnification value
41 * @param s sampler to query
48 * Get sampler wrap S value
50 * @param s sampler to query
57 * Get sampler wrap T value
59 * @param s sampler to query
66 Get sampler anisotropy
68 * @param s sampler to query
Drs_allocation.rsh234 * Fetch allocation in a way described by the sampler
236 * @param s sampler state
242 * Fetch allocation in a way described by the sampler
244 * @param s sampler state
254 * Fetch allocation in a way described by the sampler
256 * @param s sampler state
263 * Fetch allocation in a way described by the sampler
265 * @param s sampler state
Drs_graphics.rsh106 * Bind a new Sampler object to a ProgramFragment. The sampler will
Drs_types.rsh136 * \brief Opaque handle to a Renderscript sampler object.
/frameworks/support/renderscript/v8/rs_support/scriptc/
Drs_sampler.rsh30 * Get sampler minification value
32 * @param s sampler to query
39 * Get sampler magnification value
41 * @param s sampler to query
48 * Get sampler wrap S value
50 * @param s sampler to query
57 * Get sampler wrap T value
59 * @param s sampler to query
66 Get sampler anisotropy
68 * @param s sampler to query
Drs_allocation.rsh234 * Fetch allocation in a way described by the sampler
236 * @param s sampler state
242 * Fetch allocation in a way described by the sampler
244 * @param s sampler state
254 * Fetch allocation in a way described by the sampler
256 * @param s sampler state
263 * Fetch allocation in a way described by the sampler
265 * @param s sampler state
Drs_graphics.rsh106 * Bind a new Sampler object to a ProgramFragment. The sampler will
Drs_types.rsh136 * \brief Opaque handle to a Renderscript sampler object.
/frameworks/base/graphics/java/android/renderscript/
DSampler.java288 Sampler sampler = new Sampler(id, mRS); in create() local
289 sampler.mMin = mMin; in create()
290 sampler.mMag = mMag; in create()
291 sampler.mWrapS = mWrapS; in create()
292 sampler.mWrapT = mWrapT; in create()
293 sampler.mWrapR = mWrapR; in create()
294 sampler.mAniso = mAniso; in create()
295 return sampler; in create()
DRenderScript.java165 native void rsnContextBindSampler(int con, int sampler, int slot); in rsnContextBindSampler() argument
166 synchronized void nContextBindSampler(int sampler, int slot) { in nContextBindSampler() argument
168 rsnContextBindSampler(mContext, sampler, slot); in nContextBindSampler()
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
DSampler.java288 Sampler sampler = new Sampler(id, mRS); in create() local
289 sampler.mMin = mMin; in create()
290 sampler.mMag = mMag; in create()
291 sampler.mWrapS = mWrapS; in create()
292 sampler.mWrapT = mWrapT; in create()
293 sampler.mWrapR = mWrapR; in create()
294 sampler.mAniso = mAniso; in create()
295 return sampler; in create()
/frameworks/base/tests/RenderScriptTests/SampleTest/src/com/android/rs/sample/
Dsample.rs25 void setSampleData(rs_allocation dest, rs_allocation source, rs_sampler sampler) {
28 allocSampler = sampler;
DSampleRSActivity.java46 TextureViewUpdater(Allocation outAlloc, Sampler sampler) { in TextureViewUpdater() argument
48 mSampler = sampler; in TextureViewUpdater()
151 private synchronized void filterAlloc(Allocation alloc, Sampler sampler) { in filterAlloc() argument
153 mScript.invoke_setSampleData(alloc, mTwoByTwoAlloc, sampler); in filterAlloc()
/frameworks/support/renderscript/v8/rs_support/
DrsSampler.cpp44 mRSC->mHal.funcs.sampler.init(mRSC, this); in Sampler()
48 mRSC->mHal.funcs.sampler.destroy(mRSC, this); in ~Sampler()
Drs_hal.h258 } sampler; member
/frameworks/rs/
DrsSampler.cpp44 mRSC->mHal.funcs.sampler.init(mRSC, this); in Sampler()
48 mRSC->mHal.funcs.sampler.destroy(mRSC, this); in ~Sampler()
Drs_hal.h259 } sampler; member
Drs.spec98 param RsScript sampler
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
Dfisheye.rsh18 rs_sampler sampler;
55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
Dfisheye_approx.rsh18 rs_sampler sampler;
55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
Dfisheye_approx.rsh18 rs_sampler sampler;
55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
Dfisheye.rsh18 rs_sampler sampler;
55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
/frameworks/compile/slang/tests/P_export_types/
Dexport_types.rs21 rs_sampler sampler;
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
DColladaParser.java282 Element sampler = mDom.getElementById(samplerName); in getTexture() local
283 if (sampler != null) { in getTexture()
284 NodeList nl = sampler.getElementsByTagName("source"); in getTexture()
/frameworks/base/docs/html/guide/topics/graphics/renderscript/
Dgraphics.jd32 <li><a href="#shader-sampler">Defining a sampler</a></li>
793 <h3 id="shader-sampler">Defining a sampler</h3>
800 desired behavior of the sampler. In these cases, the Renderscript runtime attempts to provide the
806 RsRenderStatesRS</a> sample has many examples on how to create a sampler and bind it to a