/external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/ |
texture_builtins.py | 21 def get_sampler_dim(sampler_type): 22 if sampler_type[0].isdigit(): 23 sampler_dim = int(sampler_type[0]) 24 elif sampler_type.startswith("Cube"): 26 elif sampler_type == "ExternalOES": 28 elif sampler_type == "Buffer": 31 assert False ("coord_dim: invalid sampler_type: " + sampler_type) 36 def get_coord_dim(sampler_type): 37 coord_dim = get_sampler_dim(sampler_type) [all...] |
/external/mesa3d/src/glsl/builtins/tools/ |
texture_builtins.py | 21 def get_sampler_dim(sampler_type): 22 if sampler_type[0].isdigit(): 23 sampler_dim = int(sampler_type[0]) 24 elif sampler_type.startswith("Cube"): 26 elif sampler_type == "ExternalOES": 28 elif sampler_type == "Buffer": 31 assert False ("coord_dim: invalid sampler_type: " + sampler_type) 36 def get_coord_dim(sampler_type): 37 coord_dim = get_sampler_dim(sampler_type) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
ff_fragment_shader.cpp | 944 const glsl_type *sampler_type = NULL; local 950 sampler_type = p->shader->symbols->get_type("sampler1DShadow"); 952 sampler_type = p->shader->symbols->get_type("sampler1D"); 957 sampler_type = p->shader->symbols->get_type("sampler1DArrayShadow"); 959 sampler_type = p->shader->symbols->get_type("sampler1DArray"); 964 sampler_type = p->shader->symbols->get_type("sampler2DShadow"); 966 sampler_type = p->shader->symbols->get_type("sampler2D"); 971 sampler_type = p->shader->symbols->get_type("sampler2DArrayShadow"); 973 sampler_type = p->shader->symbols->get_type("sampler2DArray"); 978 sampler_type = p->shader->symbols->get_type("sampler2DRectShadow") [all...] |
/external/mesa3d/src/mesa/main/ |
ff_fragment_shader.cpp | 944 const glsl_type *sampler_type = NULL; local 950 sampler_type = p->shader->symbols->get_type("sampler1DShadow"); 952 sampler_type = p->shader->symbols->get_type("sampler1D"); 957 sampler_type = p->shader->symbols->get_type("sampler1DArrayShadow"); 959 sampler_type = p->shader->symbols->get_type("sampler1DArray"); 964 sampler_type = p->shader->symbols->get_type("sampler2DShadow"); 966 sampler_type = p->shader->symbols->get_type("sampler2D"); 971 sampler_type = p->shader->symbols->get_type("sampler2DArrayShadow"); 973 sampler_type = p->shader->symbols->get_type("sampler2DArray"); 978 sampler_type = p->shader->symbols->get_type("sampler2DRectShadow") [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_types.cpp | 54 sampler_type(0), 72 sampler_array(array), sampler_type(type), 85 sampler_type(0), 368 sampler_type(0),
|
glsl_types.h | 83 unsigned sampler_type:2; /**< Type of data returned using this sampler. member in struct:glsl_type
|
ir.cpp | [all...] |
/external/mesa3d/src/glsl/ |
glsl_types.cpp | 54 sampler_type(0), 72 sampler_array(array), sampler_type(type), 85 sampler_type(0), 368 sampler_type(0),
|
glsl_types.h | 83 unsigned sampler_type:2; /**< Type of data returned using this sampler. member in struct:glsl_type
|
ir.cpp | [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
ir_to_mesa.cpp | 2028 const glsl_type *sampler_type = ir->sampler->type; local [all...] |
/external/mesa3d/src/mesa/program/ |
ir_to_mesa.cpp | 2028 const glsl_type *sampler_type = ir->sampler->type; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_glsl_to_tgsi.cpp | 2637 const glsl_type *sampler_type = ir->sampler->type; local [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_glsl_to_tgsi.cpp | 2637 const glsl_type *sampler_type = ir->sampler->type; local [all...] |