OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:texes
(Results
1 - 4
of
4
) sorted by null
/frameworks/av/cmds/screenrecord/
TextRenderer.cpp
195
float
texes
[len * quadCoords];
230
texes
[off + 0] = texLeft;
231
texes
[off + 1] = texBottom;
232
texes
[off + 2] = texRight;
233
texes
[off + 3] = texBottom;
234
texes
[off + 4] = texLeft;
235
texes
[off + 5] = texTop;
236
texes
[off + 6] = texLeft;
237
texes
[off + 7] = texTop;
238
texes
[off + 8] = texRight
[
all
...]
Program.h
62
const float* vertices, const float*
texes
, size_t count) const;
72
const float* vertices, const float*
texes
, bool invert) const;
Program.cpp
230
const float* vertices, const float*
texes
, size_t count) const {
235
err = beforeDraw(texName, texMatrix, vertices,
texes
, false);
244
const float* vertices, const float*
texes
, bool invert) const {
262
glVertexAttribPointer(maTextureCoordLoc, 2, GL_FLOAT, GL_FALSE, 0,
texes
);
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_lowering_nvc0.cpp
310
// 1. obtain a list of
TEXes
and their outputs' first use(s)
311
// 2. calculate the barrier level of each first use (minimal number of
TEXes
,
319
std::vector<Instruction *>
texes
;
local
343
texes
.push_back(tex);
345
bbFirstTex[tex->bb->getId()] =
texes
.size() - 1;
350
if (
texes
.empty())
352
uses = new std::list<TexUse>[
texes
.size()];
355
for (size_t i = 0; i <
texes
.size(); ++i) {
356
findFirstUses(
texes
[i], uses[i]);
360
for (size_t i = 0; i <
texes
.size(); ++i)
[
all
...]
Completed in 69 milliseconds