/frameworks/rs/ |
D | rsProgramVertex.cpp | 25 ProgramVertex::ProgramVertex(Context *rsc, const char * shaderText, size_t shaderLength, in ProgramVertex() function in ProgramVertex 34 ProgramVertex::~ProgramVertex() { in ~ProgramVertex() 38 void ProgramVertex::setup(Context *rsc, ProgramVertexState *state) { in setup() 67 void ProgramVertex::setProjectionMatrix(Context *rsc, const rsc_Matrix *m) const { in setProjectionMatrix() 85 void ProgramVertex::setModelviewMatrix(Context *rsc, const rsc_Matrix *m) const { in setModelviewMatrix() 103 void ProgramVertex::setTextureMatrix(Context *rsc, const rsc_Matrix *m) const { in setTextureMatrix() 121 void ProgramVertex::getProjectionMatrix(Context *rsc, rsc_Matrix *m) const { in getProjectionMatrix() 138 void ProgramVertex::transformToScreen(Context *rsc, float *v4out, const float *v3in) const { in transformToScreen() 151 void ProgramVertex::serialize(Context *rsc, OStream *stream) const { in serialize() 154 ProgramVertex *ProgramVertex::createFromStream(Context *rsc, IStream *stream) { in createFromStream() [all …]
|
D | rsProgramVertex.h | 28 class ProgramVertex : public Program { 30 ProgramVertex(Context *,const char * shaderText, size_t shaderLength, 33 virtual ~ProgramVertex(); 46 static ProgramVertex *createFromStream(Context *rsc, IStream *stream); 58 ObjectBaseRef<ProgramVertex> mDefault; 59 ObjectBaseRef<ProgramVertex> mLast;
|
D | rsContext.h | 111 ObjectBaseRef<ProgramVertex> mVertex; 140 void setProgramVertex(ProgramVertex *); 150 ProgramVertex * getProgramVertex() {return mVertex.get();} in getProgramVertex() 179 ProgramVertex * getDefaultProgramVertex() const { in getDefaultProgramVertex() 333 ObjectBaseRef<ProgramVertex> mVertex;
|
D | rsScript.h | 30 class ProgramVertex; variable 109 ObjectBaseRef<ProgramVertex> mVertex;
|
D | rs_hal.h | 92 class ProgramVertex; variable 326 bool (*init)(const Context *rsc, const ProgramVertex *pv, 330 void (*setActive)(const Context *rsc, const ProgramVertex *pv); 331 void (*destroy)(const Context *rsc, const ProgramVertex *pv);
|
D | rsScriptGroup.h | 30 class ProgramVertex; variable
|
D | rsRuntime.h | 39 void rsrBindConstant(Context *, ProgramVertex*, uint32_t slot, Allocation *); 43 void rsrBindProgramVertex(Context *, ProgramVertex *);
|
D | rsScriptC_LibGL.cpp | 61 void rsrBindConstant(Context *rsc, ProgramVertex *pv, uint32_t slot, Allocation *a) { in rsrBindConstant() 83 void rsrBindProgramVertex(Context *rsc, ProgramVertex *pv) { in rsrBindProgramVertex()
|
D | rsContext.cpp | 693 void Context::setProgramVertex(ProgramVertex *pv) { in setProgramVertex() 831 ProgramVertex *pv = static_cast<ProgramVertex *>(vpv); in rsi_ContextBindProgramVertex()
|
/frameworks/base/rs/java/android/renderscript/ |
D | ProgramVertex.java | 50 public class ProgramVertex extends Program { class 52 ProgramVertex(long id, RenderScript rs) { in ProgramVertex() method in ProgramVertex 123 public ProgramVertex create() { in create() 148 ProgramVertex pv = new ProgramVertex(id, mRS); in create()
|
D | RenderScriptGL.java | 332 public void bindProgramVertex(ProgramVertex p) { in bindProgramVertex()
|
D | ProgramVertexFixedFunction.java | 28 public class ProgramVertexFixedFunction extends ProgramVertex {
|
/frameworks/rs/driver/ |
D | rsdProgramVertex.h | 23 const android::renderscript::ProgramVertex *, 28 const android::renderscript::ProgramVertex *); 30 const android::renderscript::ProgramVertex *);
|
D | rsdProgram.cpp | 36 bool rsdProgramVertexInit(const Context *rsc, const ProgramVertex *pv, in rsdProgramVertexInit() 60 void rsdProgramVertexSetActive(const Context *rsc, const ProgramVertex *pv) { in rsdProgramVertexSetActive() 67 void rsdProgramVertexDestroy(const Context *rsc, const ProgramVertex *pv) { in rsdProgramVertexDestroy()
|
D | rsdRuntimeStubs.cpp | 839 ObjectBaseRef<const ProgramVertex> tmp(rsc->getProgramVertex()); 851 rsc->setProgramVertex((ProgramVertex *)tmp.get()); 889 rsrBindProgramVertex(rsc, (ProgramVertex *)pv.p); 918 rsrBindConstant(rsc, (ProgramVertex *)pv.p, slot, (Allocation *)a.p);
|
/frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/ |
D | BallsRS.java | 58 ProgramVertex.Builder sb = new ProgramVertex.Builder(mRS); in createProgramVertex() 70 ProgramVertex pvs = sb.create(); in createProgramVertex()
|
/frameworks/rs/api/ |
D | rs_graphics.spec | 156 summary: Handle to a ProgramVertex 158 Opaque handle to a RenderScript ProgramVertex object. 159 See: android.renderscript.ProgramVertex 261 Bind a new Allocation object to a ProgramFragment or ProgramVertex. 342 summary: Bind a ProgramVertex 344 Bind a new ProgramVertex to the rendering context. 566 function uses the default passthough ProgramVertex. Any bound ProgramVertex
|
/frameworks/rs/scriptc/ |
D | rs_graphics.rsh | 217 * rs_program_vertex: Handle to a ProgramVertex 221 * Opaque handle to a RenderScript ProgramVertex object. 222 * See: android.renderscript.ProgramVertex 476 * Bind a new Allocation object to a ProgramFragment or ProgramVertex. 601 * rsgBindProgramVertex: Bind a ProgramVertex 605 * Bind a new ProgramVertex to the rendering context. 867 * function uses the default passthough ProgramVertex. Any bound ProgramVertex
|
/frameworks/base/docs/html/guide/topics/renderscript/reference/ |
D | rs_graphics.jd | 97 <b>Deprecated</b>. Handle to a ProgramVertex 172 <b>Deprecated</b>. Bind a ProgramVertex 704 <span class='normal'>: Handle to a ProgramVertex</span> 710 <p> Opaque handle to a RenderScript ProgramVertex object. 711 See: android.renderscript.ProgramVertex 808 <p> Bind a new Allocation object to a ProgramFragment or ProgramVertex. 938 <span class='normal'>: Bind a ProgramVertex</span> 952 <p> Bind a new ProgramVertex to the rendering context. 1266 function uses the default passthough ProgramVertex. Any bound ProgramVertex
|
D | index.jd | 2574 <b>Deprecated</b>. Handle to a ProgramVertex 2673 <b>Deprecated</b>. Bind a ProgramVertex
|