This file is indexed.

/usr/share/codeblocks/lexers/lexer_OgreMaterial.sample is in codeblocks-common 10.05-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// comment
material fur
{
  technique
  {
    pass
    {
      ambient 0.5 0.5 0.5
      diffuse 1.0 1.0 1.0

      scene_blend alpha_blend
      alpha_rejection greater_equal 128

      fragment_program_ref GLSLDemo/BrickFS 
      { 
        param_named MortarColor float3 0.8, 0.8, 0.8
        param_named BrickSize float2 10.0, 16.0
        param_named BrickPct float4 0.9, 0.9, 0.3, 0.0
      } 

      texture_unit
      {
        texture arbol2.dds
        tex_address_mode clamp
        filtering anisotropic
      }
    }
  }
}