/frameworks/rs/scriptc/ |
D | rs_sampler.rsh | 30 * 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
|
D | rs_allocation.rsh | 234 * 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
|
D | rs_graphics.rsh | 106 * Bind a new Sampler object to a ProgramFragment. The sampler will
|
D | rs_types.rsh | 136 * \brief Opaque handle to a Renderscript sampler object.
|
/frameworks/support/renderscript/v8/rs_support/scriptc/ |
D | rs_sampler.rsh | 30 * 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
|
D | rs_allocation.rsh | 234 * 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
|
D | rs_graphics.rsh | 106 * Bind a new Sampler object to a ProgramFragment. The sampler will
|
D | rs_types.rsh | 136 * \brief Opaque handle to a Renderscript sampler object.
|
/frameworks/base/graphics/java/android/renderscript/ |
D | Sampler.java | 288 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()
|
D | RenderScript.java | 165 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/ |
D | Sampler.java | 288 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/ |
D | sample.rs | 25 void setSampleData(rs_allocation dest, rs_allocation source, rs_sampler sampler) { 28 allocSampler = sampler;
|
D | SampleRSActivity.java | 46 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/ |
D | rsSampler.cpp | 44 mRSC->mHal.funcs.sampler.init(mRSC, this); in Sampler() 48 mRSC->mHal.funcs.sampler.destroy(mRSC, this); in ~Sampler()
|
D | rs_hal.h | 258 } sampler; member
|
/frameworks/rs/ |
D | rsSampler.cpp | 44 mRSC->mHal.funcs.sampler.init(mRSC, this); in Sampler() 48 mRSC->mHal.funcs.sampler.destroy(mRSC, this); in ~Sampler()
|
D | rs_hal.h | 259 } sampler; member
|
D | rs.spec | 98 param RsScript sampler
|
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/ |
D | fisheye.rsh | 18 rs_sampler sampler; 55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
|
D | fisheye_approx.rsh | 18 rs_sampler sampler; 55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
|
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/ |
D | fisheye_approx.rsh | 18 rs_sampler sampler; 55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
|
D | fisheye.rsh | 18 rs_sampler sampler; 55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
|
/frameworks/compile/slang/tests/P_export_types/ |
D | export_types.rs | 21 rs_sampler sampler;
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
D | ColladaParser.java | 282 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/ |
D | graphics.jd | 32 <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
|