OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:constant_flags
(Results
1 - 6
of
6
) sorted by null
/external/mesa3d/src/gallium/drivers/i915/
i915_fpc_emit.c
295
if (ifs->
constant_flags
[reg] == I915_CONSTFLAG_USER)
298
if (!(ifs->
constant_flags
[reg] & (1 << idx)) ||
301
ifs->
constant_flags
[reg] |= 1 << idx;
332
if (ifs->
constant_flags
[reg] == 0xf ||
333
ifs->
constant_flags
[reg] == I915_CONSTFLAG_USER)
336
if (!(ifs->
constant_flags
[reg] & (3 << idx))) {
339
ifs->
constant_flags
[reg] |= 3 << idx;
361
if (ifs->
constant_flags
[reg] == 0xf &&
368
else if (ifs->
constant_flags
[reg] == 0) {
374
ifs->
constant_flags
[reg] = 0xf
[
all
...]
i915_fpc_translate.c
[
all
...]
i915_context.h
92
/** See
constant_flags
[] below */
131
ubyte
constant_flags
[I915_MAX_CONSTANT];
member in struct:i915_fragment_shader
i915_state_emit.c
359
* immediates according to the
constant_flags
[] array.
373
if (i915->fs->
constant_flags
[i] == I915_CONSTFLAG_USER) {
393
(i915->fs->
constant_flags
[i] == I915_CONSTFLAG_USER
/external/mesa3d/src/mesa/drivers/dri/i915/
i915_program.c
311
if (p->
constant_flags
[reg] == I915_CONSTFLAG_PARAM)
314
if (!(p->
constant_flags
[reg] & (1 << idx)) ||
317
p->
constant_flags
[reg] |= 1 << idx;
346
if (p->
constant_flags
[reg] == 0xf ||
347
p->
constant_flags
[reg] == I915_CONSTFLAG_PARAM)
350
if (!(p->
constant_flags
[reg] & (3 << idx))) {
353
p->
constant_flags
[reg] |= 3 << idx;
376
if (p->
constant_flags
[reg] == 0xf &&
382
else if (p->
constant_flags
[reg] == 0) {
387
p->
constant_flags
[reg] = 0xf
[
all
...]
i915_context.h
169
GLuint
constant_flags
[I915_MAX_CONSTANT];
member in struct:i915_fragment_program
Completed in 99 milliseconds