Ignore:
Timestamp:
08/25/14 02:43:30 (11 years ago)
Author:
epyon
Message:
  • updated all tests to new nova
  • cleaned up tests paths
  • general cleanup of tests and test data
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/objload_test/obj.frag

    r139 r321  
    11#version 120
    22
    3 uniform sampler2D diffuse;
    4 uniform sampler2D specular;
     3uniform sampler2D nv_diffuse;
     4uniform sampler2D nv_specular;
    55uniform vec4 light_diffuse;
    66uniform vec4 light_specular;
     
    2323        float diffuse_value  = max( dot( nlight_vector, nnormal ), 0.0 );
    2424
    25         vec3 diff_texel      = vec3( texture2D( diffuse, v_texcoord ) );       
    26         vec4 spec_texel      = texture2D( specular, v_texcoord );
     25        vec3 diff_texel      = vec3( texture2D( nv_diffuse, v_texcoord ) );     
     26        vec4 spec_texel      = texture2D( nv_specular, v_texcoord );
    2727       
    2828        float specular_amount = spec_texel.x;
Note: See TracChangeset for help on using the changeset viewer.