Skip to content

Commit

Permalink
Update some URLs (glium#1887)
Browse files Browse the repository at this point in the history
  • Loading branch information
atouchet authored Dec 15, 2020
1 parent 4045b00 commit 96324dd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@

## Version 0.24.0 (2019-04-08)

- Updated glutin to version 0.20. See the glutin release notes [here](https://github.com/tomaka/glutin/blob/master/CHANGELOG.md#version-0200-2019-03-09).
- Updated glutin to version 0.20. See the glutin release notes [here](https://github.com/rust-windowing/glutin/blob/master/CHANGELOG.md#version-0200-2019-03-09).
- Depth comparison and shadow mapping ([#1679](https://github.com/glium/glium/pull/1679)).

## Version 0.23.0 (2018-12-05)

- Updated glutin to version 0.19. See the glutin release notes [here](https://github.com/tomaka/glutin/blob/master/CHANGELOG.md#version-0190-2018-11-09).
- Updated glutin to version 0.19. See the glutin release notes [here](https://github.com/rust-windowing/glutin/blob/master/CHANGELOG.md#version-0190-2018-11-09).

## Version 0.22.0 (2018-07-02)

Expand All @@ -55,7 +55,7 @@

## Version 0.19.0 (2017-12-11)

- Updated glutin to version 0.11. Notably includes the [winit 0.9 update](https://github.com/tomaka/winit/blob/master/CHANGELOG.md#version-090-2017-12-01).
- Updated glutin to version 0.11. Notably includes the [winit 0.9 update](https://github.com/rust-windowing/winit/blob/master/CHANGELOG.md#version-090-2017-12-01).
- Updated gl_generator to 0.7 (internal dependency).

## Version 0.18.1 (2017-11-05)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build Status](https://travis-ci.org/glium/glium.svg?branch=master)](https://travis-ci.org/glium/glium)
[![Coverage Status](https://coveralls.io/repos/tomaka/glium/badge.svg?branch=master&service=github)](https://coveralls.io/github/tomaka/glium?branch=master)

[![crates.io page](http:https://meritbadge.herokuapp.com/glium)](https://crates.io/crates/glium)
[![crates.io page](https:https://meritbadge.herokuapp.com/glium)](https://crates.io/crates/glium)

## Note to current and future Glium users:

Expand All @@ -30,7 +30,7 @@ Its objectives:
- Avoid all OpenGL errors beforehand.
- Produce optimized OpenGL function calls, and allow the user to easily use modern OpenGL techniques.

## [Link to the documentation](http:https://docs.rs/glium)
## [Link to the documentation](https:https://docs.rs/glium)

If you have some knowledge of OpenGL, the documentation and the examples should get you easily started.

Expand Down
2 changes: 1 addition & 1 deletion book/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

Hello and welcome to the glium tutorials! This series of tutorials will teach you how to work with OpenGL thanks to the glium library. Glium's API uses the exact same concepts as OpenGL and has been designed to remove the burden of using raw OpenGL function calls, which are often non-portable, tedious and error-prone. Even if for some reason you don't plan on using the glium library in the future, these tutorials can still be useful as they will teach you how OpenGL and graphics programming in general work.

If at any moment you encounter an error, please open an issue. Everything related to the window, fullscreen mode, or events is handled by [glutin](https://github.com/tomaka/glutin/issues), while everything related to rendering is handled by [glium](https://github.com/glium/glium/issues).
If at any moment you encounter an error, please open an issue. Everything related to the window, fullscreen mode, or events is handled by [glutin](https://github.com/rust-windowing/glutin/issues), while everything related to rendering is handled by [glium](https://github.com/glium/glium/issues).
6 changes: 3 additions & 3 deletions src/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,11 @@ impl Context {
let mut ctxt = context.make_current();
if crate::get_gl_error(&mut ctxt).is_some() {
println!("glium has triggered an OpenGL error during initialization. Please report \
this error: https://github.com/tomaka/glium/issues");
this error: https://github.com/glium/glium/issues");
}
/*assert!(::get_gl_error(&mut ctxt).is_none(),
"glium has triggered an OpenGL error during initialization. Please report \
this error: https://github.com/tomaka/glium/issues");*/
this error: https://github.com/glium/glium/issues");*/
if ctxt.version >= &Version(Api::Gl, 3, 2) && ctxt.extensions.gl_arb_seamless_cube_map {
ctxt.gl.Enable(gl::TEXTURE_CUBE_MAP_SEAMLESS);
}
Expand Down Expand Up @@ -839,7 +839,7 @@ fn default_debug_callback(_: debug::Source, ty: debug::MessageType, severity: de

if report_debug_output_errors {
print!("Debug message with high or medium severity: `{}`.\n\
Please report this error: https://github.com/tomaka/glium/issues\n\
Please report this error: https://github.com/glium/glium/issues\n\
Backtrace:",
message);

Expand Down

0 comments on commit 96324dd

Please sign in to comment.