/// <summary>Do a texture lookup projectively and with explicit gradient as described in TextureProjGrad,
 /// as well as with offset, as described in TextureOffset.</summary>
 protected internal static uvec4 TextureProjGradOffset(usampler2D sampler, vec3 P, vec2 dPdx, vec2 dPdy, ivec2 offset)
 {
     throw _invalidAccess;
 }
 /// <summary>  Do an offset texture lookup with explicit LOD. See TextureLod and TextureOffset.</summary>
 protected internal static uvec4 TextureProjLod(usampler2D sampler, vec4 P, float lod)
 {
     throw _invalidAccess;
 }
 /// <summary> Fetch a single texel as in texelFetch offset by offset as described in textureOffset. </summary>
 protected static uvec4 texelFetchOffset(usampler2D sampler, ivec2 P, int lod, ivec2 offset)
 {
     throw _invalidAccess;
 }
 /// <summary>Do a texture lookup both projectively, as described in TextureProj, and with explicit gradient as 
 /// described in TextureGrad. The partial derivatives dPdx and dPdy are assumed to be already projected.</summary>
 protected internal static uvec4 TextureProjGrad(usampler2D sampler, vec4 P, vec2 dPdx, vec2 dPdy)
 {
     throw _invalidAccess;
 }
 /// <summary>Use the texture coordinate P to do a texture lookup in the texture currently bound to sampler.</summary>
 protected internal static uvec4 Texture(usampler2D sampler, vec2 P)
 {
     throw _invalidAccess;
 }
 /// <summary>
 /// Use integer texture coordinate P to lookup a single texel from sampler. 
 /// The level-ofdetail lod is as described in sections 2.11.8 “Shader Execution” 
 /// under Texel Fetches and 3.8 “Texturing” of the OpenGL GraphicsSystem Specification.
 /// </summary>
 protected static uvec4 texelFetch(usampler2D sampler, ivec2 P, int lod)
 {
     throw _invalidAccess;
 }
Beispiel #7
0
 protected extern uivec4 textureProjGradOffset(usampler2D sampler, vec4 p, vec2 dPdx, vec2 dPdy, ivec2 offset);
Beispiel #8
0
 protected extern uivec4 texelFetchOffset(usampler2D sampler, ivec2 p, int lod, ivec2 offset);
Beispiel #9
0
 protected extern uivec4 textureProjLodOffset(usampler2D sampler, vec4 p, float lod, ivec2 offset);
Beispiel #10
0
 protected extern uivec4 textureProGrad(usampler2D sampler, vec4 p, vec2 dPdx, vec2 dPdy);
Beispiel #11
0
 protected extern uivec4 textureProjLod(usampler2D sampler, vec3 p, float lod);
Beispiel #12
0
 protected extern uivec4 textureLodOffset(usampler2D sampler, vec2 p, int lod, ivec2 offset);
Beispiel #13
0
 protected extern uivec4 textureProjOffset(usampler2D sampler, vec4 p, ivec2 offset, float bias         = 0);
 /// <summary>  Do an offset texture lookup with explicit LOD. See TextureLod and TextureOffset.</summary>
 protected internal static uvec4 TextureProjLodOffset(usampler2D sampler, vec3 P, float lod, ivec2 offset)
 {
     throw _invalidAccess;
 }
Beispiel #15
0
 protected extern uivec4 textureProj(usampler2D sampler, vec4 p, float bias      = 0);
 /// <summary>  Do a projective texture lookup as described in TextureProj offset by offset as described in TextureOffset. </summary>
 protected internal static uvec4 TextureProjOffset(usampler2D sampler, vec4 P, ivec2 offset)
 {
     throw _invalidAccess;
 }
Beispiel #17
0
 protected extern ivec2 textureSize(usampler2D sampler, int lod);
 protected internal static ivec2 TextureSize(usampler2D sampler, int lod)
 {
     throw _invalidAccess;
 }
Beispiel #19
0
 protected extern uivec4 textureLod(usampler2D sampler, vec2 p, float lod);
 /// <summary> Do a texture lookup as in texture but with offset added to the (u,v,w) texel coordinates before looking up each texel.
 /// The offset value must be a constant expression. A limited range of offset values are supported; 
 /// the minimum and maximum offset values are implementation-dependent and given by MIN_PROGRAM_TEXEL_OFFSET and MAX_PROGRAM_TEXEL_OFFSET, respectively.
 /// Note that offset does not apply to the layer coordinate for texture arrays. This is explained in detail in section 3.8.11
 /// “Texture Minification” of the OpenGL Graphics System Specification, where offset is (∂u ,∂v ,∂w).
 /// </summary>
 protected internal static uvec4 TextureOffset(usampler2D sampler, vec2 P, ivec2 offset, float bias)
 {
     throw _invalidAccess;
 }
 /// <summary>Do a texture lookup with projection. The texture coordinates consumed from P,
 /// not including the last component of P, are divided by the last component of P. 
 /// After these values are computed,texture lookup proceeds as in texture.</summary>
 protected internal static uvec4 TextureProj(usampler2D sampler, vec3 P, float bias)
 {
     throw _invalidAccess;
 }
 /// <summary>Do a texture lookup with projection. The texture coordinates consumed from P,
 /// not including the last component of P, are divided by the last component of P. 
 /// After these values are computed,texture lookup proceeds as in texture.</summary>
 protected static uvec4 textureProj(usampler2D sampler, vec4 P)
 {
     throw _invalidAccess;
 }
 /// <summary>
 /// Returns the mipmap array(s) that would be accessed in the x component of the return value.
 /// Returns the computed level of detail relative to the base level in the y component of the return value.
 /// If called on an incomplete texture, the results are undefined.
 /// </summary>
 protected internal static vec2 TextureQueryLod(usampler2D sampler, vec2 P)
 {
     throw _invalidAccess;
 }
Beispiel #24
0
 public static uvec4 texelFetch(Location location, usampler2D sampler, ivec2 P, int lod)
 {
     return(Shader.TraceFunction(location, new uvec4(texelFetch <uint>(location, sampler.i, P.x, P.y, 0, lod, GetPName.TextureBinding2D)), "texelFetch"));
 }
Beispiel #25
0
 protected extern uivec4 texelFetch(usampler2D sampler, ivec2 p, int lod);
 /// <summary>  Do an offset texture lookup with explicit LOD. See textureLod and textureOffset.</summary>
 protected static uvec4 textureLodOffset(usampler2D sampler, vec2 P, float lod, ivec2 offset)
 {
     throw _invalidAccess;
 }
Beispiel #27
0
 public static uvec4 texture(Location location, usampler2D sampler, vec2 P, float bias = 0)
 {
     return(textureu(location, sampler.i, P.x, P.y, 0, 0, GetPName.TextureBinding2D));
 }
 /// <summary>Do a texture lookup with both explicit gradient and offset, as described in textureGrad and textureOffset. </summary>
 protected static uvec4 textureGradOffset(usampler2D sampler, vec2 P, vec2 dPdx, vec2 dPdy, ivec2 offset)
 {
     throw _invalidAccess;
 }
 /// <summary>
 /// Do a texture lookup as in texture but with explicit LOD; lod specifies λbase and sets the partial derivatives as follows. 
 /// (See section 3.8.11 “Texture Minification” and equation 3.17 in the OpenGL Graphics SystemSpecification.)
 /// ∂u/∂x = 0; ∂v/∂x = 0; ∂w/∂x = 0; ∂u/∂y = 0; ∂v/∂y = 0; ∂w/∂y = 0; 
 /// </summary>
 protected static uvec4 textureLod(usampler2D sampler, vec2 P, float lod)
 {
     throw _invalidAccess;
 }
 /// <summary> Do a texture lookup as in texture but with explicit gradients. 
 /// The partial derivatives of P are with respect to window x and window y.
 /// ∂s/∂x = ∂P.s/∂x; ∂s/∂y = ∂P.s/∂y; ∂t/∂x = ∂P.t/∂x; ∂t/∂y = ∂P.t/∂y; ∂r/∂x = 0; ∂r/∂y = 0;</summary>
 protected static uvec4 textureGrad(usampler2D sampler, vec2 P, vec2 dPdx, vec2 dPdy)
 {
     throw _invalidAccess;
 }
 /// <summary>Use the texture coordinate P to do a texture lookup in the texture currently bound to sampler.</summary>
 protected static uvec4 texture(usampler2D sampler, vec2 P, float bias)
 {
     throw _invalidAccess;
 }
 protected static ivec2 textureSize(usampler2D sampler, int lod)
 {
     throw _invalidAccess;
 }
 /// <summary>
 /// Returns the mipmap array(s) that would be accessed in the x component of the return value.
 /// Returns the computed level of detail relative to the base level in the y component of the return value.
 /// If called on an incomplete texture, the results are undefined.
 /// </summary>
 protected static vec2 textureQueryLod(usampler2D sampler, vec2 P)
 {
     throw _invalidAccess;
 }
 /// <summary>  Do a projective texture lookup as described in textureProj offset by offset as described in textureOffset. </summary>
 protected static uvec4 textureProjOffset(usampler2D sampler, vec4 P, ivec2 offset, float bias)
 {
     throw _invalidAccess;
 }