mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Fix some private type in public signature warnings.
This commit is contained in:
parent
b174a6439b
commit
d04efe6037
14 changed files with 27 additions and 25 deletions
|
@ -106,7 +106,7 @@ impl RenderChan {
|
|||
|
||||
/// If we're using GPU rendering, this provides the metadata needed to create a GL context that
|
||||
/// is compatible with that of the main thread.
|
||||
enum GraphicsContext {
|
||||
pub enum GraphicsContext {
|
||||
CpuGraphicsContext,
|
||||
GpuGraphicsContext,
|
||||
}
|
||||
|
@ -138,7 +138,7 @@ pub struct RenderTask<C> {
|
|||
epoch: Epoch,
|
||||
|
||||
/// A data structure to store unused LayerBuffers
|
||||
buffer_map: BufferMap<~LayerBuffer>,
|
||||
priv buffer_map: BufferMap<~LayerBuffer>,
|
||||
}
|
||||
|
||||
// If we implement this as a function, we get borrowck errors from borrowing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue