HomeSort by relevance Sort by last modified time
    Searched refs:rsc_Matrix (Results 1 - 4 of 4) sorted by null

  /frameworks/base/libs/rs/
RenderScriptEnv.h 21 } rsc_Matrix;
rsProgramVertex.h 45 void setProjectionMatrix(const rsc_Matrix *) const;
46 void setModelviewMatrix(const rsc_Matrix *) const;
47 void setTextureMatrix(const rsc_Matrix *) const;
rsScriptC_Lib.cpp 128 static void SC_loadMatrix(uint32_t bank, uint32_t offset, rsc_Matrix *m)
133 memcpy(m, &f[offset], sizeof(rsc_Matrix));
170 static void SC_storeMatrix(uint32_t bank, uint32_t offset, const rsc_Matrix *m)
175 memcpy(&f[offset], m, sizeof(rsc_Matrix));
537 static void SC_matrixLoadIdentity(rsc_Matrix *mat)
543 static void SC_matrixLoadFloat(rsc_Matrix *mat, const float *f)
549 static void SC_matrixLoadMat(rsc_Matrix *mat, const rsc_Matrix *newmat)
555 static void SC_matrixLoadRotate(rsc_Matrix *mat, float rot, float x, float y, float z)
561 static void SC_matrixLoadScale(rsc_Matrix *mat, float x, float y, float z
    [all...]
rsProgramVertex.cpp 285 void ProgramVertex::setProjectionMatrix(const rsc_Matrix *m) const
288 memcpy(&f[RS_PROGRAM_VERTEX_PROJECTION_OFFSET], m, sizeof(rsc_Matrix));
292 void ProgramVertex::setModelviewMatrix(const rsc_Matrix *m) const
295 memcpy(&f[RS_PROGRAM_VERTEX_MODELVIEW_OFFSET], m, sizeof(rsc_Matrix));
299 void ProgramVertex::setTextureMatrix(const rsc_Matrix *m) const
302 memcpy(&f[RS_PROGRAM_VERTEX_TEXTURE_OFFSET], m, sizeof(rsc_Matrix));

Completed in 390 milliseconds